:root {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --font-heading: 'Michroma', 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #02050e; /* Deep space fallback */
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('../images/baner-img.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden; 
}


/* Hamburger */
.hamburger{
    position:static;
    top: 101px;
    right: 17%;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}


/* Cross Animation */
.hamburger.active .bar:nth-child(1){
    transform:translateY(10px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
}

/* Sidebar Menu */
.nav-menu{
    position:fixed;
    top:0;
    right: -680px;
    width: 510px;
    height:100vh;
    background:#0000;
    transition:0.4s ease;
    padding-top:80px;
    z-index:1000;
    background: black;
}
li#menu-item-536 a {
    margin-left: 0;

}
.nav-menu.active{
    right:0;
}

.nav-menu ul{
    list-style:none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li{
    padding:15px 30px;
    list-style: none;
}

.nav-menu ul li a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}
.nav-menu ul li a:hover{
    color: #fff;
    opacity: 0.7;
} 


/* Demo Sections */
section{
    height:100vh;
    padding:100px 40px;
}

/* Navbar */
.navbar {
    /*position: absolute;*/
      position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-container .logo {
    height: 75px;
    object-fit: contain;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* Buttons */
.btn {
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    background: transparent;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 16px;
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    z-index: 2;
    margin-top: 5vh; 
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 75px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-amazon {
    display: inline-block;
}

.btn-amazon img {
    height: 48px; /* matching visual height with order now btn */
    object-fit: contain;
    display: block;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    background-color: #000;
}

.about-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: var(--text-primary);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about-btn {
    border-radius: 40px;
    padding: 12px 35px;
}

.about-img {
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    object-fit: cover;
}

/* Mind Section */
.mind-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 0px;
    background-color: #000;
}

.mind-content {
    max-width: 900px;
}

.mind-globe-img {
    max-width: 450px;
    width: 100%;
    border-radius: 50%;
}

.mind-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mind-description {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Book Section */
.book-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #000;
}

.book-vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(270deg);
    font-size: 55px;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.book-cover {
    max-height: 75vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.book-details {
    padding-left: 2rem;
}

.book-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #b0b0b0;
}

.book-price {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 900;
    color: #fff;
}

/* Discover Section */
.discover-section {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 80px;
    background-color: #000;
}

.discover-content-col {
    padding-left: 5%;
}

.discover-title {
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.discover-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.discover-list li {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
    list-style:none;
}

.discover-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #fff;
}

.discover-btn {
    padding: 12px 40px;
}

.discover-globe {
    max-height: 80vh;
    object-fit: contain;
}

/* Earth Section */
.earth-section {
    min-height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 10vh;
}

.earth-planet {
    position: absolute;
    right: -5%;
    top: 45%;
    transform: translateY(-50%);
    width: 65vw;
    min-width: 600px;
    z-index: 1;
    pointer-events: none;
}

.earth-clouds {
    position: absolute;
    bottom: 15vh;
    right: 0;
    width: 80vw;
    min-width: 600px;
    z-index: 2;
    opacity: 0.9;
    object-fit: contain;
    pointer-events: none;
}

.earth-surface {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    object-fit: cover;
    object-position: center top;
    z-index: 3;
    pointer-events: none;
}

.earth-text-col {
    position: relative;
    z-index: 4;
    padding-left: 5%;
}

.earth-title {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4.1vw, 85px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.footer-section li {
    list-style: none;
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 65px;
    }
    .book-vertical-title {
        font-size: 40px;
    }
    .discover-title {
        font-size: 40px;
    }
    .earth-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 50px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .navbar {
        padding: 30px 5%;
    }
    .hero-content {
        padding: 0 5%;
    }
    .about-title {
        font-size: 45px;
    }
    .mind-title {
        font-size: 45px;
    }
    .book-details {
        padding-left: 15px;
    }
    .discover-content-col {
        padding-left: 15px;
    }
    .discover-globe {
        max-height: 50vh;
        margin-top: 40px;
    }
    .earth-text-col {
        padding-left: 15px;
    }
    .earth-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 1px;
    }
    .logo-container .logo {
        height: 50px;
    }
    .nav-right {
        gap: 15px;
    }
    .btn-outline {
        padding: 8px 20px;
        font-size: 13px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .btn-amazon img {
        height: 44px;
    }
    .about-title {
        font-size: 36px;
    }
    .about-section {
        padding-top: 120px;
    }
    .mind-title {
        font-size: 35px;
    }
    .mind-description {
        font-size: 16px;
    }
    .mind-globe-img {
        max-width: 300px;
    }
    .mind-actions {
        flex-direction: column;
        align-items: center;
    }
    .mind-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    .book-vertical-title {
        font-size: 35px;
    }
    .book-price {
        font-size: 35px;
    }
    .discover-title {
        font-size: 40px;
    }
    .discover-list li {
        font-size: 16px;
    }
    .earth-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .earth-clouds {
        width: 100%;
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .navbar {
        padding: 20px 5%;
    }
}





/*animated css*/




 

.img_after_hero{
    position: absolute;
    width: 100%;
    height: 100%;
}


.banner_hero_img{width: 100%;height: 100%;}

#
_hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

#img_after_hero img {
  transform-origin: center center;
  will-change: transform;
}


#hero_content_area{
    will-change: transform;
}




.hero_section_after_animation_fadein {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: scale(3.3);
  transform-origin: center center;
  pointer-events: none;
z-index: 99;

}


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


.video_globe{
    width: 100%;
}


.video_globe video{ 
    width: 100%;
}



#video_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#video_section .container,
#video_section .row,
#video_section .col-12 {
  height: 100%;
}
#video_section .row {
  align-items: center;
  justify-content: center;
}


