


*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:linear-gradient(135deg,#0f172a,#111827);
color:white;
}

/* HEADER */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(17,24,39,0.8);
backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:1000;
}

.logo{
color:#facc15;
font-weight:700;
font-size:24px;
letter-spacing:1px;
}

/* NAV */
nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
position:relative;
transition:0.3s;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#facc15;
transition:0.3s;
}

nav a:hover{
color:#facc15;
}

nav a:hover::after{
width:100%;
}


/* HERO */
.hero{
background:url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3') center/cover;
position:relative;
padding:140px 8%;
text-align:center;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
}

.hero-content{
position:relative;
z-index:1;
}

.hero h2{
font-size:48px;
color:#facc15;
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
font-size:18px;
}

.btn{
background:#facc15;
color:black;
padding:14px 30px;
display:inline-block;
margin-top:25px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:0.3s;
box-shadow:0 0 15px rgba(250,204,21,0.6);
}

.btn:hover{
background:white;
transform:translateY(-3px);
}

/* SECTION */
.section{
padding:80px 8%;
text-align:center;
}

.section h2{
margin-bottom:40px;
font-size:34px;
color:#facc15;
}

/* CARDS */
.cards{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
}

.card{
background:rgba(30,41,59,0.8);
padding:30px;
border-radius:15px;
width:320px;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 15px 40px rgba(250,204,21,0.3);
}

.price{
font-size:22px;
font-weight:bold;
color:#facc15;
margin:15px 0;
}

/* BLOG */
.blog-card{
background:#1e293b;
padding:25px;
border-radius:12px;
margin-bottom:20px;
text-align:left;
transition:0.3s;
}

.blog-card:hover{
background:#263548;
}



/* TRADINGVIEW */
.tradingview-widget{
position:fixed;
bottom:100px;
left:20px;
width:320px;
height:400px;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 20px rgba(250,204,21,0.4);
}
@media(max-width:768px){
.tradingview-widget{display:none;}
}

/* HAMBURGER */
.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:6px;
}

.hamburger span{
width:25px;
height:3px;
background:#facc15;
transition:0.3s;
}

.hamburger:hover span{
background:white;
}

/* Mobile */
@media(max-width:768px){
nav{
display:none;
flex-direction:column;
background:#111827;
position:absolute;
top:70px;
right:0;
width:220px;
padding:20px;
border-radius:8px;
}
nav.active{display:flex;}
.hamburger{display:flex;}
}



/* Import Elegant Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500&display=swap');

body {
  margin: 0;
  background: #0c0c0c;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.lux-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* SLIDER */
.lux-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.lux-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: luxFade 30s infinite;
}

.lux-slide:nth-child(1) { animation-delay: 0s; }
.lux-slide:nth-child(2) { animation-delay: 6s; }
.lux-slide:nth-child(3) { animation-delay: 12s; }
.lux-slide:nth-child(4) { animation-delay: 18s; }
.lux-slide:nth-child(5) { animation-delay: 24s; }

/* Smooth Fade */
@keyframes luxFade {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1.05); }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}

/* Gradient Overlay */
.lux-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.65) 60%,
    rgba(0,0,0,0.9) 100%
  );
}

/* CONTENT */
.lux-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.academy-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.lux-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lux-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* BUTTONS */
.lux-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  padding: 14px 38px;
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.4s ease;
}

.btn-gold:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
}

.btn-outline {
  padding: 14px 38px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.4s ease;
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .lux-content h1 {
    font-size: 2.4rem;
  }

  .lux-content p {
    font-size: 1rem;
  }
}


/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Montserrat:wght@500;700&display=swap');

/* LOGO CONTAINER */
.logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
}

