/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Playfair Display', serif;
}

body{
  /*background: radial-gradient(circle at 70% 30%, #2a145c 0%, #140a2f 40%, #0d0626 100%);
  color:#fff;*/

     background: radial-gradient(circle at 50% 50%, rgba(120, 80, 255, 0.2), transparent 70%),
                linear-gradient(180deg, #140a24, #2a1b3d);
    color: white;
}

/* ================= TOP BAR ================= */
.top-bar{
  display:flex;
  justify-content:space-between;
  padding:8px 40px;
  font-size:13px;
  color:#b9b4d0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.top-bar .right span{
  margin-left:20px;
}



.navbar{
    position: fixed;   /* 👈 sticky se better for exact look */
    top: 30px;         /* 👈 gap maintain karega */
    left: 50%;
    transform: translateX(-50%);  /* center me rahe */

    width: calc(100% - 50px);     /* same side spacing */
    max-width: 1200px;

    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 30px;

    background: rgba(20, 15, 45, 0.7);
    backdrop-filter: blur(14px);

    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,#f5b942,#ff7a00);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-weight:bold;
}

.logo h3{
  font-size:15px;
  font-weight:500;
}

.logo p{
  font-size:10px;
  color:#a8a3c2;
  letter-spacing:1px;
}

/* NAV LINKS */
nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#cfcbe6;
  font-size:14px;
  transition:0.3s;
}

nav a:hover{
  color:#f5b942;
}

/* BUTTON */
.btn{
  padding:10px 24px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg,#f5b942,#ff7a00);
  color:#000;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.05);
}

/* MOBILE */
.menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}
.whatsapp-link{
  color:#f6a94a;
  text-decoration:none;
  font-weight:500;
  cursor:pointer;
}

.whatsapp-link:hover{
  color:#ff6a3d;
}


/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px){

  .top-bar{
    padding:8px 15px;
    font-size:11px;
  }

  .navbar{
    top: 20px;
    width: calc(100% - 20px);
    padding: 12px 20px;
  }

  /* HIDE NORMAL NAV */
  .nav-links{
    position: fixed;
    top: 0;
    right: -100%;   /* 👈 hidden by default */
    width: 260px;
    height: 100vh;

    background: #140f2d;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 80px 25px;
    gap: 20px;

    transition: 0.4s;
    z-index: 9999;
  }

  /* SHOW SIDEBAR */
  .nav-links.active{
    right: 0;
  }

  /* LINKS STYLE */
  .nav-links a{
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
  }

  /* HIDE BUTTON IN MOBILE */
  .btn{
    display: none;
  }

  /* SHOW MENU ICON */
  .menu-toggle{
    display: block;
    color: #fff;
  }
}

