/*
 * Theme Name: AKG custom Theme
 * Description: Starter Theme to use with Timber
 * Author: Team D4G!
*/

/* ============================================================
   📁 Base: Google Fonts Import
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   🧩 Root Variables
============================================================ */
:root {
    /* Colors */
    --color-primary: #0A1525;
    --color-secondary: #D5A64A;
    --color-white: #ffffff;
    --color-grey: #f5f5f5;

    /* Fonts */
    --font-family-base: 'Poppins', sans-serif;

    /* Container */
    --container-max-width: 1170px;
    --container-padding: 0 15px;

    /* Font sizes using clamp(min, preferred, max) */
    --h1-size: clamp(1.7rem, 5vw, 3.5rem);
    /* 24px - 56px */
    --h2-size: clamp(1.7rem, 4vw, 3rem);
    /* 24px - 48px */
    --h3-size: clamp(1.3rem, 3vw, 2rem);
    /* 18px - 32px */
    --p-size: clamp(1rem, 2vw, 1.125rem);
    /* 16px - 18px */
    --p-heading: clamp(1.125rem, 2.5vw, 1.5rem);
    /* 18px - 24px */
    --p-tagline: clamp(1rem, 2vw, 1.25rem);
    /* 16px - 20px */
    --p-brand: clamp(0.8rem, 2vw, 1.75rem);
    /* 12px - 28px */

    /* Breakpoints */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 768px;
    --breakpoint-md: 1024px;
    --breakpoint-lg: 1280px;
    --breakpoint-xl: 1440px;
}

/* ============================================================
   🌐 Reset & Base
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    color: var(--color-white);
    /* background: var(--color-white); */
    font-size: var(--p-size);
}

/* ============================================================
   🧱 Typography (Clamp-based responsive)
============================================================ */
h1 {
    font-size: var(--h1-size);
    font-weight: 700;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 500;
}

p {
    font-size: var(--p-size);
}

p.heading {
    font-size: var(--p-heading);
    font-weight: 700;
}

p.tagline {
    font-size: var(--p-tagline);
    font-style: italic;
}

p.brand {
    font-size: var(--p-brand);
    font-weight: 600;
}

/* ============================================================
   🎯 Container
============================================================ */
.container {
    max-width: var(--container-max-width);
    padding: var(--container-padding);
    margin: 0 auto;
    width: 100%;
}

.section {
    padding: 120px 0;
}

/* ============================================================
   🎨 Buttons (.btn structure)
============================================================ */
.btn {
    font-family: inherit;
    font-size: 1.2rem;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: none;
}

