/* Reset default browser styles and set box-sizing */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Import custom font Product-Sans-Regular */
@font-face {
    font-family: Product-Sans-Regular;
    src: url('../fonts/Product-Sans-Regular.woff2') format("woff2");
    font-display: swap;
    font-weight: 400;
}

/* Import custom font Product-Sans-Bold */
@font-face {
    font-family: Product-Sans-Bold;
    src: url('../fonts/Product-Sans-Bold.woff2') format("woff2");
    font-display: swap;
    font-weight: 700;
}

/* Import custom font DMSans-Regular */
@font-face {
    font-family: DMSans-Regular;
    src: url('../fonts/DMSans-Regular.woff2') format("woff2");
    font-display: swap;
    font-weight: 400;
}

/* Import custom font Orbitron-Regular */
@font-face {
    font-family: Orbitron-Regular;
    src: url('../fonts/Orbitron-Regular.woff2') format("woff2");
    font-display: swap;
    font-weight: 400;
}

/* Import custom font DMSans-Medium */
@font-face {
    font-family: DMSans-Medium;
    src: url('../fonts/DMSans-Medium.woff2') format("woff2");
    font-display: swap;
    font-weight: 400;
}

/* Import custom font DMSans-SemiBold */
@font-face {
    font-family: DMSans-SemiBold;
    src: url('../fonts/DMSans-SemiBold.woff2') format("woff2");
    font-display: swap;
    font-weight: 400;
}

/* Import custom font DMSans-ExtraBold */
@font-face {
    font-family: DMSans-ExtraBold;
    src: url('../fonts/DMSans-ExtraBold.woff2') format("woff2");
    font-display: swap;
    font-weight: 800;
}

/* Import custom font Orbitron-ExtraBold */
@font-face {
    font-family: Orbitron-ExtraBold;
    src: url('../fonts/Orbitron-ExtraBold.woff2') format("woff2");
    font-display: swap;
    font-weight: 800;
}

/* Import custom font Orbitron-SemiBold */
@font-face {
    font-family: Orbitron-SemiBold;
    src: url('../fonts/Orbitron-SemiBold.woff2') format("woff2");
    font-display: swap;
    font-weight: 800;
}

/* Import custom font Exo2-ExtraBold */
@font-face {
    font-family: Exo2-ExtraBold;
    src: url('../fonts/Exo2-ExtraBold.woff2') format("woff2");
    font-display: swap;
    font-weight: 800;
}

/* Import custom font Exo2-Bold */
@font-face {
    font-family: Exo2-Bold;
    src: url('../fonts/Exo2-Bold.woff2') format("woff2");
    font-display: swap;
    font-weight: 700;
}

/* Import custom font Exo2-Medium */
@font-face {
    font-family: Exo2-Medium;
    src: url('../fonts/Exo2-Medium.woff2') format("woff2");
    font-display: swap;
    font-weight: 500;
}

/* Import custom font Montserrat-Regular */
@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/Montserrat-Regular.woff2') format("woff2");
    font-display: swap;
    font-weight: 400;
}

/* === Root: define all colors and font variables === */
:root {
    --primary-color: #ffffff;
    --secondary-color: #6475DC;
    --dark-color: #150907;
    --black-color: #000000;
    --light-gray-color: #808182;
    --dark-gray-color: #5A5A5C;
    --secondary-light-color: #BEC4EA;
    --product-sans-r: Product-Sans-Regular;
    --product-sans-b: Product-Sans-Bold;
    --dm-sans-r: DMSans-Regular;
    --dm-sans-m: DMSans-Medium;
    --dm-sans-sb: DMSans-SemiBold;
    --dm-sans-eb: DMSans-ExtraBold;
    --orbitron-r: Orbitron-Regular;
    --orbitron-eb: Orbitron-ExtraBold;
    --orbitron-sb: Orbitron-SemiBold;
    --exo2-eb: Exo2-ExtraBold;
    --exo2-b: Exo2-Bold;
    --exo2-m: Exo2-Medium;
    --montserrat-r: Montserrat-Regular;
}

/* === Header and Navigation Bar Styles === */

header {
    /* Container for the site header */
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 0 48px;
    position: relative;
}

.header_bg {
    position: absolute;
    height: 200px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.menu_btn,
.close_btn {
    display: none;
}

.nav_links-btn-mb {
    display: none;
}

nav {
    /* Flex container for navigation bar */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100px;
    position: relative;
}

.nav_logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    /* background-color: var(--primary-color); */
    border-radius: 50%;
    top: 0px;
    text-align: center;
    -ms-flex-line-pack: center;
    align-content: center;
}


.nav_logo img {
    /* Logo image size */
    width: 110px;
}