/* GOLD TEXT */
.gold-text {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(
    120deg,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  background-size: 200% auto;
 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

/* MENTORPRO TEXT */
.mentor-text {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  margin-left: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Shine Animation */
@keyframes goldShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Optional Hover Effect */
.logo:hover .gold-text {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.logo:hover .mentor-text {
  color: #d4af37;
  transition: 0.3s ease;
}



.program-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

/* Feature List */
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.features li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Improve Card Height */
.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats {
  position: relative;
  background: url('images/trading-bg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.stats-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  width: 200px;
}

.stat-box img {
  width: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(36%) saturate(482%) hue-rotate(6deg);
}

.stat-box h3 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.stat-box p {
  color: #bbb;
}




.testimonials {
  background: #0c0c0c;
  padding: 100px 20px;
  text-align: center;
}

.testimonial-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 30px;
  width: 300px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.testimonial-card p {
  color: #ccc;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #d4af37;
  margin-bottom: 5px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #aaa;
}



.program-image {
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.08);
}



.blog-section {
  background: #0c0c0c;
  padding: 100px 20px;
  color: #fff;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Blog Card */
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212,175,55,0.15);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  margin-bottom: 15px;
  color: #d4af37;
}

.blog-content p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.read-more {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #d4af37;
}

/* LIVE NEWS */
.live-news {
  margin-top: 100px;
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.live-news h3 {
  color: #d4af37;
  margin-bottom: 30px;
}

#news-feed {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.news-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.news-item a {
  color: #fff;
  text-decoration: none;
}

.news-item a:hover {
  color: #d4af37;
}


/* ===== PROGRAMS SECTION ===== */

.programs {
  background: radial-gradient(circle at top right, rgba(212,175,55,0.08), #0c0c0c 60%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(to right, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 70px;
}

/* Grid Layout */
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Card Base */
.program-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0.7));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  position: relative;
}

.program-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* Featured Card */
.program-card.featured {
  border: 1px solid #d4af37;
  background: linear-gradient(160deg, rgba(212,175,55,0.15), rgba(0,0,0,0.9));
  transform: scale(1.03);
}

.program-card.featured:hover {
  transform: scale(1.06);
}

/* Image Styling (Cinematic) */
.program-image {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
  transition: 0.6s ease;
}

/* Gold Overlay Gradient */
.program-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.program-card:hover .program-image img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

/* Content */
.program-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.price {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Feature List */
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
  position: relative;
  padding-left: 18px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 0.8rem;
}

/* Buttons */
.btn-gold, .btn-dark {
  padding: 12px 25px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #000;
}

.btn-gold:hover {
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
  transform: translateY(-3px);
}

.btn-dark {
  background: #000;
  border: 1px solid #d4af37;
  color: #d4af37;
}

.btn-dark:hover {
  background: #d4af37;
  color: #000;
}

/* Badge */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d4af37;
  color: #000;
  padding: 6px 15px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .program-card.featured {
    transform: none;
  }

  .program-card:hover {
    transform: none;
  }

  .program-image {
    height: 200px;
  }

}

.program-card {
  display: flex;
  flex-direction: column;
}

.program-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-content a {
  margin-top: auto;
}


.live-tv {
  background: #000;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.breaking-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: red;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.gold-ticker {
  background: linear-gradient(45deg, #d4af37, #000);
  padding: 15px;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
}


.news-ticker {
  background: #111;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 25s linear infinite;
  color: #d4af37;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


.news-filters {
  margin: 40px 0;
  text-align: center;
}

.news-filters button {
  margin: 0 10px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.news-filters button:hover {
  background: #d4af37;
  color: #000;
}

/* ===== FOOTER ===== */

.main-footer {
  background: linear-gradient(to top, #000, #0c0c0c);
  color: #bbb;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(212,175,55,0.2);
  position: relative;
}

/* Subtle gold glow */
.main-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  z-index: 0;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  max-width: 400px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Social Section */
.footer-social h4 {
  color: #d4af37;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  color: #d4af37;
  font-size: 18px;
  transition: 0.4s ease;
}

.social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: #777;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}


/* ===== CONTACT SECTION ===== */

.contact-section {
  background: linear-gradient(to bottom, #0c0c0c, #111);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  color: #fff;
}

/* Subtle gold glow */
.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
  top: -150px;
  left: -150px;
  z-index: 0;
}

.contact-wrapper {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Title */
.contact-title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(45deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Box */
.contact-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
}

.contact-box:hover {
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212,175,55,0.15);
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #ddd;
}

.contact-item i {
  font-size: 22px;
  color: #d4af37;
}

/* Disclaimer */
.contact-disclaimer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-box {
    padding: 30px;
  }
}


/* ===== FLOATING CONTACT BUTTONS ===== */

.floating-btn {
  position: fixed;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: 0.3s ease;
  z-index: 999;
}

.floating-btn img {
  width: 32px;
  height: 32px;
}

/* WhatsApp */
.whatsapp {
  bottom: 50px;
  background: #25D366;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37,211,102,0.6);
}

/* Telegram */
.telegram {
  bottom: 25px;
  background: #0088cc;
}

.telegram:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0,136,204,0.6);
}


/* ===== FLOATING CONTACT ===== */

.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Base Button */
.float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  overflow: hidden;
  cursor: pointer;
}

