/* Common Button Style */
.agx-btn {
  border-radius: 30px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;

  
}



.preloader-inner {
  text-align: center;
}
.place-btn {
  margin-bottom: 20px;
}

/* Candle Loader */
.candles-loader {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0px;
  height: 50px;
}

.candle {
  width: 12px;
  border-radius: 2px;
  position: relative;
  animation: grow-shrink 1s infinite ease-in-out alternate;
}

.candle.green {
  background: #27ae60;
  animation-delay: 0.2s;
}

.candle.red {
  background: #e74c3c;
  animation-delay: 0.4s;
}

/* Candle wick */
.candle::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: #333;
  border-radius: 1px;
}

/* Candle shadow (bottom wick) */
.candle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: #333;
  border-radius: 1px;
}

@keyframes grow-shrink {
  0% { height: 15px; opacity: 0.6; }
  100% { height: 50px; opacity: 1; }
}

/* First button ko margin-left na mile */
.place-btn  {
  margin-left: 0;
  background-color: #045c02;
  color: white;
  border: solid 1px;
  border-color: #12a85d;
  padding: 15px 15px 15px 15px ;

}



/* Get a Quote Button */
.quote-btn {
  background-color: #f97407; /* Green */
  color: #fff !important;
}
.quote-btn:hover {
  background-color: #045c02;
  color: #fff !important;
}

/* Chat Now Button */
.chat-btn {
  background-color: #045c02; /* WhatsApp green */
  color: #fff !important;
}
.chat-btn:hover {
  background-color: #045c02;
  color: #fff !important;
}


.agx-btn-2 {
  background-color: #026546;
  color: #ffffff;
  border-color: #026546;
}





/* Responsive: center align & spacing on small screens */
@media (max-width: 991px) {
  .header-btns {
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px; /* spacing in mobile */
  }
  .agx-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}


.enquiry-btn {
  background-color: #F67506; /* Orange */
  color: #fff !important;
  border: 1px solid #ad5405;
  border-radius: 999px;
  padding: 11px 28.5px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease-in-out; /* Smooth animation */
}

/* Hover effect */
.enquiry-btn:hover {
  background-color: #0d6d3d;   /* Dark Green */
  border-color: #4caf50;      /* Light Green */
  color: #fff !important;
  transform: scale(1.08);     /* Zoom-in animation */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25); /* Shadow */
}

/* 🔹 Hide button in mobile view */
@media (max-width: 768px) {
  .enquiry-btn {
    display: none !important;
  }
}


.marquee__slider-common {
    background-color: f97407;
    padding: 10px 0;
    
}

.marquee-item h2 {
  color: #fff;       /* White text */
  font-weight: 600;  /* Thoda bold look */
  margin: 0;
  font-size: 40px;
}

