* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height:85px;
  width: 100%;
  padding: 1px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(40, 39, 39, 0.85);
  transition: 0.3s ease;
  z-index: 9999;
}

/* Scroll background */
.navbar.scrolled {
  background: rgba(40, 39, 39, 0.85);
  backdrop-filter: blur(6px);
}

.nav-logo img{
 width:310px;
 object-fit:cover;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  position: relative;
  padding: 10px;
}

/* Hover underline */
.nav-links li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: rgb(38, 191, 38);
  transition: 0.3s ease;
}

.nav-links li:not(:last-child) a:hover::after{
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.login-btn {
  background: #05aa68;
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
  font-size:19px;
}

.login-btn:hover {
  background: #058f56;
}

/* 
   1024px Tablet 
========================= */
@media (max-width:1024px){

.nav-logo img{
 width:230px;
}

.navbar{height:80px;}
.nav-links{
 gap:18px;
}

.nav-links a{
 font-size:18px;
}

}


/* 
   768px (Tablet)
========================= */
@media (max-width:768px){

.menu-toggle{
 display:block;
}

.nav-links{
 position:absolute;
 top:70px;
 left:0;
 width:100%;
 background:#1e1e1e;
 flex-direction:column;
 align-items:center;
 gap:32px;
 padding:25px 0;
 display:none;
}

.nav-links.active{
 display:flex;
}

.nav-links a{
 font-size:22px;
}

.nav-logo img{
 width:230px;
}
.navbar{
 height:100px;   
}

}


/* 
   480px (Mobile)
========================= */
@media (max-width:480px){

.navbar{
 padding:3px 13px;
 height: 100px;

}

.nav-logo img{
 width:260px;
 margin-left:-40px;
}

.nav-links{
 gap:27px;
 margin-top:8px;
 
}

.nav-links a{
 font-size:19px;
 
}

.login-btn{
 padding:9px 17px;
 font-size:18px;
}

}

/* ===== FOOTER BASE ===== */
.footer {
  background: linear-gradient(135deg, #313231, #0e0c18);
  color: white;
  padding: 60px 20px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 240px;
  margin-bottom: 15px;
}

/* HEADINGS */
.footer-col h4 {
  color: #13d651;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TEXT */
.footer-col p {
  font-size: 20px;
  line-height: 1.7;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 12px 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 21px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #13d651;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 18px;
  text-align:center;
  margin-top: 15px;
}

.social-links a {
  color: white;
  font-size: 26px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #13d651;
  transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  font-size: 19px;
  color: #aaa;
}

/* =========================
   1024px (Tablet / Laptop)
========================= */
@media (max-width:1024px){

  .footer-container{
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }

  .footer-col h4{
    font-size: 19px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 19px;
  }

  .social-links a{
    font-size: 24px;
  }
}

/* =========================
   768px (Tablet)
========================= */
@media (max-width:768px){

  .footer{
    padding:50px 20px;
  }

  .footer-container{
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    text-align: center;
  }

  .footer-logo{
    margin: auto;
  }

  .social-links{
    justify-content: center;
  }

  .footer-col h4{
    font-size: 18px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 18px;
  }
}

/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

  .footer{
    padding:40px 15px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-logo{
    width: 200px;
    margin: auto;
  }

  .footer-col h4{
    font-size: 17px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 17px;
  }

  .social-links{
    justify-content: center;
  }

  .social-links a{
    font-size: 22px;
  }

  .footer-bottom{
    font-size: 16px;
  }
}







.contact-heading {
  width: 100%;
  min-height: 400px;
  padding: 25px 0;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;

  background: linear-gradient(270deg, #58cb56, #1c7a26, #a4df9c, #059a5e);
  background-size: 500% 300%;
animation: gradientMove 12s linear infinite;
}


.contact-heading p {
  font-size: 22px;
  line-height: 25px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================
   1024px 
========================= */
@media (max-width:1024px){

  .contact-heading{
    min-height:420px;
    font-size:28px;
    padding:20px 0;
  }
  .contact-heading h2{
    font-size:44px;
  }
  .contact-heading p{
    font-size:18px;
  }

}


/* =========================
   768px 
========================= */
@media (max-width:768px){

  .contact-heading{
    min-height:360px;
    font-size:24px;
    padding:18px 15px;
  }
.contact-heading h2{
    font-size:34px;
    margin-top:30px;
  }
  .contact-heading p{
    font-size:16px;
    line-height:23px;
  }

}


/* =========================
   480px 
========================= */
@media (max-width:480px){

  .contact-heading{
    min-height:350px;
    padding:15px 12px;
  }
  .contact-heading h2{
    font-size:29px;
    margin-top:60px;
  }
  .contact-heading p{
    font-size:20px;
    line-height:21px;
  }

}


/* ====== SERVICES SECTION ==== */




.trading-programs {
  background-color: #323131; 
  padding: 80px 100px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
}

/* PROGRAM */
.program {
  margin-bottom: 60px;
}

/* TITLE */
.program h2 {
  background: linear-gradient(90deg, #9eebb3, #1cd143);
  padding: 12px;
  color: black;
  font-size: 30px;
  border-radius: 30px;
  margin-bottom: 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

/* DESCRIPTION */
.program p {
  font-size: 20px;
  color: #ccc;
  margin: 19px ;
}

/* LIST + IMAGE ROW */
.program-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  
}

/* LIST */
.program ul {
  list-style: none;
  padding-left: 0;
  flex: 1;
}

.program ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #ddd;
  margin-left:40px;
  line-height: 1.4; 
}

.program ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 52%;             
  transform: translateY(-50%); 
  font-size: 18px;
  color: #33ff77;
}

/* IMAGE (DESKTOP) */
.program-img {
  width: 460px;
  height: 320px;
  max-width: 100%;
  margin-right:200px;
  border-radius: 16px;
  object-fit: cover;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

/* ========================= */
/* ðŸ’» 1024px */
/* ========================= */
@media (max-width: 1024px) {
  .trading-programs {
    padding: 60px 40px;
  }

  .program-bottom {
    gap: 20px;
  }

  .program-img {
    width: 320px;
    height: 220px;
  }

  .heading {
    font-size: 28px;
  }

  .program h2 {
    font-size: 26px;
  }

  .program p,
  .program ul li {
    font-size: 18px; /* FIXED */
  }
}

/* ========================= */
/* ðŸ“± 768px */
/* ========================= */
@media (max-width: 768px) {
  .trading-programs {
    padding: 50px 25px;
  }

  .program-bottom {
    flex-direction: column;
    gap: 25px;
  }

  /* ðŸ‘‡ IMAGE ON TOP + SMALLER */
  .program-img {
    order: -1;
    width: 80%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }

  .heading {
    font-size: 25px;
  }

  .program h2 {
    font-size: 28px;
  }

  .program p,
  .program ul li {
    font-size: 20px;
  }
  .program p{
    line-height:1.4;
  }
}

/* ========================= */
/* ðŸ“± 480px */
/* ========================= */
@media (max-width: 480px) {
  .trading-programs {
    padding: 40px 15px;
  }

  .heading {
    font-size: 23px;
  }

  .program h2 {
    font-size: 24px;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}

  .program p {
    font-size: 18px;
    line-height:1.4;
  }

  .program ul li {
    font-size: 18px;
    padding-left: 28px;
  }

  .program ul li::before {
    font-size: 18px;
  }

  
  .program-img {
    order: -1;
    width: 100%;
    max-width: 100%;
  }
}