/* Icon */
.float-btn img {
  width: 30px;
  height: 30px;
  transition: 0.3s ease;
}

/* Label (Hidden by default) */
.float-btn .label {
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s ease;
  border: 1px solid rgba(212,175,55,0.2);
}

/* Show label on hover */
.float-btn:hover .label {
  opacity: 1;
  transform: translateX(0);
}

.float-btn {
  text-decoration: none;
}

.float-btn:hover {
  text-decoration: none;
}

.float-btn:visited {
  text-decoration: none;
}

.footer-social .social-icons a {
  text-decoration: none;
  color: #fff;                 /* Choose your color */
  font-size: 20px;
  margin: 0 10px;
  transition: 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: gold;                 /* Hover effect */
  transform: translateY(-3px);
}

/* ===== WHATSAPP STYLE ===== */

.whatsapp {
  background: #25D366;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37,211,102,0.6);
}

/* ===== TELEGRAM STYLE ===== */

.telegram {
  background: #0088cc;
}

.telegram:hover {
  background: #00aaff;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0,136,204,0.7);
}

/* Glow Pulse Animation */
.float-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2.5s infinite;
  z-index: -1;
}

.whatsapp::after {
  background: rgba(37,211,102,0.4);
}

.telegram::after {
  background: rgba(0,136,204,0.4);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .float-btn {
    width: 55px;
    height: 55px;
  }

  .float-btn img {
    width: 26px;
    height: 26px;
  }
}


/* ===== ANALYSIS SECTION ===== */

.analysis-section {
  background: linear-gradient(to bottom, #0c0c0c, #111);
  padding: 120px 20px;
  color: #fff;
}

.analysis-container {
  max-width: 1200px;
  margin: auto;
}

.analysis-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(45deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.analysis-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 60px;
}

/* Grid Layout */
.analysis-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Chart Box */
.analysis-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
}

/* Info Section */
.analysis-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Cards */
.analysis-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.analysis-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.analysis-card h4 {
  color: #d4af37;
  margin-bottom: 15px;
}

.analysis-card p,
.analysis-card li {
  color: #ccc;
  font-size: 0.9rem;
}

.analysis-card ul {
  padding-left: 18px;
}

/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 900px) {

  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .analysis-chart {
    order: 1;
  }

  .analysis-info {
    order: 2;
  }

  .analysis-title {
    font-size: 2rem;
  }

}


/* ===== HAMBURGER MENU ===== */

.hamburger {
  width: 35px;
  height: 28px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: 0.3s ease;
}

/* Bars */
.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: linear-gradient(45deg, #fff, #d4af37);
  border-radius: 10px;
  transition: all 0.4s ease;
}

/* Positioning */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 12px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* Hover Glow */
.hamburger:hover span {
  box-shadow: 0 0 8px rgba(212,175,55,0.7);
}

/* ACTIVE STATE (Turns into X) */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 13px;
}
/* Show only on mobile */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
}


/* Mobile Nav */

.nav-links {
  transition: all 0.4s ease;
}

@media (max-width: 900px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    gap: 30px;
    align-items: center;
    border-left: 1px solid rgba(212,175,55,0.2);
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

}

/* ===== ENROLL MODAL ===== */

.enroll-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.enroll-modal.active {
  display: flex;
}

/* Modal Box */
.enroll-content {
  background: linear-gradient(145deg, #111, #0c0c0c);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  color: #fff;
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* Close */
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #aaa;
}

.close-modal:hover {
  color: #d4af37;
}

/* Titles */
.enroll-content h3 {
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Details */
.enroll-details {
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.enroll-details span {
  color: #d4af37;
}

/* Payment Box */
.payment-box {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(212,175,55,0.2);
  margin-bottom: 20px;
}

.payment-box h4 {
  margin-bottom: 15px;
  color: #d4af37;
}

/* Note */
.payment-note {
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
}

/* Animation */
@keyframes fadeIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile */
@media (max-width: 600px) {
  .enroll-content {
    padding: 25px;
  }
}

/* Default state (hidden on mobile) */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;  /* hide off screen */
  height: 100vh;
  width: 250px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
}

/* When active */
.nav-links.active {
  right: 0;   /* slide into screen */
}

html, body{
  overflow-x: hidden;
}


.floating-contact{
  position: fixed;
  bottom: 20px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  max-width: 90vw;
}