.btn-primary:hover {
    background-color: #b98b3a;
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.btn-secondary:hover {
    background-color: #111d32;
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.btn-outline:hover {
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

/* ============================================================
   🖼️ Images
============================================================ */
img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================================
   🧠 Responsive Utilities (optional helper classes)
============================================================ */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Add more utility classes if needed */


/* Header */
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background: var(--color-primary);
    z-index: 999;
    box-shadow: 0px 0px 15px 1px #43457e40;
}

.header {
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    @media (max-width: 767.9px){
        justify-content: center;
    }
}

.header a,
.header-btns {
    display: inline-flex;
    align-items: center;

}

.header-btns {
    gap: 15px;
}

.header a {
    text-decoration: none;
}

.header a .brand {
    color: var(--color-secondary);
}

.header a img {
    max-width: 85px;
}

.hero-section {
    position: relative;
    padding-top: 180px;
}

.hero-section .hero-wrapper {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.hero-section h1 {
    line-height: 1.3;
}

.hero-section .hero-left {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    align-items: flex-start;
}

.hero-section .boxed {
    margin-bottom: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #697D96;
    background: #FFFFFF14;
    width: fit-content;
}

.hero-section .hero-right img {
    height: 100%;
}

.hero-section .back-drop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.hero-section .back-drop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-tagline {
    font-style: italic;
    color: var(--color-secondary);
    font-weight: 700;
    max-width: 1026px;
    margin: 0 auto;
    text-align: center;
}

.features-section {
    background: var(--color-primary);
}

.features-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
}

.features-section .title-wrapper {
    text-align: center;
}

.features-section h2 {
    line-height: 1.3;
    margin-bottom: 16px;
}

.features-section p {
    max-width: 1010px;
    margin: 0 auto;
}

.features-section .features-cards-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.features-section .features-card {
    flex: 1 1 210px;
    background: var(--color-secondary);
    text-align: center;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #0B233F 0%, #0A1525 100%);
    color: #0A1525;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding: 16px;
    align-items: center;
}

.features-section .features-card img {
    max-width: 64px;
    max-height: 64px;
    height: 100%;
}

.features-section .features-card p {
    font-weight: 500;
}

.how-it-works {
    /* background: var(--color-primary); */
    position: relative;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works .process-steps-wrapper {
    max-width: 960px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.how-it-works .step-cover {
    display: flex;
    column-gap: 48px;
    align-items: center;
}

.how-it-works .step-cover img {
    max-width: 144px;
    height: 100%;
}

.how-it-works .step-info {
    background: #0A1525;
    border: 1px solid #697D96;
    padding: 20px 32px;
    border-radius: 16px;
    width: 100%;
}

.how-it-works .step-info p {
    font-weight: 400;
}

.how-it-works .step-info .heading {
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.how-it-works .how-it-works-backdrop {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.how-it-works .how-it-works-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-section {
    background: linear-gradient(180deg, #0B233F 0%, #0A1525 100%);
}

.discover-section h2 {
    color: var(--color-white);
    margin-bottom: 60px;
    text-align: center;
}

.discover-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discover-section .discover-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.discover-section .discover-card {
    /* flex: 1 1 200px; */
    max-width: 275px;
    border: 1px solid #FFFFFF29;
    background: #0A1525;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    justify-content:center;
}

.discover-section .discover-card img {
    max-width: 64px;
}

.discover-section .discover-card p {
    /*color: var(--color-secondary);//*/
    color: #FFFFFF;
    font-weight: 500;
    text-align: center !important;
}

.discover-section .discover-card .small-p {
    /*color: var(--color-secondary);//*/
    color: #ADC4E6;
    font-size: clamp(14px,2vw,16px);
}

.cta-section {
    /* background: var(--color-secondary); */
    position: relative;
}

.cta-section .container {
    max-width: 994px;
    /* background-color: #FFFFFF80;
    border-radius: 16px;
    padding: 8px; */
}

.cta-section .cta-cover {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 8px solid #ead3a5;
}

.cta-section .cta-title {
    color: var(--color-primary);
}

.cta-section .cta-title h2 {
    margin-bottom: 16px;
}

.cta-section .btn.btn-secondary {
    margin-top: 30px;
}

/* Footer */
@media (max-width: 1024px) {
    .header a img {
        max-width: 80px;
    }
}

@media (max-width: 991px) {
    .how-it-works .step-cover img {
        max-width: 100px;
    }

    .how-it-works .step-cover {
        column-gap: 32px;
    }
}

@media (max-width: 768px) {

    .section {
        padding: 80px 0;
    }

    .btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .header a img {
        max-width: 60px;
    }

    .hero-section {
        padding-top: 180px;
    }

    .hero-section .hero-wrapper {
        flex-direction: column;
        row-gap: 40px;
    }

    .hero-section .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-section .hero-right img {
        max-width: 600px;
    }

    .how-it-works .step-cover img {
        max-width: 100px;
    }

    .how-it-works .step-cover img {
        max-width: 80px;
    }

    .how-it-works .step-cover {
        column-gap: 16px;
    }

    .footer .footer-logo img {
        max-width: 60px;
    }
}

@media (max-width: 567px) {

    .header a,
    .header-btns {
        gap: 6px;
    }

    /*.header a img{*/
    /*    max-width: 40px;*/
    /*}*/
    .hero-section {
        padding-top: 150px !important;
    }

    .hero-section .hero-left {
        row-gap: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .how-it-works h2 {
        margin: 35px;
    }

    .how-it-works .process-steps-wrapper {
        row-gap: 20px;
    }

    .how-it-works .step-cover img {
        max-width: 40px;
    }

    .how-it-works .step-cover {
        column-gap: 10px;
    }

    .discover-section h2 {
        margin-bottom: 40px;
    }

    .discover-section .discover-cards-wrapper {
        gap: 16px;
    }

    .discover-section .discover-card {
        max-width: none;
        flex: 1 1 auto;
        /*flex-direction: row;*/
        column-gap: 10px;
    }

    .discover-section .discover-card p {
        text-align: start;
    }

    .footer .footer-top .footer-logo img {
        max-width: 50px;
    }

    .footer-bottom * {
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .header-btns .btn.btn-outline {
        display: none;
    }
}




.why-different-section {
    /* background-color: var(--color-primary); */
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
}

.why-different-section .why-different-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.why-different-section .why-different-overlay img {
    width: 100%;
    height: 100%;
}

.why-different-section h2 {
    margin-bottom: 60px;
}

.why-different-section .features-box-wrapper {
    max-width: 961px;
    height: 535px;
    position: relative;
    margin: 3.2rem auto;
}

.features-box-wrapper .feature-box {
    border: 1px solid #7BAEF34D;
    background: #0A1525;
    border-radius: 40px;
    padding: 10px 28px;
    color: var(--color-white);
    width: fit-content;
    max-width: 300px;
    position: absolute;
}

.feature-box.box-1 {
    left: 150px;
    top: 45px;
}

.feature-box.box-2 {
    max-width: 355px;
    right: 20px;
    top: 60px;
}

.feature-box.box-3 {
    max-width: 360px;
    top: 258px;
    left: -50px;
}

.feature-box.box-4 {
    top: 275px;
    right: 10px;
}

.feature-box.box-5 {
    bottom: 31px;
    left: 126px;
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
    .why-different-section .features-box-wrapper {
        height: 490px;
    }

    .feature-box.box-3 {
        left: 0;
    }
}

@media screen and (max-width: 991px) {
    .why-different-section .features-box-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        row-gap: 16px;
    }

    .features-box-wrapper .feature-box {
        position: unset;
        max-width: 380px;
        text-align: start;
        width: 100%;
    }

    .why-different-section .why-different-overlay img {
        object-position: left;
    }
}

@media screen and (max-width: 567px) {
    .features-box-wrapper .feature-box {
        max-width: 265px;
    }

    .why-different-section .why-different-overlay img {
        object-position: 30% 50%;
    }

}

/* Ai Accuracy Section */

.ai-accuracy-section {
    background-color: var(--color-primary);
    color: #fff;
}

.ai-accuracy-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.ai-accuracy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.ai-accuracy-wrapper.reverse {
    margin: 0 0 60px;
}

.ai-left-image,
.ai-right-image {
    flex: 1;
    max-width: 379px;
    width: 100%;
}

.ai-left,
.ai-right {
    flex: 1;
    min-width: 280px;
}

.ai-accuracy-section p.heading {
    margin-bottom: 26px;
}

.ai-bullets {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.ai-bullets li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.ai-bullets img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .ai-accuracy-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .ai-accuracy-wrapper.reverse {
        margin-top: 30px;
        flex-direction: column-reverse;
    }

    .ai-bullets li {
        font-size: 14px;
    }

    .ai-bullets img {
        width: 18px;
        height: 18px;
    }
}


.horoscope-section {
    width: 100%;
    /* height: 100vh; */
    color: #f3f5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 7vw, 8rem) 0;
}

.horoscope-content {
    margin: auto;
    text-align: center;
    padding: 150px 100px;
}

.horoscope-title {
    margin-bottom: clamp(1.2rem, 3vw, 2.5rem);
    font-family: var(--font-family-base);
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 4.5rem);
    line-height: 1.4;
    text-align: center;
}

.horoscope-desc {
    color: #e2e6f9;
    margin-bottom: clamp(0.8rem, 2vw, 1.45rem);
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw , 1.75rem);
    line-height: 1.4;
    text-align: center;
}

.horoscope-desc span {
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.75rem);
    line-height: 25px;
    text-align: center;
}

/* Responsive for hero */
@media screen and (max-width: 767.9px) {
    .horoscope-section {
        height: auto;
        padding: 1.5rem 1rem;
    }

    .horoscope-content {
        padding:80px 0;
        margin: 3rem auto;
        text-align: center;

    }
}

/* ======================== AstroKarmaJyoti Card Section ======================== */
.akj-birthchart-bg {
    width: 100%;
    background-image: url('http://astrokarmajyoti.com/wp-content/uploads/2025/07/2x-background-1-1-scaled.png'), url('http://astrokarmajyoti.com/wp-content/uploads/2025/07/2x-wheel-1-1.png');
    background-repeat: repeat, no-repeat;
    background-size: cover, contain;
    background-position: center, center;
    background-color: #0a1532;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 15PX;
  }
  
  .akj-birthchart-heading {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #fff;
    text-shadow: 0 4px 18px #0006;
    letter-spacing: 0.03em;
    font-weight: 700;
    width: 100%;
    line-height: 1.4;
  }
  
  .akj-birthchart-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 320px;              
  }
  
  .akj-birthchart-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1.3px);
    background: #0A1525;
    box-shadow: 0 0 28px 8px #1A4374, 0 0 0 2px #245aa42f;
    border-radius: 16px;
    border: 1.7px solid #5883B8;
    padding: 32px;
    gap: 4px;
    box-sizing: border-box;
  }
  .astrokarmajyoti-card-title {
    color: #ffe888;
    margin-bottom: clamp(0.5rem, 1.1vw, 0.8rem);
    font-family: Poppins, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.75rem);
    line-height: 1.3;
    /* letter-spacing: 0.01em; */
    text-align: center;
}

.astrokarmajyoti-card-desc {
    color: #eaf2ff;
    font-family: Poppins, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.4;
    text-align: center;
    opacity: 0.96;
    letter-spacing: 0.01em;
}
  .akj-birthchart-card-left {
    margin-top: 4%;
    text-align: left;
    align-items: flex-start;
    max-width: 375px;
    min-height: 358px;
  }
  
  .akj-birthchart-card-right {
    margin-top: 25%;
    text-align: left;
    align-items: flex-start;
    max-width: 390px;
    min-height: 370px;
  }
  
  /* Responsive for tablets/small screens */
  @media (max-width: 950px) {
    .akj-birthchart-row {
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 20px;
    }
  
    .akj-birthchart-card-left,
    .akj-birthchart-card-right {
      margin: 0;
    }
  }

/* ======================== Features SECTION ======================== */
.horoscope-features-section {
    width: 100%;
    padding: clamp(2rem, 6vw, 6rem) 0 clamp(2.5rem, 7vw, 6rem) 0;
    background: #0A1525;
    background-size: cover;
}

.horoscope-features-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    text-align: center;
}

