
/*========================================*/
 .section-title { font-weight: 700; font-size: 28px; text-align: center; margin-bottom: 40px; }
        .feature-img { width: 100%; height:auto; }
        .cta-btn { padding: 10px 25px; font-weight: 600; margin-top:15px; }
        .card-block { padding: 30px 15px; border-radius: 15px; background: white; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
        

/**/

.swiper-1{
     background:#130628;       
        }
 .slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .slider-track {
    display: flex;
    animation: scroll 18s linear infinite;
  }

  .slider-item {
    min-width: 33.33%; /* 3 items */
    padding: 10px;
  }

  .slider-item img {
    width: 100%;
    height: 240px;      
    object-fit: cover;   
    border-radius: 10px;
  }

  /* Tablet */
  @media (max-width: 768px) {
    .slider-item {
      min-width: 50%;
    }
    .slider-item img {
      height: 200px; 
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .slider-item {
      min-width: 100%;
    }
    .slider-item img {
      height: 180px;
    }
  }

  /* Animation */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


/* Section Wrapper */
.urban.testimonial-section {
    padding: 60px 20px;
    background: #242323;
}

.urban .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Grid */
.urban .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Box */
.urban .testimonial-box {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
    border: 2px solid #d2d2d2;
}

.urban .testimonial-box:hover {
    transform: translateY(-4px);
}

/* User Icon */
.urban .t-img img {
    width: 80px;
    height: 80px;
}

/* Stars */
.urban .t-stars {
    margin: 15px 0;
    font-size: 20px;
    color: #ffbb33;
}

/* Text */
.urban .t-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Name */
.urban .t-name {
    font-weight: 700;
    font-size: 16px;
}



/* Tablets */
@media (max-width: 992px) {
    .urban .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    .urban .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .urban .section-title {
        font-size: 26px;
    }

    .urban .testimonial-box {
        padding: 30px 20px;
    }
}

/* Very Small Mobile – 320px Ready */
@media (max-width: 360px) {
    .urban .t-img img {
        width: 65px;
        height: 65px;
    }

    .urban .t-text {
        font-size: 14px;
    }

    .urban .t-name {
        font-size: 15px;
    }
}


/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.about-hero {
   position: relative;
  width: 100%;
  min-height: 800px;
  background-image: url('/public/images/backhome.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 120px 5% 60px 5%;
  height: 100%;  
}

/* Dark Overlay */
.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /*background: rgba(0, 0, 0, 0.55);*/
    z-index: 1;
    background-size:cover;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* -----------------------------
   LEFT TEXT CONTENT
----------------------------- */
.left-content {
    width: 50%;
    color: #fff;
}

.left-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 90%;
    line-height: 1.5;
}

/*.hero-btn {*/
/*    display: inline-block;*/
/*    padding: 12px 28px;*/
/*    background: #ff6600;*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    transition: 0.3s;*/
/*}*/

/*.hero-btn:hover {*/
/*    background: #e85d00;*/
/*}*/
.hero-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    /*background: linear-gradient(135deg, #ffbb00, #ff6a00);*/
    background:linear-gradient(90deg, #28eff9, #0b8686);
    box-shadow: 0 6px 18px rgba(255, 115, 0, 0.4);
    transition: 0.3s ease-in-out;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ffd75a, #ff8c1a);
    box-shadow: 0 8px 22px rgba(255, 140, 26, 0.55);
    transform: translateY(-3px);
}
.sapn-1{
    color: #1DE8C2;
}

/* -----------------------------
   RIGHT IMAGE CONTENT
----------------------------- */
.right-content {
    width: 45%;
    display: flex;
    justify-content: center;
}

.right-content img {
    width: 100%;
  max-width: 537px;
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
  height: 300px;
}

/* ----------------------------------------------------
   RESPONSIVE: TABLETS
---------------------------------------------------- */
@media (max-width: 991px) {
    .about-hero {
        padding-top: 140px; /* avoid header overlap on tablets */
        padding-bottom: 60px;
        background-position: center;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .right-content {
        margin-top: 35px;
    }

    .left-content h1 {
        font-size: 45px;
    }

    .left-content p {
        font-size: 18px;
    }
    .latest-img-box .second-img{
        order:1;
    }
}

/* ----------------------------------------------------
   RESPONSIVE: MOBILE
---------------------------------------------------- */
@media (max-width: 480px) {
    .about-hero {
        padding-top: 150px; /* FIX: heading hidden issue */
        padding-bottom: 50px;
    }

    .left-content h1 {
        font-size: 35px;
    }

    .left-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 16px;
    }

    .right-content img {
        max-width: 300px;
    }
}

/* ----------------------------------------------------
   EXTRA SMALL DEVICES (≤ 320px)
---------------------------------------------------- */
@media (max-width: 320px) {
    .about-hero {
        padding-top: 160px;
    }

    .left-content h1 {
        font-size: 28px;
    }
}


/* ===========================================*/
.pub-section {
    padding: 60px 0;
    background: #f4f6f9;
}

.pub-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.pub-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #083b72;
    letter-spacing: 1px;
}

.pub-line {
    width: 60px;
    height: 4px;
    background: #3cb043;
    margin: 10px auto 40px;
    border-radius: 5px;
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.pub-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
}

.pub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
}