.marquee__slider-up {
  -webkit-transform: translateY(50%) rotate(3deg);
  -ms-transform: translateY(50%) rotate(3deg);
  transform: translateY(50%) rotate(3deg);
  background: #18191b;
}
@media only screen and (max-width: 991.98px) {
  .marquee__slider-up {
    -webkit-transform: translateY(50%) rotate(5deg);
    -ms-transform: translateY(50%) rotate(5deg);
    transform: translateY(50%) rotate(5deg);
  }
}
@media only screen and (max-width: 767.98px) {
  .marquee__slider-up {
    -webkit-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}
.marquee__slider-up .marquee-item {
  color: #cccccc;
}
.marquee__slider-up .marquee-item h2 {
  color: inherit;
}
.marquee__slider-down {
  -webkit-transform: translateY(-50%) rotate(-3deg);
  -ms-transform: translateY(-50%) rotate(-3deg);
  transform: translateY(-50%) rotate(-3deg);
  background: #D0FF71;
}
@media only screen and (max-width: 991.98px) {
  .marquee__slider-down {
    -webkit-transform: translateY(-50%) rotate(-5deg);
    -ms-transform: translateY(-50%) rotate(-5deg);
    transform: translateY(-50%) rotate(-5deg);
  }
}
@media only screen and (max-width: 767.98px) {
  .marquee__slider-down {
    -webkit-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}
.marquee__slider-down .marquee-item {
  color: #0e0f11;
}
.marquee__slider-down .marquee-item h2 {
  color: inherit;
}
.marquee__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.marquee__slider .marquee-item {
  gap: 30px;
  width: auto;
}
.marquee__slider .marquee-item img,
.marquee__slider .marquee-item svg {
  width: 80px;
  height: 80px;
}
@media only screen and (max-width: 1439.98px) {
  .marquee__slider .marquee-item img,
  .marquee__slider .marquee-item svg {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .marquee__slider .marquee-item img,
  .marquee__slider .marquee-item svg {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .marquee__slider .marquee-item img,
  .marquee__slider .marquee-item svg {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 575.98px) {
  .marquee__slider .marquee-item img,
  .marquee__slider .marquee-item svg {
    width: 40px;
    height: 40px;
  }
}

.marquee__slider-common {
  background-color: #D0FF71;
  padding: 10px 0;
}
@media only screen and (max-width: 991.98px) {
  .marquee__slider-common {
    padding: 5px 0;
  }
}
.marquee__slider-common .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.marquee__slider-common .marquee-item {
  color: #ffffff;
  width: max-content;
  gap: 40px;
}
@media only screen and (max-width: 991.98px) {
  .marquee__slider-common .marquee-item {
    gap: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .marquee__slider-common .marquee-item {
    gap: 20px;
  }
}
.marquee__slider-common .marquee-item h1,
.marquee__slider-common .marquee-item h2,
.marquee__slider-common .marquee-item h3,
.marquee__slider-common .marquee-item h4,
.marquee__slider-common .marquee-item h5,
.marquee__slider-common .marquee-item h6 {
  color: inherit;
}
@media only screen and (max-width: 991.98px) {
  .marquee__slider-common .marquee-item svg,
  .marquee__slider-common .marquee-item img {
    height: 40px;
  }
}
@media only screen and (max-width: 575.98px) {
  .marquee__slider-common .marquee-item svg,
  .marquee__slider-common .marquee-item img {
    height: 30px;
  }
}

.marquee2.section {
  background-color: #D0FF71;
  padding: 30px 0;
}
@media only screen and (max-width: 991.98px) {
  .marquee2.section {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .marquee2.section {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  .marquee2.section {
    padding: 15px 0;
  }
}

.marquee__slider-common2 {
  padding: 10px 0;
}
@media only screen and (max-width: 991.98px) {
  .marquee__slider-common2 {
    padding: 5px 0;
  }
}
.marquee__slider-common2 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -moz-transition-timing-function: linear !important;
  -ms-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.marquee__slider-common2 .swiper-wrapper .marquee-item {
  width: max-content;
}


.hero-section {
  position: relative;
 
  overflow: hidden;
  display: flex;
  align-items: center;   /* Content vertically center */
  justify-content: flex-start; /* Content left aligned */
         /* Left-right padding only */
  box-sizing: border-box;
  padding-top: 80px;
  padding-bottom: 150px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.589); /* Transparent black overlay */
  z-index: -1;
}

.hero-section .content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 600px; /* Optional: content width control */
}

.hero-four__thumb .thumb-content {
  top: 50%;
  right: -140px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(32px);
  max-width: 234px;
  width: 100%;
  padding: 20px;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out;
}

:root{
  --bg:#0b0e12;
  --card:#11151b;
  --soft:#171c24;
  --text:#eaf2ff;
  --muted:#9fb2c8;
  --accent:#b4ff39;       /* neon green */
  --accent-2:#00e0ff;     /* cyan */
  --warning:#ff9d3f;      /* orange */
  --danger:#ff4b4b;       /* red */
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
body{background:var(--bg); color:var(--text); font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;}

.fixed-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #18191b;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: transform 0.6s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
body {
  padding-top: 140px;
}
@media (max-width: 767.98px) {
  body {
    padding-top: 120px;
  }
}

.pricing-wrap{padding:64px 16px;  margin:auto;}
.pricing-head{text-align:center; margin-bottom:28px}
.pricing-head h2{font-size:clamp(42,3vw,36px); margin:0 0 6px}
.pricing-head p{color:var(--muted); margin:0}


.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
@media (max-width:1024px){
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .pricing-grid{grid-template-columns:1fr}
}

.card{
  background:linear-gradient(180deg,var(--card),var(--soft));
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform:translateY(-4px); border-color:rgba(180,255,57,.28); box-shadow:0 14px 40px rgba(0,0,0,.5); }

.card.highlight{ outline:1px solid rgba(0,224,255,.18); background:linear-gradient(180deg,#121821,#0e141c); }
.card.combo{ outline:1px solid rgba(180,255,57,.22); }
.card.pro{ outline:1px solid rgba(255,157,63,.22); }

#price-p{
  color: white;
}

.badge{
  position:absolute; top:12px; right:12px;
  background:rgba(180,255,57,.14); color:#d8ffd2;
  border:1px solid rgba(180,255,57,.4);
  padding:4px 10px; font-size:12px; border-radius:999px;
}
.card.pro .badge{ background:rgba(255,157,63,.12); color:#ffe5cc; border-color:rgba(255,157,63,.35); }
.card.combo .badge{ background:rgba(0,224,255,.12); color:#d7fbff; border-color:rgba(0,224,255,.35); }

.card-top{display:flex; flex-direction:column; gap:10px}
.emoji{font-size:26px}
.card h3{font-size:clamp(16px,2.1vw,20px); line-height:1.35; margin:0}

.meta{display:flex; flex-wrap:wrap; gap:8px}
.tag{
  background:#0f141b; color:#cde1ff; border:1px solid rgba(255,255,255,.08);
  padding:4px 8px; border-radius:999px; font-size:12px
}

.price{font-size:28px; font-weight:800; letter-spacing:.2px }  
.price .cur{opacity:.9; margin-right:2px}
.price{color: #b4ff39; }


.toggle{
  margin:10px 0 0;
  width:100%; text-align:left;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--text);
  padding:10px 12px; border-radius:12px; cursor:pointer;
  font-weight:600; transition:background .2s,border-color .2s;
}
.toggle:hover{background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.14)}

.features{
  margin:10px 0 0; padding-left:18px; display:none;
}
.features li{margin:6px 0; color:#d7e8ff}
.features li.bonus{color:#b4ff39}
.card[open] .features{display:block}

/* CTA Buttons */
.cta-row{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px; text-decoration:none; font-weight:700;
  border:1px solid transparent; transition:transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent-2)); color:#02110e; box-shadow:0 6px 18px rgba(0,224,255,.2)}
.btn.primary:hover{transform:translateY(-2px)}
.btn.ghost{background:transparent; color:#d2e6ff; border-color:rgba(255,255,255,.14)}
.btn.ghost:hover{border-color:rgba(255,255,255,.28)}

/* Accessibility focus */
button:focus-visible, a:focus-visible{outline:2px solid var(--accent-2); outline-offset:2px}

@media (max-width: 991.98px) {
  .hero-section {
    height: auto;
    min-height: 520px;
    padding: 40px 0 20px 0;
    align-items: flex-start;
  }
  .hero-four__content {
    text-align: center;
    padding: 0 10px;
  }
  .hero-four__content .title {
    font-size: 2rem;
  }
  .hero-four__content p {
    font-size: 1rem;
  }
  .btn-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero-four__thumb {
    margin: 32px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 320px;
  }
  .hero-four__thumb .thumb-content {
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    padding: 16px;
    transform: none;
    margin: 0 auto;
    position: static;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    padding:px 0 10px 0;
    min-height: 400px;
  }
  .hero-four__content .title {
    font-size:50px;
  }
  .hero-four__content p {
    font-size: 0.95rem;
  }
  .hero-four__thumb {
    max-width: 100%;
    margin-top: 58px;
  }
  .hero-four__thumb .thumb-content {
    padding: 12px;
    font-size: 0.95rem;
  }
  .hero-four__thumb .img-wrapper img {
    max-width:310px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    
  }
}

.author__thumb img {
  max-width: 64px;
  height: 64px;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .author__thumb img {
    max-width: 48px;
    height: 48px;
  }
}



.trading-shapes {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.shape-1, .shape-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.8;
}

.shape-1 svg, .shape-2 svg {
  width: 100%;
  height: 100%;
}

.shape-1 {
  top: 40px;
  left: 20px;
  animation: floatUpDown 6s ease-in-out infinite, fadeInOut 6s ease-in-out infinite;
}

.shape-2 {
  bottom: 30px;
  right: 40px;
  animation: rotate 10s linear infinite, fadeInOut 8s ease-in-out infinite;
}

/* Animations */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.features-list{
  padding: 20px;
}


.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px; /* space between icons */
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00c3ff; /* hover effect */
}


/* Contact Section Styling */
.contact-section {
  background: #0d0d0d;
  color: #f1f1f1;
  padding: 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 50px;
  color: #ffff; /* Green trading accent */
}

.contact-info p {
  margin: 15px 0;
  font-size: 1rem;
  color: #bbb;
}

.contact-img {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0px 0px 15px rgba(0, 255, 136, 0.4);
}

/* Form Styling */
/* Contact Form Container */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5); /* initial glow */
  animation: glowPulse 6s infinite linear;
  border: solid 1px #e7e7e7;
}

/* Shadow Animation (Trading Colors) */
@keyframes glowPulse {
  0%   { box-shadow: 0 0 20px rgba(0,255,136,0.7); }   /* Green */
  25%  { box-shadow: 0 0 25px rgba(255,0,68,0.7); }    /* Red */
  50%  { box-shadow: 0 0 25px rgba(255,170,0,0.7); }   /* Yellow/Orange */
  75%  { box-shadow: 0 0 25px rgba(0,204,255,0.7); }   /* Blue */
  100% { box-shadow: 0 0 20px rgba(0,255,136,0.7); }   /* Back to Green */
}


.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0d0d0d;
  color: #fff;
  font-size: 1rem;
  outline: none;
  border: 0.5px solid #7e7e7e;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn-submit {
  background: linear-gradient(45deg, #00ff88, #ff0044);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* Responsive */
@media(max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-info, .contact-form {
    width: 100%;
  }
}


  [data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }
  [data-animate].animated {
    opacity: 1;
    transform: translateY(0);
  }














.offcanvas{
  z-index: 9999999999;
}