.horoscope-features-heading {
    color: #fff;
    font-family: Poppins;
    font-weight: 600;
    /* font-size: 48px; */
    font-size: clamp(1.5rem, calc(1.2rem + 2vw), 3rem);

    line-height: 1.6;
    text-align: center;
    margin-bottom: clamp(1.3rem, 2vw, 2.1rem);
}

.horoscope-features-subheading {
    color: #dbe2f5;
    font-family: Poppins;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 28px;
    text-align: center;
    margin-bottom: clamp(3.8rem, 4vw, 4rem);
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.horoscope-features-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 6vw, 2.7rem);
    align-items: center;
    margin-bottom: clamp(2.2rem, 7vw, 3.6rem);
}

.horoscope-features-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
}

.horoscope-features-row-centered {
    justify-content: center;
    max-width: 760px;
}

.horoscope-features-feature {
    background: rgba(22, 28, 61, 0.97);
    box-shadow: 0px 3px 16px 2px #0f163249;
    padding: clamp(1.02rem, 2vw, 1.45rem) clamp(1rem, 1.2vw, 1.5rem);
    max-width: 300px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.16s;
    min-width: 180px;
    gap: 16px;
}

.horoscope-features-feature:hover {
    box-shadow: 0px 7px 36px 7px #2e4557c5;
}