.pub-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pub-body {
    padding: 20px;
}

.pub-type {
    font-size: 14px;
    font-weight: 700;
    color: #0a6fb8;
}

.pub-title {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.pub-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.pub-date {
    font-size: 14px;
    color: #777;
}

/* Responsive for 320px */
@media(max-width: 480px) {
    .pub-heading {
        font-size: 26px;
    }
    .pub-title {
        font-size: 16px;
    }
}



/*cards for trading*/
    .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.retro-layout .v-height {
    height: 240px;
}
.retro-layout .h-entry {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.retro-layout .gradient {
    position: relative;
}
.retro-layout .h-entry.gradient {
    position: relative;
}
.retro-layout .h-entry.mb-30 {
    margin-bottom: 30px;
}
.retro-layout .h-entry.gradient:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
.retro-layout .h-entry .featured-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
.retro-layout .text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding: 20px;
    max-width: 350px;
}
.retro-layout .text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}
.retro-layout .h-entry .date {
    font-size: 15px;
}
.retro-layout .text h2, .retro-layout .text .h2 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0;
}
@media (max-width: 767.98px){
.retro-layout .img-5 {
    height: 240px !important;
    margin-bottom: 30px;
    margin-top: 30px;
}
}


        .text-white {
            color: #fff !important;
        }

        .bg-purple {
            background-color: #776af8 !important;
        }

        .bg-light-gray {
            background-color: #edf2f8 !important;
        }

        .bg-dark-gray {
            background-color: #49556b !important;
        }

        .bg-dark {
            background-color: #19212d !important;
        }



/*smart invest*/
    .si-smart-investment {
      /*padding: 80px 20px;*/
      background: #f8f9fb;
    }

    .si-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .si-content {
      flex: 1;
    }

    .si-content h2 {
      font-size: 38px;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

    .si-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 20px;
    }

    .si-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .si-content ul li {
      margin-bottom: 10px;
      color: #333;
      position: relative;
      padding-left: 25px;
    }

    .si-content ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #1abc9c;
      font-weight: bold;
    }

    .si-btn {
      display: inline-block;
      padding: 12px 30px;
      background: #1c486b;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .si-btn:hover {
      background: #1c486b;
      color:white;
    }

    .si-image {
      flex: 1;
    }

    .si-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .si-container {
        flex-direction: column;
        text-align: center;
      }

      .si-content h2 {
        font-size: 30px;
      }

      .si-content ul li {
        padding-left: 0;
      }

      .si-content ul li::before {
        display: none;
      }
        .second-img{
        order:-1;
    }
    .greem-image{
        margin-top:20px;
    }
     .si-image {
        order: -1; 
    }
    }
    
  
  
  
    
    /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* MAIN SECTION */