body.overlay::before{
  content:"";
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
/* ================= HERO ================= */

/* ===== GLOBAL ===== */

/* ===== HERO SECTION ===== */
.hero{
    text-align:center;
    padding:120px 20px 60px;
    max-width:900px;
    margin:auto;
    position:relative;
}

/* TAGLINE */
.tagline{
    font-size:12px;
    letter-spacing:3px;
    color:#f5b942;
    margin-bottom:20px;
    opacity:0.8;
}

/* HEADING */
.hero h1{
    font-size:72px;
    font-weight:300;
    line-height:1.2;
    margin-bottom:25px;
}

.hero h1 span{
    color:#f5b942;
    font-style:italic;
}

/* TEXT */
.desc{
    font-size:16px;
    color:#b9b4d0;
    line-height:1.8;
    margin-bottom:10px;
}

.highlight{
    color:#f5b942;
}

.sub-desc{
    font-size:13px;
    color:#8f8aa8;
    margin-bottom:40px;
}

.hero-center{
    text-align: center;
    margin-top: 40px;
}

/* IMAGE */
.hero-img{
    width: 170px;
    height: 170px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

    box-shadow: 0 0 40px rgba(255,140,0,0.4),
                0 0 80px rgba(255,140,0,0.2);
}

.hero-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME TAG */
.name-tag{
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);

    background: #1b0f3b;
    color: #f5c77f;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* BUTTON AREA */
.hero-buttons{
    margin-top: 50px;  /* 👈 IMPORTANT GAP */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* MAIN BUTTON */
.btn-primary{
    background: linear-gradient(90deg, #ffb347, #ff7a00);
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    color: #000;

    box-shadow: 0 10px 25px rgba(255,140,0,0.4);
    transition: 0.3s;
}

.btn-primary:hover{
    transform: translateY(-3px);
}

/* SECOND BUTTON */
.btn-secondary{
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.btn-secondary:hover{
    color: #fff;
}
/* ===== MYSTIC SECTION ===== */
.mystic-section{
    position:relative;
    height:500px;
    margin:40px 20px;
    border-radius:30px;
    overflow:hidden;

    /*background: radial-gradient(circle at center, #1a0f3d, #0d0626);
    border:1px solid rgba(255,255,255,0.05);*/
    background: radial-gradient(circle at 50% 50%, rgba(120, 80, 255, 0.2), transparent 70%),
                linear-gradient(180deg, #140a24, #2a1b3d);
}

/* BACKGROUND IMAGE */
.mystic-bg{
    position:absolute;
    width:140%;
    height:140%;
    top:-20%;
    left:-20%;

    background:url('image/img1.jpg') center/contain no-repeat;
    opacity:0.7;

    animation: floatMove 8s ease-in-out infinite;
}

/* GOLD GLOW EFFECT */
.mystic-bg::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:radial-gradient(circle,#f5b94255,transparent);
     
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* FLOAT ANIMATION */
@keyframes floatMove{
    0%{
        transform:translateY(0px) scale(1);
    }
    50%{
        transform:translateY(-30px) scale(1.05);
    }
    100%{
        transform:translateY(0px) scale(1);
    }
}

/* STATS */
.stats{
    position:absolute;
    bottom:40px;
    width:100%;
    display:flex;
    justify-content:space-around;
    text-align:center;
}

/* SINGLE STAT */
.stat h2{
    color:#f5b942;
    font-weight:400;
    font-size:30px;
}

.stat p{
    font-size:11px;
    color:#b9b4d0;
    letter-spacing:2px;
    margin-top:5px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .hero h1{
        font-size:40px;
    }

    .desc{
        font-size:14px;
    }

    .mystic-section{
        height:380px;
    }

    .stats{
        flex-direction:column;
        gap:15px;
    }

}

/* ===== SCROLL LINE ===== */
.scroll-line{
    overflow:hidden;
    white-space:nowrap;
    padding:40px 0;
    position:relative;
}

/* GRADIENT FADE LEFT RIGHT */
.scroll-line::before,
.scroll-line::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}

.scroll-line::before{
    left:0;
    background:linear-gradient(to right,#0d0626,transparent);
    
}

.scroll-line::after{
    right:0;
    background:linear-gradient(to left,#0d0626,transparent);
}

/* TRACK */
.scroll-track{
    display:inline-block;
    animation:scrollMove 25s linear infinite;
}

/* TEXT STYLE */
.scroll-track span{
    font-size:18px;
    margin:0 30px;
    color:#cfcbe6;
    font-style:italic;
    opacity:0.8;
}

/* GOLD DOT */
.scroll-track span::after{
    content:" ✦ ";
    color:#f5b942;
    margin-left:10px;
}

/* ANIMATION */
@keyframes scrollMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.scroll-track span{
    transition:0.3s;
}

.scroll-track span:hover{
    color:#f5b942;
    transform:scale(1.1);
}

/* ===== SECTION ===== */
.reading-section{
    padding:80px 20px;
}

/* CONTAINER */
.reading-container{
    display:flex;
    align-items:center;
    gap:60px;
    max-width:1200px;
    margin:auto;
}

/* ===== LEFT IMAGE ===== */
.reading-image{
    position:relative;
    flex:1;
}

.reading-image img{
    width:100%;
    border-radius:25px;
}

/* PROFILE CIRCLE */
.profile-circle{
    position:absolute;
    bottom:-50px;
    left:50%;
    transform:translateX(-50%);

    width:140px;
    height:140px;
    border-radius:50%;
    overflow:hidden;

    border:4px solid #1a0f3d;
    box-shadow:0 0 40px rgba(245,185,66,0.4);
}

.profile-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ===== RIGHT CONTENT ===== */
.reading-content{
    flex:1;
}

/* SMALL TAG */
.small-tag{
    font-size:12px;
    letter-spacing:3px;
    color:#f5b942;
    margin-bottom:20px;
}

/* HEADING */
.reading-content h2{
    font-size:52px;
    font-weight:300;
    line-height:1.2;
    margin-bottom:20px;
}

.reading-content h2 span{
    color:#f5b942;
    font-style:italic;
}

/* TEXT */
.reading-content p{
    color:#b9b4d0;
    line-height:1.8;
    margin-bottom:15px;
}

.highlight{
    color:#f5b942;
}

.italic{
    font-style:italic;
    color:#8f8aa8;
}

/* BUTTONS */
.reading-buttons{
    margin-top:25px;
    display:flex;
    gap:20px;
    align-items:center;
}

.reading-buttons a{
    color:#b9b4d0;
    text-decoration:none;
}

.reading-buttons a:hover{
    color:#f5b942;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .reading-container{
        flex-direction:column;
        gap:40px;
    }

    .reading-content h2{
        font-size:36px;
        text-align:center;
    }

    .reading-content{
        text-align:center;
    }

    .profile-circle{
        bottom:-40px;
        width:110px;
        height:110px;
    }

    .reading-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section{
    /*background:#efe7dc;*/
     background-color: #e9dfd2;
    padding:100px 20px;
}

/* CONTAINER */
.about-container{
    display:flex;
    gap:60px;
    max-width:1200px;
    margin:auto;
    align-items:flex-start;
}

/* ===== LEFT IMAGE ===== */
.about-image{
    position:relative;
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

/* FLOAT CARD */
.about-card{
    position:absolute;
    bottom:-40px;
    right:20px;

    background:#1a0f3d;
    color:#fff;

    padding:25px;
    border-radius:20px;
    width:180px;

    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.about-card h3{
    font-size:36px;
    color:#f5b942;
}

.about-card p{
    font-size:12px;
    letter-spacing:2px;
}

/* ===== RIGHT CONTENT ===== */
.about-content{
    flex:1;
}

/* TAG */
.about-tag{
    text-align:center;
    letter-spacing:3px;
    font-size:12px;
    color:#c98a3f;
    margin-bottom:20px;
}

/* HEADING */
.about-content h2{
    font-size:52px;
    font-weight:300;
    color:#1a1a1a;
    margin-bottom:20px;
}

.about-content h2 span{
    color:#d65a2f;
    font-style:italic;
}

/* TEXT */
.about-content p{
    color:#444;
    line-height:1.8;
    margin-bottom:15px;
}

/* BOX */
.about-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    margin:25px 0;
    color: #000;
    border:1px solid #e0d6c8;
}

/* SKILLS */
.about-skills{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    color: #000;
}

.about-skills span{
    background:#fff;
    padding:12px;
    border-radius:12px;
    font-size:14px;
    border:1px solid #e0d6c8;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .about-container{
        flex-direction:column;
        gap:40px;
    }

    .about-content h2{
        font-size:36px;
        text-align:center;
    }

    .about-content{
        text-align:center;
    }

    .about-skills{
        grid-template-columns:1fr;
    }

    .about-card{
        position:static;
        margin-top:20px;
        width:auto;
    }

}

/* ===== PRACTICES SECTION ===== */
.practices{
    background:#efe7dc;
    padding:100px 20px;
}

.practices-container{
    max-width:1200px;
    margin:auto;
}

/* TOP */
.practice-top{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-bottom:60px;
}

.practice-tag{
    font-size:12px;
    letter-spacing:3px;
    color:#c98a3f;
}

.practice-top h2{
    font-size:52px;
    font-weight:300;
    color: #000;
}

.practice-top h2 span{
    color:#d65a2f;
    font-style:italic;
}

.practice-desc{
    max-width:400px;
    color:#555;
    line-height:1.8;
}

/* GRID */
.practice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */
.card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    border:1px solid #e3d9c9;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* ICON */
.icon{
    width:50px;
    height:50px;
    border-radius:12px;
    background:#1a0f3d;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f5b942;
    font-size:20px;
    margin-bottom:15px;
}

/* TEXT */
.card h3{
    font-size:20px;
    margin-bottom:10px;
    color: #000;
}

.card p{
    color:#555;
    font-size:14px;
}

/* BIG CARD */
.card.big{
    grid-column:span 2;
}

/* WIDE CARD */
.card.wide{
    grid-column:span 2;
}

/* HIGHLIGHT */
.card.highlight{
    border:1px solid #f5b942;
    background:linear-gradient(135deg,#fff7e6,#fff);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .practice-top{
        flex-direction:column;
    }

    .practice-top h2{
        font-size:36px;
    }

    .practice-grid{
        grid-template-columns:1fr;
    }

    .card.big,
    .card.wide{
        grid-column:span 1;
    }

}

/* ===== EXPECT SECTION ===== */
.expect{
    padding:100px 20px;
    /*background:linear-gradient(135deg,#0b0520,#1a0f3d,#2c154f);
    color:#fff;*/
    background: radial-gradient(circle at 85% 50%, rgba(255, 120, 150, 0.15), transparent 45%),
                radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.20), transparent 40%),
                linear-gradient(135deg, #0c0226, #14052e, #1e063d);
    color: white;
}

.expect-container{
    max-width:1200px;
    margin:auto;
}

/* TOP */
.expect-top{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-bottom:60px;
}

.tag{
    font-size:12px;
    letter-spacing:3px;
    color:#f5b942;
    margin-bottom:20px;
}

.expect-top h2{
    font-size:64px;
    font-weight:300;
    line-height:1.2;
}

.expect-top h2 span{
    color:#f5b942;
    font-style:italic;
}

.expect-top .right{
    max-width:420px;
    color:#b9b4d0;
    line-height:1.8;
}

/* GRID */
.expect-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.expect-card{
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.expect-card:hover{
    transform:translateY(-5px);
    border:1px solid #f5b942;
}

/* ICON */
.expect-card .icon{
    width:50px;
    height:50px;
    border-radius:12px;
    background:linear-gradient(135deg,#f5b942,#ff7a00);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:18px;
    margin-bottom:15px;
}

/* TEXT */
.expect-card span{
    font-size:11px;
    letter-spacing:2px;
    color:#f5b942;
}

.expect-card h3{
    font-size:22px;
    margin:10px 0;
    font-weight:400;
}

.expect-card p{
    font-size:14px;
    color:#b9b4d0;
    line-height:1.6;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){

    .expect-top{
        flex-direction:column;
    }

    .expect-top h2{
        font-size:40px;
    }

    .expect-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .expect-grid{
        grid-template-columns:1fr;
    }

    .expect-top h2{
        font-size:32px;
    }
}

/* ===== STORIES SECTION ===== */
.stories{
    padding:100px 20px;
    /*background:linear-gradient(135deg,#0b0520,#1a0f3d,#2c154f);*/
     background: radial-gradient(circle at 55% 45%, rgba(255, 140, 60, 0.18), transparent 40%),
                radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.22), transparent 45%),
                linear-gradient(135deg, #0c0226, #14052e, #1e063d);
    color:#fff;
}

.stories-container{
    max-width:1200px;
    margin:auto;
}

/* TOP */
.stories-top{
    margin-bottom:60px;
}

.stories-top .tag{
    font-size:12px;
    letter-spacing:3px;
    color:#f5b942;
    margin-bottom:15px;
}

.stories-top h2{
    font-size:60px;
    font-weight:300;
    margin-bottom:20px;
}

.stories-top h2 span{
    color:#f5b942;
}

.stories-top .desc{
    max-width:500px;
    color:#b9b4d0;
    line-height:1.8;
}

/* GRID */
.stories-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* CARD */
.story-card{
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    position:relative;
    transition:0.3s;
}

.story-card:hover{
    transform:translateY(-6px);
    border:1px solid #f5b942;
}

/* QUOTE */
.quote{
    font-size:40px;
    color:#f5b942;
    margin-bottom:15px;
}

/* TEXT */
.story-text{
    font-size:20px;
    line-height:1.7;
    font-weight:300;
    margin-bottom:25px;
}

/* FOOTER */
.story-footer h4{
    font-size:13px;
    letter-spacing:2px;
    color:#f5b942;
    margin-bottom:5px;
}

.story-footer span{
    font-size:12px;
    color:#aaa;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .stories-top h2{
        font-size:38px;
    }

    .stories-grid{
        grid-template-columns:1fr;
    }

    .story-text{
        font-size:16px;
    }
}

/* ===== CTA SECTION ===== */
.cta{
    padding:120px 20px;
    /*background:linear-gradient(135deg,#0b0520,#1a0f3d,#2c154f);*/
    background: linear-gradient(135deg, #0c0226 0%, #14052e 50%, #1e063d 100%);
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* subtle glow background */
.cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(245,185,66,0.15),transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* container */
.cta-container{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

/* heading */
.cta h2{
    font-size:64px;
    font-weight:300;
    line-height:1.3;
    margin-bottom:40px;
}

/* highlight word */
.cta h2 span{
    color:#f5b942;
    font-style:italic;
}

/* button */
.cta-btn{
    background:linear-gradient(135deg,#f5b942,#ff7a00);
    border:none;
    padding:16px 40px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

/* hover effect */
.cta-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 25px rgba(245,185,66,0.4);
}

/* note */
.cta-note{
    margin-top:20px;
    font-size:14px;
    color:#b9b4d0;
    font-style:italic;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .cta{
        padding:80px 20px;
    }

    .cta h2{
        font-size:36px;
    }

    .cta-btn{
        padding:14px 30px;
        font-size:14px;
    }
}

/* ===== TRUST SECTION ===== */
.trust{
    background:#f6f0e6;
    padding:100px 40px;
    color:#1a133d;
}

/* top layout */
.trust-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
    margin-bottom:60px;
}

/* tag */
.tag{
    font-size:12px;
    letter-spacing:2px;
    color:#e46b2e;
    margin-bottom:15px;
}

/* heading */
.trust h2{
    font-size:60px;
    font-weight:300;
    line-height:1.2;
}

/* highlight */
.trust h2 span{
    color:#e46b2e;
    font-style:italic;
}

/* right text */
.trust-right p{
    font-size:16px;
    line-height:1.7;
    color:#5f5875;
    max-width:500px;
}

/* ===== CARDS ===== */
.trust-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* card */
.trust-card{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    border:1px solid #e6dccf;
    transition:0.3s;
}

/* icon */
.trust-card .icon{
    width:45px;
    height:45px;
    border-radius:12px;
    background:#1a133d;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    color:#f5b942;
    font-size:18px;
}

/* title */
.trust-card h3{
    font-size:18px;
    margin-bottom:10px;
    font-weight:500;
}

/* text */
.trust-card p{
    font-size:14px;
    color:#6f6a85;
    line-height:1.6;
}

/* active card highlight */
.trust-card.active{
    border:1px solid #f5b942;
}

/* hover */
.trust-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){

    .trust-container{
        flex-direction:column;
    }

    .trust h2{
        font-size:40px;
    }

    .trust-cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .trust{
        padding:60px 20px;
    }

    .trust h2{
        font-size:30px;
    }

    .trust-cards{
        grid-template-columns:1fr;
    }
}

/* ===== SECTION ===== */
.inner-circle{
    padding:100px 40px;
    /*background:linear-gradient(135deg,#0b0520,#1a0f3d,#2c154f);*/
    background: radial-gradient(circle at 50% 40%, rgba(255, 140, 80, 0.18), transparent 45%),
                radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.25), transparent 50%),
                linear-gradient(135deg, #0c0226, #14052e, #1e063d);
    color:#fff;
}

/* center top */
.inner-top{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

/* tag */
.tag{
    font-size:12px;
    letter-spacing:2px;
    color:#f5b942;
    margin-bottom:10px;
}

/* heading */
.inner-top h2{
    font-size:60px;
    font-weight:300;
    line-height:1.2;
}

.inner-top h2 span{
    color:#f5b942;
    font-style:italic;
}

/* desc */
.inner-desc{
    margin-top:20px;
    color:#b9b4d0;
    line-height:1.7;
}

/* badge */
.invite-badge{
    margin-top:25px;
    display:inline-block;
    padding:8px 20px;
    border-radius:20px;
    background:linear-gradient(135deg,#f5b942,#ff7a00);
    color:#000;
    font-size:12px;
    font-weight:600;
}

/* ===== BOX ===== */
.inner-box{
    display:flex;
    gap:40px;
    padding:40px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.1);
    /*background:rgba(255,255,255,0.02);*/
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 180, 120, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    color: white;
}

/* LEFT */
.inner-left{
    flex:1;
}

.inner-left h3{
    font-size:28px;
    margin-bottom:15px;
}

.inner-left span{
    color:#f5b942;
}

.inner-left p{
    color:#cfcbe6;
    margin-bottom:20px;
    line-height:1.6;
}

.inner-left ul{
    list-style:none;
}

.inner-left ul li{
    margin-bottom:10px;
    color:#b9b4d0;
    position:relative;
    padding-left:20px;
}

.inner-left ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#f5b942;
}

/* RIGHT CARD */
.inner-card{
    width:350px;
    padding:30px;
    border-radius:20px;
    background:rgba(20,15,45,0.9);
    border:1px solid rgba(255,255,255,0.08);
}

/* mini tag */
.mini-tag{
    font-size:12px;
    color:#f5b942;
    margin-bottom:10px;
}

/* heading */
.inner-card h4{
    font-size:28px;
    margin-bottom:5px;
}

.inner-card small{
    color:#aaa;
}

/* steps */
.inner-card ol{
    margin:20px 0;
    padding-left:18px;
}

.inner-card ol li{
    margin-bottom:10px;
    color:#cfcbe6;
}

/* button */
.join-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#f5b942,#ff7a00);
    color:#000;
    font-weight:600;
    cursor:pointer;
}

/* note */
.note{
    margin-top:10px;
    font-size:12px;
    color:#aaa;
    text-align:center;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .inner-top h2{
        font-size:36px;
    }

    .inner-box{
        flex-direction:column;
    }

    .inner-card{
        width:100%;
    }
}

@media(max-width:600px){

    .inner-circle{
        padding:60px 20px;
    }

    .inner-top h2{
        font-size:28px;
    }
}

/* ===== SECTION ===== */
.pricing{
    background:#f6f0e6;
    padding:100px 40px;
    text-align:center;
}

/* top */
.pricing-top{
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.tag{
    font-size:12px;
    letter-spacing:2px;
    color:#e46b2e;
}

.pricing h2{
    font-size:60px;
    font-weight:300;
    line-height:1.2;
    color: #000;
}

.pricing h2 span{
    color:#e46b2e;
}

.desc{
    margin-top:15px;
    color:#6f6a85;
}

/* ===== CARDS ===== */
.pricing-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* card */
.price-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    border:1px solid #e6dccf;
    text-align:left;
    position:relative;
}

/* active card */
.price-card.active{
    background:#120a2e;
    color:#fff;
    transform:scale(1.05);
}
.price-card p{
    color:#6f6a85;
    font-size:14px;
    margin-bottom:10px;
}

/* DARK CARD FIX */
.price-card.active p{
    color:#cfcde0;  /* light text */
}

/* badge */
.badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#f5b942,#ff7a00);
    padding:5px 15px;
    border-radius:20px;
    font-size:12px;
    color:#000;
}

/* title */
.price-card h3{
    font-size:22px;
    margin-bottom:10px;
    color: #777;
}

/* price */
.price{
    font-size:28px;
    margin:20px 0;
    color:#e46b2e;
}

.price.special{
    font-style:italic;
}

/* list */
.price-card ul{
    list-style:none;
    margin-bottom:20px;
}

.price-card ul li{
    margin-bottom:10px;
    padding-left:20px;
    position:relative;
    color: #777;
}

.price-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#e46b2e;
}

/* button */
.price-card button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#120a2e;
    color:#fff;
    cursor:pointer;
}

/* highlight btn */
.highlight-btn{
    background:linear-gradient(135deg,#f5b942,#ff7a00) !important;
    color:#000 !important;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1000px){

    .pricing h2{
        font-size:40px;
    }

    .pricing-cards{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    .pricing{
        padding:60px 20px;
    }

    .pricing h2{
        font-size:28px;
    }

    .pricing-cards{
        grid-template-columns:1fr;
    }

    .price-card.active{
        transform:none;
    }
}

/* SECTION BACKGROUND */
.clarity-section{
    /*background: radial-gradient(circle at top right,#2c1a5e,#0b0620);*/
    background: linear-gradient(135deg, #f3eadf 0%, #e9dfd2 60%, #e3d3bb 100%);
    padding: 80px 20px;
    text-align:center;
}

/* TOP TEXT */
.clarity-top .tag{
    color:#f6a94a;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.clarity-top h2{
    font-size:48px;
    font-family:'Playfair Display',serif;
    color:#000;
}

.clarity-top h2 span{
    color:#ff6a3d;
}

.subtext{
    max-width:650px;
    margin:20px auto 40px;
    color:#000;
    line-height:1.6;
}

/* FORM CARD */
.clarity-form{
    background:#efe9de;
    padding:40px;
    border-radius:20px;
    max-width:900px;
    margin:auto;
    text-align:left;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* FORM */
.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    flex:1;
    margin-bottom:20px;
    position:relative;
}

.form-group label{
    display:block;
    font-size:12px;
    letter-spacing:2px;
    color:#6d5f52;
    margin-bottom:8px;
    text-transform:uppercase;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #e0d6c6;
    background:#f7f2ea;
    font-size:14px;
    outline:none;
}

/* TEXTAREA */
textarea{
    min-height:120px;
    resize:none;
}

.count{
    position:absolute;
    bottom:10px;
    right:15px;
    font-size:12px;
    color:#999;
}

/* BOTTOM */
.form-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    flex-wrap:wrap;
    gap:15px;
}

.form-bottom p{
    color:#666;
}

.form-bottom span{
    color:#ff6a3d;
    font-weight:600;
}

/* BUTTON */
.btn-gradient{
    background:linear-gradient(90deg,#f6a94a,#ff6a3d);
    border:none;
    padding:14px 28px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.btn-gradient:hover{
    transform:scale(1.05);
}

/* 📱 RESPONSIVE */
@media(max-width:768px){

    .clarity-top h2{
        font-size:32px;
    }

    .form-row{
        flex-direction:column;
    }

    .clarity-form{
        padding:25px;
    }

    .form-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-gradient{
        width:100%;
    }
}


/* FOOTER */
.footer{
    /*background: radial-gradient(circle at top right,#2c1a5e,#0b0620);*/
    background: linear-gradient(180deg, #0c0226, #14052e);
    padding: 30px 20px;
    color:#fff;
}

/* CONTAINER */
.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

/* LEFT */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    width:40px;
    height:40px;
    background:linear-gradient(135deg,#f6a94a,#ff6a3d);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    color:#000;
}

.footer-left h3{
    font-size:16px;
    margin:0;
}

.footer-left p{
    font-size:12px;
    color:#cfcde0;
}

/* CENTER LINKS */
.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#cfcde0;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#f6a94a;
}

/* RIGHT */
.footer-right{
    font-size:13px;
    color:#cfcde0;
    text-align:right;
}

.footer-right span{
    color:#f6a94a;
}

/* 📱 RESPONSIVE */
@media(max-width:768px){

    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-right{
        text-align:center;
    }
}