.horoscope-features-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horoscope-features-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.horoscope-features-title {
    color: #D5A64A;
    font-family: Poppins;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    line-height: 24px;
    text-align: center;
}

.horoscope-features-row .horoscope-features-feature:nth-child(odd) {
    background: #0D3A7D29;
}

.horoscope-features-row .horoscope-features-feature:nth-child(even) {
    background: #0D3A7D14;
}

.horoscope-features-note {
    color: #74A6EF;
    font-family: Poppins;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 28px;
    text-align: center;
    margin-bottom: clamp(1.7rem, 4vw, 2.5rem);
}

.horoscope-features-cta-wrap {
    margin: 0 auto;
}

.btn-primary {
    cursor: pointer;
    transition: box-shadow 0.18s;
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: 0px 7px 30px 8px #fee69770;
}

@media screen and (max-width: 767.9px) {

    .horoscope-features-row,
    .horoscope-features-row-centered {
        flex-direction: column;
        align-items: center;
        gap: clamp(1rem, 4vw, 2.2rem) 0;
    }

    .horoscope-features-feature {
        min-width: 120px;
        max-width: 100%;
        width: 100%;
    }
}

/* ======================== COSMIC CTA SECTION ======================== */
.cosmic-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0F223D;
    color: #fff;
    /* min-height: 100vh; */
    padding: 5rem 3rem;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.cosmic-section-content {
    flex: 1;
    max-width: 584px;
    margin-right: 2rem;
}