.auth-section {
    min-height: 100vh;
    background: url("../images/shutterstock.webp") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* CONTAINER */
.auth-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM WRAPPER */
.auth-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.form-box {
    width: 100%;
    max-width: 400px;
    background: rgba(14, 20, 36, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* LOGO */
.logo {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXT */
.subtitle {
    color: #b5b5b5;
    font-size: 14px;
    margin-bottom: 25px;
}

/* INPUTS */
.form-box input[type="text"] {
    width: 100%;
    background: #000;
    border: none;
    outline: none;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
}

/* CHECKBOX */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 20px;
}

/* BUTTON */
#signup {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ffb347, #ff7b00);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* LOGIN LINK */
.login-link {
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
}

.login-link a {
    color: #ffb347;
    text-decoration: none;
}



@media (max-width: 576px) {

    .auth-section {
        padding: 10px;
    }

    .form-box {
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .logo {
        width: 120px;
    }

    .subtitle {
        font-size: 13px;
    }

    .form-box input[type="text"] {
        padding: 13px 14px;
        font-size: 13px;
    }

    #signup {
        padding: 13px;
        font-size: 14px;
    }

    .checkbox {
        font-size: 12px;
    }

    .login-link {
        font-size: 12px;
    }
}
.acc-not a{
    color:white;
}
    
    
    /* Overlay (Renamed) */
.trade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.1)
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.trade-card:hover .trade-overlay {
  transform: translateY(0);
}

.trade-overlay h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 8px;
  transform: translateY(25px);
  transition: transform 0.5s ease 0.1s;
}

.trade-overlay p {
  color: #cfd6ff;
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(25px);
  transition: transform 0.5s ease 0.15s;
}

.trade-card:hover .trade-overlay h3,
.trade-card:hover .trade-overlay p {
  transform: translateY(0);
}

    
    
    
    
    
    
    
    
    
    
    
  /* Overlay (Renamed) */
.trade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.1)
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.trade-card:hover .trade-overlay {
  transform: translateY(0);
}

.trade-overlay h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 8px;
  transform: translateY(25px);
  transition: transform 0.5s ease 0.1s;
}

.trade-overlay p {
  color: #cfd6ff;
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(25px);
  transition: transform 0.5s ease 0.15s;
}

.trade-card:hover .trade-overlay h3,
.trade-card:hover .trade-overlay p {
  transform: translateY(0);
}
/* ================================
   SECTION M – TRADING MARKETS
================================ */

/*.section-m {*/
/*  padding: 80px 20px;*/
/*  background: #0b1220;*/
/*  font-family: "Segoe UI", sans-serif;*/
/*}*/

/* Container */
/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*}*/

/* Heading */
.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #9aa4bf;
  margin-bottom: 50px;
}

/* Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.trade-card {
  position: relative;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Image */
.trade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trade-card:hover img {
  transform: scale(1.1);
}

/* Overlay (RENAMED) */
.trade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.15)
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  /* Hidden by default */
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

/* Overlay show on hover */
.trade-card:hover .trade-overlay {
  transform: translateY(0);
}

/* Overlay Text */
.trade-overlay h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 8px;
  transform: translateY(25px);
  transition: transform 0.5s ease 0.1s;
}

.trade-overlay p {
  font-size: 14px;
  color: #cfd6ff;
  line-height: 1.6;
  transform: translateY(25px);
  transition: transform 0.5s ease 0.15s;
}

/* Text slide up */
.trade-card:hover .trade-overlay h3,
.trade-card:hover .trade-overlay p {
  transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Large tablets */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .trade-card {
    height: 300px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .trade-overlay h3 {
    font-size: 22px;
  }
}


/*================================================================*/