.video_globe {
    width: 75vw;
    height: 80vh;
    object-fit: cover;
    border-radius: 24px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.video_globe video {
   width: 100%;
   height: 85vh;
   object-fit: contain;
   transform: scale(1);
   border-radius: 20px;
}

#video_section .mind-title,
#video_section .mind-description,
#video_section .mind-actions {
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
}



.mind-title {
  margin-bottom: 20px;
}


#video_section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}






.video_globe {
  will-change: transform;
}




.video_next_targer {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.video_next_targer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#heroVideo {
  will-change: transform;
} 


.the-feature-section{

    background-color: #000;
    height: 100vh;

}



 
.the_feature_book_realative{

}


.the_feature_book_heading{

}
 
.the_feature_book_heading h3{
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: var(--font-heading);
    font-size: 115px;
    font-weight: 800;
    line-height: 127.783px;
    text-transform: capitalize;
    position: relative;
    z-index: 99;
}  


.the_feature_isnt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.the_feature_book_realative {
    position: relative;
    height: 100vh;
    width: 100%;
}

.the_feature_book_heading {
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.cloud_feature{
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cloud_feature img {
    width: 100%;
}



.book_feature_trigger{
    width: 100%;
}





/* Whispers Section (Testimonials) */
.whispers-section {
    min-height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 100px 8%;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 60px;
    max-width: 600px;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon {
    margin-bottom: 30px;
}
.quote-icon img {
    width: 60px;
}
.quote-icon svg {
    width: 60px;
    height: auto;
    fill: #fff;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #fff;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.author-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.whispers-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-arrow {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.control-arrow:hover {
    opacity: 1;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Footer Section */
.footer-section {
    min-height: 100vh;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 80px 5% 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-logo-container {
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    max-width: 350px;
    height: auto;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
    width: 100%;
}

.footer-socials a {
    color: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0 0 10vh; /* Push legal links up from the earth */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
}

.footer-copyright {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
    margin-top: auto; /* Push to absolute bottom */
    width: 100%;
    padding-top: 20px;
}

@media (max-width: 992px) {
    .footer-logo {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 100px;
    }
    .footer-nav {
        gap: 15px;
    }
    .footer-nav a {
        font-size: 16px;
    }
    .footer-legal {
        gap: 20px;
        margin-bottom: 50px;
    }
    .footer-logo {
        max-width: 220px;
    }
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-container .logo {
    height: 75px;
    object-fit: contain;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
}

@media (max-width: 992px) {
    .navbar {
        padding: 30px 5%;
    }
}

@media (max-width: 768px) {
    .logo-container .logo {
        height: 50px;
    }
    .nav-right {
        gap: 15px;
    }
}