.cosmic-section-heading {
    margin-bottom: 1rem;
    font-family: Poppins;
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.4;
    letter-spacing: 0%;
}

.cosmic-section-paragraph {
    margin-bottom: 1.5rem;
    color: #ddd;
    font-family: Poppins;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    line-height: 1.4;
    letter-spacing: 0%;
}

.cosmic-section-visual {
    flex: 1;
    max-width: 584px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 584px;
}

.cosmic-section-visual img {
    max-width: 100%;
    height: auto;
    background: transparent;
    padding: 18px;
}

@media screen and (max-width: 767.9px) {
    .cosmic-section-container {
        flex-direction: column-reverse;
        gap:15px;
        text-align: center;
        padding: 3rem 1rem;
    }

    .cosmic-section-content,
    .cosmic-section-visual {
        max-width: 100%;
        margin: 0;
    }

    .cosmic-section-visual {
        margin-top: 0rem;
    }

    .cosmic-section-heading {
        font-size: 30px;
        line-height: 42px;
    }
}

/* ======================== FAQ SECTION ======================== */
.faq-section-root {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0a1525;
    box-sizing: border-box;
    padding: 0 2rem;
}

.faq-section-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 3rem);
    margin-top: 60px;
    margin: 3rem;
    text-align: center;
    letter-spacing: 0.01em;
}

.faq-box-shadow {
    background: #0A1525;
    border-radius: 18px;
    box-shadow: 0 0 28px 0 rgba(13, 64, 144, 0.27), 0 4px 16px 7px rgba(18, 23, 35, 0.21);
    padding: 0px 36px;
    width: 100%;
    max-width: 880px;
    margin-bottom: 45px;
}

.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-item {
    padding: 8px;
}

.faq-toggle-btn {
    width: 100%;
    display: flex;
    align-items: flex-start;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 26px 0 18px 0;
    font-family: inherit;
    position: relative;
}

.faq-question {
    color: #fff;
    font-weight: 400;
    font-size: 1.11rem;
    flex: 1;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.03em;
    transition: color 0.25s;
    margin: 0;
}

.faq-arrow {
    color: #c9b271;
    font-size: 1.4em;
    margin-left: 30px;
    transition: transform .23s cubic-bezier(.4, 2.3, .3, 1), color .2s;
    user-select: none;
    flex-shrink: 0;
    align-self: flex-start;
}

.faq-toggle-btn[aria-expanded="true"] .faq-arrow {
    transform: rotate(-180deg);
}

.faq-answer-wrap {
    width: 100%;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.23, 1, .32, 1);
    max-height: 0;
}