.links_nav ul {
    /* Navigation links list styling */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.links_nav ul a {
    /* Navigation link styles */
    font-family: var(--product-sans-r);
    color: var(--light-gray-color);
    text-decoration: none;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
}

.links_nav ul a:hover {
    /* Hover effect for navigation links */
    color: var(--secondary-color);
}

.nav_link.active {
    /* Active navigation link style */
    font-family: var(--product-sans-b);
    color: var(--secondary-color);
}

.same_btn {
    /* Shared button styles */
    padding: 12px 16px;
    border-radius: 3rem;
    font-family: var(--dm-sans-r);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.nav_action-btn {
    /* Call-to-action button specific styles */
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* 
    === Hero Section Styles ===
    Styles for the main hero section on the homepage, including layout, typography, and images.
*/
.get_started {
    /* "Get Started" button in hero section */
    background: var(--primary-color);
    color: var(--dark-color);
}

.home_hero,
.space_tech_clubs_hero {
    /* Hero section container */
    /* max-width: 1600px; */
    width: 100%;
    margin: auto;
    padding: .6rem 0;
    background: var(--secondary-color);
}

.home_hero-container {
    /* Main grid container for hero section */
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.2fr .8fr;
    grid-template-columns: 1.2fr .8fr;
    /* border-radius: 3.75rem; */
    min-height: 825px;
    height: auto;
    gap: 100px;
    padding: 48px;
    max-width: 1600px;
    margin: auto;
}

.home_hero-left {
    /* Left side of hero: text and icons */
    /* padding: 3rem; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
}

.home_hero-title {
    /* Hero section main title */
    font-size: 82px;
    line-height: 98px;
    font-family: var(--orbitron-r);
    text-transform: uppercase;
    color: var(--primary-color);
}

.home_hero-description {
    /* Hero section description text */
    font-size: 24px;
    color: var(--primary-color);
    font-family: var(--dm-sans-m);
    line-height: 28px;
    margin-top: 2rem;
}

.home_hero-icons {
    /* Container for feature icons in hero */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.home_hero-icons-mb {
    display: none;
}

.home_hero-icon img {
    /* Individual icon image in hero */
    width: 100%;
    border-radius: 2rem;
}

.home_hero-right {
    /* Right side of hero: main image, info, button */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    /* padding: 1.5rem; */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.home_hero-main-img img {
    /* Main product image in hero */
    width: 100%;
    border-radius: 2rem;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/.9;
}

.home_hero-info {
    /* Informational text below main image in hero */
    font-size: 14px;
    font-family: var(--dm-sans-r);
    line-height: 20px;
    color: var(--primary-color);
}

/* 
  Explorers Section style
  -----------------------
  Styles for the "Why Explorers" section, including layout, titles, features, and call-to-action.
*/

.why_explorers {
    /* Main container for the explorers section */
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 3.75rem 48px;
    position: relative;
}

.explorers_top-img {
    /* Decorative top image, absolutely positioned */
    position: absolute;
    left: 0;
    top: 0;
}

.why_explorers-title {
    /* Main section title */
    font-size: 64px;
    text-align: center;
    text-transform: uppercase;
}

.why_explorers-title-ori {
    /* "Orbitron" font part of the title */
    font-family: var(--orbitron-eb);
    color: var(--black-color);
}

.why_explorers-title-exo {
    /* "Exo 2" font part of the title, secondary color */
    font-family: var(--exo2-eb);
    color: var(--secondary-color);
}

.why_explorers-subtitle {
    /* Subtitle below the main title */
    text-align: center;
    font-family: var(--dm-sans-sb);
    font-size: 28px;
    margin-top: 24px;
}

.why_explorers-description {
    /* Description text for the section */
    font-family: var(--dm-sans-r);
    color: var(--dark-gray-color);
    text-align: center;
    margin-top: 1rem;
    line-height: 24px;
}

.why_explorers-description.why_explorers-labs-description {
    color: var(--primary-color);
}

.labs_hero-title .why_explorers-title-ori,
.labs_hero-title .why_explorers-title-exo {
    color: var(--primary-color);
}

.why_explorers-content {
    /* Layout for features and CTA block */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 60px;
}

.why_explorers-cta {
    /* Call-to-action block styling */
    width: 400px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 1rem;
}

.why_explorers-features {
    /* Grid layout for feature cards */
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why_explorers-feature {
    /* Individual feature card styling */
    background: #F8F9FF;
    padding: 1.5rem;
    border-radius: 1rem;
}

.why_explorers-icon {
    /* Icon container for features and CTA */
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    width: 58px;
    height: 58px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.why_explorers-feature-title {
    /* Title for each feature card */
    font-size: 24px;
    font-family: var(--exo2-eb);
    text-transform: uppercase;
    margin-top: 1rem;
    color: var(--secondary-color);
}

.why_explorers-feature-text {
    /* Description text for each feature */
    font-family: var(--dm-sans-r);
    font-size: 14px;
    line-height: 22px;
    color: var(--light-gray-color);
}

.why_explorers-cta-title {
    /* CTA block title */
    font-family: var(--exo2-b);
    font-size: 44px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.why_explorers-cta-description {
    /* CTA block description text */
    font-family: var(--dm-sans-r);
    font-size: 22px;
    color: #EBEEFF;
    margin-top: 8px;
}

.why_explorers-cta .why_explorers-icon {
    /* CTA icon border color override */
    border-color: var(--primary-color);
}

/* === Experts Section Styles === */

/* Main experts section container */
.experts {
    /* Limit section width */
    width: 100%;
    /* Full width */
    /* Horizontal padding (auto is ignored for padding, likely a mistake) */
    margin: auto;
    /* Center section */
    background: var(--secondary-color);
}

.student_experts {
    padding-top: 8px;
}

/* Inner container for experts section */
.experts-container {
    /* Section background color */
    padding: 3.75rem 48px;
    /* Inner padding */
    max-width: 1600px;
    margin: auto;
}

/* Section title styling */
.experts-title {
    max-width: 800px;
    /* Limit title width */
    font-size: 64px;
    /* Large font size */
    text-transform: uppercase;
    /* Uppercase text */
}

/* Title part with original color */
.experts-title .why_explorers-title-ori {
    color: var(--primary-color);
    /* White color for part of the title */
}

/* Title part with accent color */
.experts-title .why_explorers-title-exo {
    color: var(--black-color);
    /* Black color for part of the title */
}

/* Expert name styling */
.expert-name {
    font-family: var(--exo2-m);
    /* Medium Exo2 font */
    font-weight: 500;
    /* Medium weight */
    color: var(--primary-color);
    /* White text */
    font-size: 22px;
    /* Font size */
    margin-top: 1rem;
    /* Space above name */
}

/* Expert role styling */
.expert-role {
    font-family: var(--dm-sans-r);
    /* Regular DM Sans font */
    font-size: 14px;
    /* Font size */
    line-height: 22px;
    /* Line height */
    color: var(--secondary-light-color);
    /* Light secondary color */
}

/* Expert image container */
.expert-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Flex container for image */
    aspect-ratio: .9/1;
    /* Aspect ratio for image box */
}

/* Expert image itself */
.expert-image img {
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    -o-object-fit: cover;
    object-fit: cover;
    /* Cover the container */
    border-radius: 42px;
    /* Rounded corners */
}

/* Expert card container */
.expert-card {
    width: 290px;
    /* Fixed card width */
}

/* Swiper slide for expert */
.expert_swiper {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    /* Fit content width for Swiper slide */
}

/* Swiper container for experts */
.expert_myswiper {
    padding-bottom: 3rem;
    /* Space below Swiper */
    margin-top: 60px;
    /* Space above Swiper */
}

/* Swiper pagination bullet styling */
.swiper-pagination-bullet {
    width: 14px !important;
    /* Bullet width */
    height: 14px !important;
    /* Bullet height */
    opacity: 1 !important;
    /* Full opacity */
}

/* Swiper pagination bullet (inactive) for experts */
.expert_pagination .swiper-pagination-bullet {
    background: #ffffff59 !important;
    /* Semi-transparent white background */
}

/* Swiper pagination bullet (active) */
.swiper-pagination-bullet-active {
    width: 41px !important;
    /* Elongated active bullet */
    border-radius: 40px !important;
    /* Rounded active bullet */
}

/* Swiper pagination bullet (active) for experts */
.expert_pagination .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    /* Solid white for active bullet */
}

/* Kids Saying/Testimonial Section container */
.kids-saying {
    max-width: 1600px;
    /* Maximum width for the section */
    width: 100%;
    /* Full width */
    margin: auto;
    /* Center horizontally */
    padding: 60px 48px;
    /* Vertical padding */
}

/* Kids Saying section title */
.kids-saying-title {
    font-size: 64px;
    /* Large font size */
    text-transform: uppercase;
    /* Uppercase text */
    text-align: center;
    /* Centered text */
}

/* Kids Saying section subtitle */
.kids-saying-subtitle {
    font-family: var(--dm-sans-r);
    /* Regular DM Sans font */
    text-align: center;
    /* Centered text */
    color: #5A5A5C;
    /* Subtitle color */
    line-height: 24px;
    /* Line height */
}

/* Testimonial card container style */
.testimonial {
    width: 936px;
    /* Fixed width for testimonial card */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Flex layout for image and content */
    gap: 1.5rem;
    /* Gap between image and content */
}

/* Testimonial content (text and author) */
.testimonial-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Flex layout */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* Stack vertically */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* Space between text and author */
    padding: 8px 0;
    /* Vertical padding */
}

/* Testimonial text/quote */
.testimonial-text {
    font-size: 22px;
    /* Font size for testimonial text */
    font-family: var(--dm-sans-r);
    /* Regular DM Sans font */
    color: var(--dark-gray-color);
    /* Text color */
    line-height: 40px;
    /* Line height for readability */
}

/* Testimonial author name */
.testimonial-author .author-name {
    font-size: 22px;
    /* Font size for author name */
    font-family: var(--dm-sans-sb);
    /* Semi-bold DM Sans font */
    color: var(--black-color);
    /* Author name color */
}

/* Testimonial author role/title */
.testimonial-author .author-role {
    font-size: 20px;
    /* Font size for author role */
    font-family: var(--dm-sans-r);
    /* Regular DM Sans font */
    color: var(--light-gray-color);
    /* Author role color */
}

/* Swiper container for kids saying/testimonials */
.kids_saying-myswiper {
    position: relative;
    /* Needed for gradient overlays */
}

/* Left gradient overlay for Swiper (visual fade effect) */
.kids_saying-myswiper::after {
    content: '';
    position: absolute;
    left: -1rem;
    top: -20px;
    width: 200px;
    height: 100%;
    background: -o-linear-gradient(right, #ffffff00, #ffff);
    background: -webkit-gradient(linear, right top, left top, from(#ffffff00), to(#ffff));
    background: linear-gradient(to left, #ffffff00, #ffff);
    /* Transparent to white */
    z-index: 10;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    /* Soft blur for effect */
    pointer-events: none;
}

/* Right gradient overlay for Swiper (visual fade effect) */
.kids_saying-myswiper::before {
    content: '';
    position: absolute;
    right: -1rem;
    top: -20px;
    width: 200px;
    height: 100%;
    background: -o-linear-gradient(right, #ffffff, #ffffff00);
    background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(#ffffff00));
    background: linear-gradient(to left, #ffffff, #ffffff00);
    /* White to transparent */
    z-index: 10;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    /* Soft blur for effect */
    pointer-events: none;
}

/* Swiper pagination bullet styling for kids saying section (inactive) */
.kids_saying-pagination .swiper-pagination-bullet {
    background: var(--secondary-light-color) !important;
    /* Light secondary color */
}

/* Swiper pagination bullet styling for kids saying section (active) */
.kids_saying-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    /* Main secondary color */
}

/* Swiper slide for kids saying/testimonials */
.kids_swiper-slide {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    /* Fit content width for Swiper slide */
}

/* Book Summaries Section style */
.book-summaries {
    max-width: 1600px;
    /* Limit the maximum width */
    width: 100%;
    /* Take full width up to max */
    margin: auto;
    /* Center horizontally */
    padding: 60px 48px;
    /* Section padding (top/bottom, left/right) */
}

/* Book Summaries Section Title */
.book-summaries-title {
    text-align: center;
    /* Center the title text */
    font-size: 64px;
    /* Large font size for emphasis */
    text-transform: uppercase;
    /* Uppercase letters for style */
}

/* Book Summary Image Container */
.book-summaries-image {
    width: 177px;
    /* Fixed width for image container */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Use flex for alignment if needed */
}

/* Book Summary Image Styling */
.book-summaries-image img {
    width: 100%;
    /* Image fills the container width */
}

/* Swiper Container for Book Summaries */
.book_swiper-cont {
    max-width: 876px;
    /* Limit the maximum width of swiper */
    width: 100%;
    /* Take full width up to max */
    margin: auto;
    /* Center horizontally */
    margin-top: 60px;
    /* Space above the swiper */
}

/* Swiper Instance for Book Summaries */
.book_myswiper {
    padding-bottom: 3rem;
    /* Space below swiper for pagination or controls */
}

/* Footer main container */
.site-footer {
    background: var(--black-color);
    /* Set footer background color */
}

/* Footer content wrapper with background image and gradient overlay */
.footer-container {
    max-width: 1600px;
    /* Limit footer width */
    width: 100%;
    /* Full width up to max */
    margin: auto;
    /* Center horizontally */
    padding: 0 48px;
    /* Horizontal padding */
    background: -o-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/footer-bg.png');
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url('../assets/footer-bg.png');
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/footer-bg.png');
    /* Overlay gradient on image */
    background-repeat: no-repeat;
    /* Prevent image repeat */
    background-size: cover;
    /* Cover entire container */
    background-position: 50% 50%;
    /* Center background image */
}

/* Top section of the footer with grid layout */
.footer-top {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    /* Three columns, first is wider */
    padding: 70px 0;
    /* Vertical padding */
    flex-wrap: wrap;
}

/* List of footer links */
.footer-links-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Use flexbox */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* Stack links vertically */
    gap: 14px;
    /* Space between links */
}

/* Footer link styles */
.footer-links-list a {
    font-family: var(--dm-sans-r);
    /* Regular font */
    font-weight: 400;
    color: var(--primary-color);
    /* Main color */
    text-decoration: none;
    /* Remove underline */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

/* Footer link hover effect */
.footer-links-list a:hover {
    color: var(--secondary-color);
    /* Change color on hover */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    /* Shrink to fit text */
}

/* Footer section titles */
.footer-title {
    font-family: var(--dm-sans-eb);
    /* Extra bold font */
    font-size: 24px;
    /* Large font size */
    color: var(--primary-color);
    /* Main color */
    margin-bottom: 24px;
    /* Space below title */
}

/* Group of logos in the footer */
.footer-logo-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Arrange logos in a row */
    gap: 2rem;
    /* Space between logos */
}

/* Partner logo image size */
.footer-partners img {
    width: 112px;
    /* Set width for partner logos */
}

/* Partner logos container */
.footer-partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Use flexbox */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* Stack vertically */
    gap: 8px;
    /* Space between items */
}

/* Divider line in partners section */
.footer-partners .line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--dark-gray-color);
    /* Line color */
}

/* Main logo image size */
.footer-logo img {
    width: 98px;
    /* Set width for main logo */
}

/* Footer description text */
.footer-description {
    font-family: var(--dm-sans-r);
    /* Regular font */
    color: #D9DDF4;
    /* Light text color */
    line-height: 24px;
    /* Readable line height */
}

/* Bottom section of the footer */
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Arrange content in a row */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* Space out children */
    padding: 30px 0;
    /* Vertical padding */
    border-top: 1px solid #ffffff1e;
    /* Subtle top border */
}

/* Copyright text styling */
.footer-copyright {
    font-family: var(--dm-sans-r);
    /* Regular font */
    color: var(--primary-color);
    /* Main color */
}

/* Social media icons container */
.footer-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Arrange icons in a row */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* Center vertically */
    gap: 12px;
    /* Space between icons */
}

/* student learning page style  */
/* ===========================
   Student Learning Page Styles
   =========================== */

/* Paragraph under the student expert section heading */
.student_head-para {
    font-family: var(--dm-sans-r);
    text-align: center;
    color: #DCDDDE;
    line-height: 24px;
}

/* Image container for student expert cards, maintains aspect ratio */
.student_expert-image {
    aspect-ratio: 1/.85;
}

/* Card styling for each student expert */
.student_expert-card {
    background: #ffffff1e;
    /* semi-transparent white */
    padding: 1rem;
    border-radius: 32px;
    height: 100%;
}

/* Role/description text in student expert card */
.student_expert-role {
    margin-top: 8px;
}

/* Title styling for student expert section */
.student_expert-title {
    text-align: center;
    margin: auto;
}

/* Original part of the expert title (black color) */
.student_expert-title .why_explorers-title-ori {
    color: var(--black-color);
}

/* Highlighted part of the expert title (primary color) */
.student_expert-title .why_explorers-title-exo {
    color: var(--primary-color);
}

/* ===========================
   Explore Section Styles
   =========================== */

/* Main title for the explorers section */
.explorers_title {
    font-size: 64px;
    text-align: center;
    text-transform: uppercase;
}

/* Description text under the explorers title */
.explorers_description {
    margin-top: 8px;
}

/* Grid layout for explorer features */
.explorers_features {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 40px;
    margin-top: 60px;
}

/* Container for the explorers section */
.explorers_section {
    max-width: 1600px;
    width: 100%;
    padding: 60px 48px;
    margin: auto;
    position: relative;
}

/* Individual feature item in the explorers section */
.explorers_feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Title for each explorer feature */
.explorers_feature-title {
    font-size: 22px;
    font-family: var(--exo2-eb);
    color: var(--black-color);
    text-transform: uppercase;
}

/* Description text for each explorer feature */
.explorers_feature-text {
    font-size: 14px;
    font-family: var(--dm-sans-r);
    color: #747683;
    font-weight: 400;
    line-height: 22px;
    margin-top: 8px;
}

/* Decorative spotlight image in the student section */
.studen_setlight {
    position: absolute;
    top: 64px;
    right: 0;
}

/* ===========================
   Demo Section Styles
   =========================== */

/* Main title for the demo section */
.demo_title {
    font-size: 64px;
    text-transform: uppercase;
}

/* Container for the demo section */
.demo_section {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 60px 48px;
}

/* Grid layout for demo content and form */
.demo_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem .9fr;
    grid-template-columns: 1fr .9fr;
    gap: 1.5rem;
}

/* Wrapper for the demo form */
.demo_form-wrapper {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.contact_logo img {
    width: 200px;
}

/* Demo form layout */
.demo_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Container for all form fields */
.demo_form-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

/* Row layout for form fields (two columns) */
.demo_form-row {
    /* display: -ms-grid; */
    /* display: grid; */
    /* -ms-grid-columns: 1fr 1rem 1fr; */
    /* grid-template-columns: repeat(2, 1fr); */
    /* gap: 1rem; */
}

/* Individual field in the form */
.demo_field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

/* Input styling for the demo form */
.demo_input {
    padding: 14px 12px;
    background: transparent;
    border-radius: 32px;
    outline: none;
    border: 1px solid var(--primary-color);
    font-family: var(--dm-sans-m);
    color: var(--primary-color);
    line-height: 24px;
}

/* Placeholder color for demo form inputs */
.demo_input::-webkit-input-placeholder {
    color: var(--primary-color);
}

.demo_input::-moz-placeholder {
    color: var(--primary-color);
}

.demo_input:-ms-input-placeholder {
    color: var(--primary-color);
}

.demo_input::-ms-input-placeholder {
    color: var(--primary-color);
}

.demo_input::placeholder {
    color: var(--primary-color);
}

/* Title above the demo form */
.demo_form-title {
    font-size: 34px;
    font-family: var(--orbitron-sb);
    color: var(--primary-color);
}

/* Label styling for form fields */
.demo_label {
    font-family: var(--dm-sans-m);
    color: var(--primary-color);
    line-height: 24px;
}

.demo_form-col {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Textarea styling for the demo form */
.demo_textarea {
    padding: 14px 12px;
    background: transparent;
    border-radius: 16px;
    outline: none;
    border: 1px solid var(--primary-color);
    font-family: var(--dm-sans-m);
    color: var(--primary-color);
    line-height: 24px;
    width: 100%;
    min-height: 100px;
    resize: vertical;
}

/* Placeholder color for textarea */
.demo_textarea::-webkit-input-placeholder {
    color: var(--primary-color);
}

.demo_textarea::-moz-placeholder {
    color: var(--primary-color);
}

.demo_textarea:-ms-input-placeholder {
    color: var(--primary-color);
}

.demo_textarea::-ms-input-placeholder {
    color: var(--primary-color);
}

.demo_textarea::placeholder {
    color: var(--primary-color);
}

/* Button styling for the demo form */
.demo_button {
    border: none;
    outline: none;
    cursor: pointer;
}

/* Header section in the demo area */
.demo_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
}

/* Description text in the demo section */
.demo_description {
    font-family: var(--dm-sans-r);
    color: #283D52;
    line-height: 24px;
}

.footer-partners-mb {
    display: none;
}

.demo_radio-group {
    font-family: var(--dm-sans-r);
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 10px;
    margin-top: 5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ------------------------------ */
.space_tech_clubs_hero-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    /* min-height: 825px; */
    height: auto;
    gap: 100px;
    padding: 48px;
    max-width: 1600px;
    margin: auto;
}

.space_tech_clubs_hero-title {
    color: var(--primary-color);
    line-height: 90px;
}

.space_tech_clubs_hero-title-ori {
    font-family: var(--exo2-m);
    font-weight: 400;
}

.space_tech_clubs_hero-title-exo {
    font-family: var(--orbitron-r);
}

.space_tech_clubs_hero-right {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.space_tech_clubs_hero-description {
    font-family: var(--dm-sans-r);
    color: #DCDDDE;
    line-height: 24px;
    font-size: 18px;
    margin-top: 16px;
}

.space_tech_clubs_hero-right-item {
    background: #ffffff18;
    border-radius: 20px;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.space_tech_clubs_hero-right-item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.space_tech_clubs_hero-right-item-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #6475DC;
    border-radius: 50%;
}

.space_tech_clubs_hero-right-item-content-title {
    font-size: 30px;
    font-family: var(--exo2-m);
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.space_tech_clubs_hero-right-item-content-description {
    font-family: var(--dm-sans-r);
    color: #DCDDDE;
    line-height: 24px;
    font-size: 14px;
}

.space_tech_clubs_hero-left {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

/* ------------------------------ */
.explorers_card-title {
    font-size: 40px;
    font-family: var(--montserrat-r);
    color: var(--black-color);
}

.explorers_card-left-text {
    font-family: var(--montserrat-r);
    color: var(--dark-gray-color);
    line-height: 24px;
}

.explorers_card-right-text {
    font-family: var(--montserrat-r);
    color: var(--dark-gray-color);
    line-height: 24px;
    font-size: 20px;
}

.explorers_card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.explorers_card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.explorers_card:not(:first-child) {
    border-top: 1px solid #DCDDDE;
    padding-top: 24px;
}

.explorers_cards {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.leadership_cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
}

.leadership_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    background: #F6F8FF;
    padding: 14px 18px;
    border-radius: 32px;
    font-family: var(--dm-sans-m);
    color: var(--secondary-color);
}

.launch_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.launch_cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.launch_card {
    background: #F8F9FF;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    border-radius: 1rem;
}

.launch_card-num {
    width: 44px;
    height: 44px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: var(--primary-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--dm-sans-m);
    color: var(--secondary-color);
}

.launch_card-title {
    font-size: 24px;
    font-family: var(--dm-sans-sb);
    color: var(--secondary-color);
    text-transform: uppercase;
}

.launch_card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.launch_card-disc {
    font-family: var(--montserrat-r);
    color: var(--light-gray-color);
    font-size: 14px;
    line-height: 24px;
}

.frequently_card-header {
    font-family: var(--dm-sans-sb);
    color: var(--black-color);
    font-size: 20px;
    line-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.frequently_card-disc p {
    font-family: var(--dm-sans-r);
    color: var(--light-gray-color);
    font-size: 14px;
    line-height: 24px;
    padding-top: 10px;
}

.frequently_card-disc {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 350ms ease;
    -o-transition: max-height 350ms ease;
    transition: max-height 350ms ease;
}

.frequently_card {
    background: #F5F6F7;
    padding: 20px;
    border-radius: 8px;
}

.frequently_cards {
    max-width: 800px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.frequently_card-arrow {
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    -o-transition: transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.frequently_card.open .frequently_card-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.space_tech-club-contact {
    background: var(--secondary-color);
}

.space_tech-club-contact .why_explorers-title-exo {
    color: var(--primary-color);
}

.space_tech-club-contact .why_explorers-description {
    color: var(--primary-color);
}

.space_club-form-wrapper {
    background: #ffffff11;
    max-width: 900px;
    width: 100%;
    margin: auto;
    margin-top: 60px;
}

/* ------------------------------- */
.space_tech_labs_hero-container {
    padding: 60px 48px;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.why_explorers-features-labs {
    margin-top: 60px;
}

.explorers_labs-right {
    -ms-flex-line-pack: center;
    align-content: center;
}

.explorers_labs-features-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.explorers_labs-feature-content h3 {
    font-size: 28px;
    color: var(--black-color);
    font-family: var(--dm-sans-m);
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.explorers_labs-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
}

.explorers_labs-feature-content p {
    font-family: var(--montserrat-r);
    font-weight: 400;
    color: var(--light-gray-color);
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.explorers_labs-feature-content p:not(:last-child) {
    margin-bottom: 8px;
}

.explorers_labs-feature {
    padding: 2rem 1rem;
    border-radius: 24px;
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.explorers_labs-feature:hover {
    background: var(--secondary-color);
}

.explorers_labs-feature:hover .explorers_labs-feature-content p,
.explorers_labs-feature:hover .explorers_labs-feature-content h3,
.explorers_labs-feature:hover .explorers_labs-feature-link a {
    color: var(--primary-color);
}

.explorers_labs-feature-link a:hover {
    text-decoration: underline;
}

.explorers_labs-feature-link a {
    font-family: var(--dm-sans-m);
    font-weight: 500;
    color: var(--black-color);
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.how-it-works-section,
.how-it-works-details {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.how-it-works-steps {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.how-it-works-details {
    margin-top: 40px;
}

.how-it-works-step {
    background: #F8F9FF;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    border-radius: 1rem;
}

.how-it-works-content h3 {
    font-family: var(--dm-sans-sb);
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.how-it-works-content p {
    font-family: var(--montserrat-r);
    font-weight: 400;
    color: var(--light-gray-color);
    margin-top: 8px;
}

.how-it-works-icon {
    width: 70px;
    height: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 8px;
}

.labs_contact-labs-subheading {
    font-size: 24px;
    font-family: var(--montserrat-r);
    color: var(--light-gray-color);
    font-weight: 400;
}

.labs_contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.labs_contact-list p {
    font-size: 20px;
    font-family: var(--montserrat-r);
    color: var(--light-gray-color);
    font-weight: 400;
}

.contact_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .6fr;
    grid-template-columns: 1fr .6fr;
}

/* --------------------- */
.monetor_hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
    padding: 48px;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.hero_mentor-img img {
    width: 400px;
    border-radius: 24px;
}

.about_me-title {
    font-size: 48px;
    color: var(--black-color);
    text-transform: uppercase;
}

.about_me-title-span-r {
    font-family: var(--montserrat-r);
    font-weight: 400;
}

.about_me-title-span-sb {
    font-family: var(--montserrat-r);
    font-weight: 600;
}

.explorers_container-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.about_me-description {
    font-size: 22px;
    font-family: var(--montserrat-r);
    font-weight: 500;
    color: var(--light-gray-color);
    line-height: 40px;
}

.about_details {
    background: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 32px;
    gap: 40px;
    border-radius: 20px;
}

.about_detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.about_detail-label {
    font-size: 28px;
    font-family: var(--montserrat-r);
    font-weight: 500;
    color: var(--primary-color);
}

.about_detail-value {
    font-size: 21px;
    font-family: var(--montserrat-r);
    font-weight: 400;
    color: var(--primary-color);
}

.mentor-profile-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
}

.mentor-profile-social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 28px;
    font-family: var(--montserrat-r);
    font-weight: 500;
    color: var(--dark-gray-color);
    text-decoration: none;
}

.award_section {
    background: var(--secondary-color);
}

.award_title {
    color: var(--primary-color);
}

.award_list {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.award_list div {
    padding: 14px 18px;
    background: #F6F8FF;
    border-radius: 32px;
    font-size: 20px;
    font-family: var(--montserrat-r);
    font-weight: 500;
    color: var(--secondary-color);
}

.experience_list {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.experience_item {
    background: #F8F9FF;
    padding: 1rem;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.experience_role {
    font-size: 28px;
    font-family: var(--montserrat-r);
    font-weight: 600;
    color: var(--secondary-color);
}

.experience_org {
    font-size: 18px;
    font-family: var(--montserrat-r);
    font-weight: 400;
    color: var(--dark-gray-color);
}

.experience_desc {
    font-family: var(--montserrat-r);
    font-weight: 400;
    color: var(--light-gray-color);
}

.ac_list {
    margin-top: 36px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 36px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.ac_item {
    padding: 24px;
    background: #ffffff21;
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.ac_heading {
    font-size: 36px;
    font-family: var(--montserrat-r);
    font-weight: 700;
    color: var(--primary-color);
}

.ac_desc {
    font-size: 18px;
    font-family: var(--montserrat-r);
    font-weight: 400;
    line-height: 24px;
    color: #D4DAFF;
}

.how-it-works-description-md {
    display: none;
}

/*  Styling */

.try-this {
  margin-top:.5rem;
  padding:.5rem .75rem;
  border-left:4px solid #5b8cff;      /* accent */
  background:rgba(91,140,255,.08);    /* soft tint */
  border-radius:.25rem;
}

@media only screen and (max-width: 1024px) {
    .home_hero-title {
        font-size: 51px;
        line-height: normal;
    }

    .home_hero-container {
        min-height: 640px;
    }

    .why_explorers-title,
    .experts-title,
    .kids-saying-title,
    .book-summaries-title,
    .explorers_title,
    .demo_title {
        font-size: 40px;
    }

    .why_explorers-subtitle {
        margin-top: 8px;
    }

    .why_explorers-cta-title {
        font-size: 35px;
    }

    .why_explorers-cta {
        width: 330px;
    }

    .experts-title {
        max-width: 500px;
    }

    .expert-card {
        width: 250px;
    }

    .why_explorers {
        padding: 3.75rem 20px;
    }

    .demo_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .demo_title,
    .demo_description {
        text-align: center;
    }

    .studen_setlight img {
        width: 15vw;
    }

    .nav_logo img {
        /* Logo image size */
        width: 90px;
    }

    .contact_logo img {
        margin: auto;
        display: block;
    }

    .space_tech_clubs_hero-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .space_tech_clubs_hero-title,
    .space_tech_clubs_hero-description {
        margin: auto;
        text-align: center;
    }

    .explorers_card {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .explorers_card-title {
        font-size: 30px;
    }

    .explorers_card-left-text {
        font-size: 14px;
    }

    .explorers_card-right-text {
        font-size: 16px;
    }

    .explorers_cards {
        margin-top: 40px;
    }

    .explorers_card:not(:first-child) {
        border-top: none;
        padding-top: 0;
    }

    .space_tech_clubs_hero-title {
        line-height: normal;
        margin-bottom: 1rem;
    }

    .mentor-profile-socials {
        gap: 30px;
    }

    .mentor-profile-social a {
        font-size: 20px;
    }

    .hero_mentor-img img {
        width: 300px;
    }

    .award_list,
    .about_details {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 768px) {
    .home_hero-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 1rem;
    }

    .home_hero-left,
    .home_hero-right {
        padding: 0;
    }

    .home_hero-container {
        border-radius: 24px;
    }

    .home_hero-right {
        gap: 1rem;
    }

    .home_hero-icons-dc {
        display: none;
    }

    .home_hero-icons-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .home_hero-btn {
        margin-top: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .home_hero-description {
        margin-top: 1rem;
    }

    .home_hero-title {
        font-size: 40px;
    }

    .home_hero-description {
        font-size: 18px;
    }

    .explorers_top-img img {
        width: 15vw;
    }

    .why_explorers-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .why_explorers-cta {
        gap: 60px;
        width: 100%;
    }

    .why_explorers-title,
    .experts-title,
    .kids-saying-title,
    .book-summaries-title,
    .explorers_title,
    .demo_title {
        font-size: 30px;
    }

    .why_explorers-subtitle {
        font-size: 20px;
    }

    /* Page-specific bump */
    .space_tech_labs_hero-2 {
      /* Hero section container */
      width: 100%;
      margin: auto;
      padding: 0.6rem 0;
      background: var(--secondary-color);
    }

    /* Larger text inside the hero */
    .space_tech_labs_hero-2 .why_explorers-description-2 {
      font-size: clamp(1.125rem, 1.6vw, 1.375rem);
      line-height: 1.65;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 26px;
    }

    .testimonial {
        width: 100%;
    }

    .kids_saying-myswiper::before,
    .kids_saying-myswiper::after {
        display: none;
    }

    .kids-saying-container {
        padding: 0 1rem;
    }

    .expert_slide {
        width: 100% !important;
    }

    header {
        padding: 0 1rem;
    }

    nav {
        height: 80px;
    }

    .nav_logo img {
        width: 64px;
    }

    .links_nav {
        position: fixed;
        height: 100dvh;
        background: var(--primary-color);
        left: -300px;
        top: 0;
        max-width: 300px;
        width: 100%;
        z-index: 100;
        padding-top: 80px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: .5s cubic-bezier(0.23, 1.00, 0.32, 1.00);
        -o-transition: .5s cubic-bezier(0.23, 1.00, 0.32, 1.00);
        transition: .5s cubic-bezier(0.23, 1.00, 0.32, 1.00);
    }

    .links_nav.active {
        left: 0;
    }

    .links_nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

    }

    .nav_links-btn-dc {
        display: none;
    }

    .menu_btn {
        width: 48px;
        height: 48px;
        background: var(--secondary-color);
        outline: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        outline: none;
        border: none;
        color: var(--primary-color);
        border-radius: 50%;
        cursor: pointer;
    }

    .nav_links-btn-mb,
    .close_btn {
        display: block;
    }

    .close_btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        background: var(--secondary-color);
        color: var(--primary-color);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        outline: none;
        border: none;
    }

    .no-scroll {
        overflow: hidden;
    }

    .home_hero-icon img {
        border-radius: 1rem;
    }

    .same_btn {
        font-size: 14px;
        padding: 10px 14px;
    }

    .footer-top {
       flex-wrap: wrap;
    }

    .book-summaries {
        max-width: 1600px;
        width: 100%;
        margin: auto;
        padding: 40px 16px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        padding: 40px 0;
    }

    .expert_myswiper {
        margin-top: 40px;
    }

    .experts-container {
        padding: 2.5rem 20px;
    }

    .kids-saying {
        padding: 40px 0;
    }

    .experts-container {
        border-radius: 24px;
    }

    .testimonial-author .author-name {
        font-size: 20px;
    }

    .testimonial-author .author-role {
        font-size: 18px;
    }

    .explorers_features {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .explorers_section,
    .demo_section {
        padding: 40px 20px;
    }

    .demo_header {
        gap: 12px;
    }

    .demo_form-title {
        font-size: 24px;
    }

    .demo_label {
        font-size: 14px;
    }

    .studen_setlight {
        display: none;
    }

    .explorers_features {
        margin-top: 24px;
    }

    .expert-image img {
        border-radius: 32px;
    }

    .footer-logo img {
        width: 80px;
    }

    .explorers_description,
    .demo_description {
        font-size: 14px;
    }

    .demo_form {
        gap: 24px;
    }

    .demo_button {
        margin: auto;
    }

    .why_explorers-icon {
        width: 48px;
        height: 48px;
    }

    .book-summaries-image {
        width: 120px;
    }

    .book_swiper-cont {
        margin-top: 40px;
    }

    #sat-cursor {
        display: none;
    }

    .header_bg {
        display: none;
    }

    .nav_logo {
        position: static;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        left: unset;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .contact_logo img {
        width: 150px;
    }

    .launch_container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leadership_cards {
        margin-top: 24px;
    }

    .space_tech_clubs_hero-container,
    .space_tech_labs_hero-container {
        padding: 40px 20px;
    }

    .leadership_card {
        font-size: 14px;
        padding: 10px 14px;
    }

    .launch_card-title {
        font-size: 20px;
    }

    .frequently_cards,
    .why_explorers-features-labs {
        margin-top: 24px;
    }

    .frequently_card-header {
        font-size: 18px;
    }

    .space_club-form-wrapper {
        margin-top: 30px;
    }

    .space_tech_clubs_hero-right-item-content-title {
        font-size: 24px;
        line-height: 32px;
    }

    .explorers_labs-features-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .explorers_labs-feature {
        background: var(--secondary-color);
    }

    .explorers_labs-feature-content h3,
    .explorers_labs-feature-content p,
    .explorers_labs-feature-link a {
        color: var(--primary-color);
    }

    .explorers_labs-feature-content h3 {
        font-size: 24px;
        line-height: normal;
    }

    .how-it-works-section,
    .how-it-works-details {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .how-it-works-steps2,
    .how-it-works-steps {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 24px;
    }

    .how-it-works-details {
        margin-top: 1rem;
    }

    .how-it-works-section {
        gap: 24px;
    }

    .how-it-works-description-md {
        display: block;
    }

    .how-it-works-description-dc {
        display: none;
    }

    .how-it-works-step {
        gap: 1rem;
    }

    .how-it-works-icon {
        border-radius: 50%;
    }

    .contact_container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .labs_contact-labs-subheading,
    .labs_contact-list p {
        font-size: 14px;
        text-align: center;
    }

    .labs_contact-list {
        gap: 8px;
    }

    .monetor_hero-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
        padding: 20px;
    }

    .mentor-profile-socials {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
    }

    .mentor-profile-social a {
        font-size: 16px;
    }

    .mentor-profile-social a svg {
        width: 16px;
        height: 16px;
    }

    .about_me-description {
        font-size: 14px;
        text-align: center;
        line-height: 22px;
    }

    .explorers_container-about {
        gap: 20px;
    }

    .about_me-title {
        text-align: center;
    }

    .about_detail-label {
        font-size: 24px;
    }

    .about_detail-value {
        font-size: 20px;
    }

    .about_details {
        gap: 30px;
    }

    .about_detail,
    .ac_list {
        gap: 1rem;
    }

    .award_list {
        margin-top: 24px;
        gap: 8px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .award_list div {
        font-size: 14px;
    }

    .experience_role,
    .ac_heading {
        font-size: 22px;
    }

    .experience_org,
    .ac_desc {
        font-size: 16px;
    }

    .experience_desc {
        font-size: 14px;
    }

    .about_me-title {
        font-size: 30px;
    }

    .ac_list {
        margin-top: 24px;
    }

    .about_details {
        padding: 24px;
    }
}


@media only screen and (max-width: 600px) {
    .footer-top {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-partners-dc {
        display: none;
    }

    .footer-partners-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 1rem;
    }

    .footer-partners .line {
        width: 1px;
        height: 40px;
    }

    .footer-description {
        margin-top: 1rem;
    }

    .footer-title {
        font-size: 22px;
    }

    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .why_explorers-features {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .testimonial {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-content {
        padding: 0;
        gap: 1rem;
    }

    .footer-copyright,
    .footer-links-list a {
        font-size: 14px;
    }

    .footer-links-list {
        gap: 8px;
    }

    .footer-title {
        margin-bottom: 1rem;
    }

    .book-summaries-subtitle {
        margin-top: 1rem;
    }

    .kids-saying-subtitle {
        font-size: 14px;
    }

    .explorers_top-img {
        top: 47px;
    }

    .explorers_features {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .demo_form-row {
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }

    .explorers_feature-item {
        gap: .7rem;
    }

    .explorers_icon-wrapper img {
        width: 32px;
    }

    .explorers_feature-title {
        font-size: 18px;
    }

    .space_tech_clubs_hero-right {
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }

    .demo_form-col {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .how-it-works-steps2,
    .how-it-works-steps {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .ac_list {
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }

    .ac_item {
        border-radius: 24px;
    }
}

.frequently_cards {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
}

/* Each FAQ card */
.frequently_card {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  text-align: left;
  transition: box-shadow 0.2s ease;
}

.frequently_card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Header (question row) */
.frequently_card-header {
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.frequently_card-header:hover {
  background: #f8f8f8;
}

.faq-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

/* Answer (hidden by default) */
.frequently_card-disc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 0.6rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.35;
}

.frequently_card-disc p {
  margin: 0.25rem 0;
  padding-bottom: 0.25rem;
}

/* Active (expanded) state */
.frequently_card.active .frequently_card-disc {
  max-height: 200px; /* adjustable */
}

.frequently_card.active .faq-arrow {
  transform: rotate(180deg);
}



@media only screen and (max-width: 425px) {
    .testimonial-image img {
        width: 100%;
    }

    .contact_logo img {
        width: 100px;
    }

    .hero_mentor-img img {
        width: 100%;
    }
}

@media only screen and (min-width: 1500px) {
    .home_hero-container {
        -ms-grid-columns: 1.1fr .9fr;
        grid-template-columns: 1.1fr .9fr;
        gap: 120px;
    }
}


/* show custom cursor only on wider screens (desktop) */
@media (min-width: 768px) {

    /* satellite cursor element */
    #sat-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 34px;
        height: 34px;
        pointer-events: none;
        /* allow clicks through it */
        -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        -webkit-transition: opacity 50ms ease, -webkit-transform 150ms ease;
        transition: opacity 50ms ease, -webkit-transform 150ms ease;
        -o-transition: transform 150ms ease, opacity 50ms ease;
        transition: transform 150ms ease, opacity 50ms ease;
        transition: transform 150ms ease, opacity 50ms ease, -webkit-transform 150ms ease;
        will-change: transform, opacity;
        z-index: 99999;

    }

    /* smaller when hovering interactive elements, optional */
    .sat-small {
        -webkit-transform: translate(-50%, -50%) scale(0.75) !important;
        -ms-transform: translate(-50%, -50%) scale(0.75) !important;
        transform: translate(-50%, -50%) scale(0.75) !important;
        opacity: 0.95;
    }

    /* hide on touch or when explicitly disabled via class */
    .sat-disabled {
        display: none !important;
    }

    #sat-cursor.sat-white {
        color: white;
        /* footer par white ho jayega */
    }
}

/* 1) Stop Chrome auto-darkening the page */
:root { color-scheme: light; }
html, body { background:#fff; color:#111; }
img, svg { forced-color-adjust: none; }

/* 2) Full-bleed white behind the header even though content is max-width */
header {
  position: relative;
  z-index: 20;
  background: transparent;
}
header::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  top: 0;
  background: #fff;
  z-index: -1;
}


/* 4) Properly hide the in-page nav links */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,1px,1px);
  white-space: nowrap; border: 0;
}