.faq-item.open .faq-answer-wrap {
    max-height: 800px;
    transition: max-height .4s cubic-bezier(.85, 0, .18, 1);
}

.faq-answer {
    color: #74A6EF;
    font-size: 1rem;
    padding-right: 20px;
    line-height: 1.7;
    padding-bottom: 8px;
    animation: fadeInFaq .24s;
    margin-top: -4px;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, #2a3342 10%, #36425a 85%);
    margin: 0;
}

@media screen and (max-width: 767.9px) {
    .faq-box-shadow {
        padding: 0 35px;
        margin: 3rem 170px;
    }

    .faq-section-title {
        font-size: 1.37rem;
    }
}

@media screen and (max-width: 440px) {
    .faq-section-title {
        margin-top: 30px;
    }

    /* .faq-box-shadow { padding: 10px 1px;} */
    .faq-question {
        font-size: 0.96rem;
    }

    .faq-answer {
        font-size: 0.92rem;
    }
}



/* ======================== Astro Features SECTION (UNIQUE CLASSES) ======================== */
.astro-features-section {
    width: 100%;
    padding: clamp(2rem, 6vw, 6rem) 0 clamp(2.5rem, 7vw, 6rem) 0;
    background: #131a2f;
    background-size: cover;
}

.astro-features-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    text-align: center;
}

.astro-features-heading {
    color: #fff;
    font-family: Poppins, Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 3rem);
    line-height: 1.6;
    text-align: center;
    margin-bottom: clamp(1.3rem, 2vw, 2.1rem);
}

.astro-features-subheading {
    color: #dbe2f5;
    font-family: Poppins, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 28px;
    text-align: center;
    margin-bottom: clamp(3.8rem, 4vw, 4rem);
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.astro-features-rows {
    display: flex;
    flex-direction: column;
    gap:0;
    align-items: center;
    margin-bottom:0;
}

.astro-features-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:0;
    margin: auto 0;
    /* width: 100%;
    max-width: 980px; */
}

.astro-feature-card {
    background: rgba(22, 28, 61, 0.97);
    box-shadow: 0px 3px 16px 2px #0f163249;
    padding: clamp(1.02rem, 2vw, 1.45rem) clamp(1rem, 1.2vw, 1.5rem);
    max-width: 300px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.16s;
    min-width: 180px;
    gap: 16px;
}

.astro-feature-card:hover {
    box-shadow: 0px 7px 36px 7px #2e4557c5;
}

.astro-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astro-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.astro-feature-title {
    color: #D5A64A;
    font-family: Poppins, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    line-height: 24px;
    text-align: center;
}

.astro-features-row .astro-feature-card:nth-child(odd) {
    background: #0D3A7D29;
}

.astro-features-row .astro-feature-card:nth-child(even) {
    background: #0D3A7D14;
}

.astro-features-row-below .astro-feature-card:nth-child(even) {
    background: #0D3A7D29;
}

.astro-features-row-below .astro-feature-card:nth-child(odd) {
    background: #0D3A7D14;
}


.astro-features-note {
    color: #74A6EF;
    font-family: Poppins, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 28px;
    text-align: center;
    margin-bottom: clamp(1.7rem, 4vw, 2.5rem);
}

.astro-features-cta-wrap {
    margin: 4rem auto 0  auto;
}

.astro-btn-primary {
    padding: clamp(0.82rem, 2vw, 1.2rem) clamp(2.4rem, 6vw, 3.5rem);
    background: linear-gradient(93deg, #ffe888 19%, #ffd599 91%);
    color: #16233d;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 2.8px 23px 0px #dca90b51;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: box-shadow 0.18s;
}

.astro-btn-primary:hover,
.astro-btn-primary:focus {
    box-shadow: 0px 7px 30px 8px #fee69770;
}

@media screen and (max-width: 767.9px) {
    .astro-features-row {
        flex-direction: column;
        align-items: center;
        gap: clamp(1rem, 4vw, 2.2rem) 0;
    }

    .astro-feature-card {
        min-width: 120px;
        max-width: 100%;
        width: 100%;
    }
}