/*==================================================
        CRYPTO SERVICES SHOWCASE STYLE
==================================================*/

.crypto-services-container {
    width:100%;
    padding:90px 0;
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at top left,#004aad33,transparent 40%),
      radial-gradient(circle at bottom right,#7a00ff22,transparent 35%),
      linear-gradient(180deg,#05070d,#0a1020);
}

/*=========================
        GRID LAYOUT
=========================*/
.crypto-grid {
    width:90%;
    max-width:1600px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    position:relative;
    z-index:2;
}

/*=========================
        GLASS CARD
=========================*/
.crypto-card {
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:35px 28px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.15),
      0 18px 45px rgba(0,0,0,.35);
    transition:.45s ease;
    margin-bottom:40px;
}

.crypto-card::before {
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    top:-120px;
    right:-120px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(0,216,239,.28),transparent 70%);
    transition:.6s;
}

.crypto-card:hover {
    transform:translateY(-12px);
    box-shadow:
      0 30px 70px rgba(0,0,0,.45),
      0 0 40px rgba(0,216,239,.18);
}

.crypto-card:hover::before {
    transform:scale(1.4);
}

/*=========================
        TITLE & DESCRIPTION
=========================*/
.crypto-card-title {
    font-size:24px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
    line-height:1.25;
}

.crypto-card-text {
    font-size:15px;
    color:rgba(255,255,255,.80);
    line-height:1.6;
}

/*=========================
        ICONS
=========================*/
.crypto-icon {
    width:100px; /* increased by 20px */
    height:100px; /* keep square for perfect circle */
    margin-bottom:20px;
    border-radius:50%; /* circular */
    object-fit:cover;
}

/* Special rule for partnerships last image */
.crypto-partnerships .crypto-grid {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.crypto-partnerships .crypto-grid img.crypto-icon {
    width:200px;      
    height:200px;     
    border-radius:50%; 
    object-fit:cover;  
}
.crypto-button {
    display:inline-block;
    margin-top:15px;
    padding:12px 28px;
    border-radius:25px;
    background:#00d8ef;
    color:#05070d;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.crypto-button:hover {
    background:#009bb8;
    color:#fff;
}

/*=========================
   HEADING CONTAINER
=========================*/
.crypto-hero {
    text-align:center;
    margin-bottom:60px;
    padding:20px;
    background:rgba(255,255,255,.05);
    border-radius:20px;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 0 25px rgba(0,216,239,.35);
}

.crypto-hero-title {
    font-size:25px;
    font-weight:900;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    text-shadow:
      0 0 10px #00d8ef,
      0 0 20px #00d8ef,
      0 0 40px #7a00ff;
    animation:glowPulse 3s infinite alternate;
}

.crypto-hero-subtitle {
    font-size:18px;
    font-weight:600;
    background:linear-gradient(90deg,#00d8ef,#7a00ff,#ff0080);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-size:200% auto;
    animation:shineFlow 6s linear infinite;
    letter-spacing:1px;
}

.crypto-hero-intro {
    font-size:16px;
    color:rgba(255,255,255,.85);
    max-width:800px;
    margin:auto;
    line-height:1.6;
}

/*=========================
   SECTION TITLES
=========================*/
.crypto-section-title {
    font-size:24px;
    font-weight:800;
    color:#fff;
    text-align:center;
    margin-bottom:25px;
    text-shadow:0 0 15px #00d8ef;
}
.crypto-section-title,
.crypto-hero-title,
.crypto-hero-subtitle {
    color:#fff !important;
}

.crypto-faq h3 {
    color:#fff;         
    font-weight:700;    
    margin-bottom:10px; 
}

.crypto-section-text {
    font-size:15px;
    color:rgba(255,255,255,.85);
    line-height:1.6;
    text-align:center;
    max-width:900px;
    margin:auto;
}

/*=========================
   LISTS
=========================*/
.crypto-list {
    list-style:none;
    padding:0;
    margin:0 auto;
    max-width:700px;
    text-align:left;
}
.crypto-list li {
    color:rgba(255,255,255,.85);
    margin-bottom:12px;
    font-size:15px;
    position:relative;
    padding-left:20px;
}
.crypto-list li::before {
    content:"✔";
    position:absolute;
    left:0;
    color:#00d8ef;
}

/*=========================
   ANIMATIONS
=========================*/
@keyframes glowPulse {
    from { text-shadow:0 0 10px #00d8ef,0 0 20px #00d8ef; }
    to   { text-shadow:0 0 20px #7a00ff,0 0 40px #ff0080; }
}

@keyframes shineFlow {
    0%   { background-position:0% 50%; }
    50%  { background-position:100% 50%; }
    100% { background-position:0% 50%; }
}

/*=========================
   INVESTMENT PAGE THEME
=========================*/
.crypto-services-container .hero-section.investment-plans-section,
.crypto-services-container .investment-section,
.crypto-services-container .trust-security,
.crypto-services-container .mission-guarantees,
.crypto-services-container .testimonials,
.crypto-services-container .team,
.crypto-services-container .education,
.crypto-services-container .live-data,
.crypto-services-container .faq-link,
.crypto-services-container .cta,
.crypto-services-container .community,
.crypto-services-container .disclaimer {
    position:relative;
    z-index:2;
    margin:0 auto 35px;
    padding:40px clamp(20px, 4vw, 60px);
    max-width:1400px;
    border-radius:28px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 18px 45px rgba(0,0,0,.25);
}

.crypto-services-container .investment-cards,
.crypto-services-container .security-grid,
.crypto-services-container .mission-grid,
.crypto-services-container .testimonial-grid,
.crypto-services-container .team-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:30px;
}

.crypto-services-container .investment-card,
.crypto-services-container .security-card,
.crypto-services-container .mission-card,
.crypto-services-container .testimonial-card,
.crypto-services-container .team-card,
.crypto-services-container .plan-card {
    position:relative;
    overflow:hidden;
    padding:35px 28px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 18px 45px rgba(0,0,0,.35);
    transition:.45s ease;
}

.crypto-services-container .investment-card::before,
.crypto-services-container .security-card::before,
.crypto-services-container .mission-card::before,
.crypto-services-container .testimonial-card::before,
.crypto-services-container .team-card::before,
.crypto-services-container .plan-card::before {
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    top:-120px;
    right:-120px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(0,216,239,.28),transparent 70%);
    transition:.6s;
}

.crypto-services-container .investment-card:hover,
.crypto-services-container .security-card:hover,
.crypto-services-container .mission-card:hover,
.crypto-services-container .testimonial-card:hover,
.crypto-services-container .team-card:hover,
.crypto-services-container .plan-card:hover {
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.45),0 0 40px rgba(0,216,239,.18);
}

.crypto-services-container .investment-card:hover::before,
.crypto-services-container .security-card:hover::before,
.crypto-services-container .mission-card:hover::before,
.crypto-services-container .testimonial-card:hover::before,
.crypto-services-container .team-card:hover::before,
.crypto-services-container .plan-card:hover::before {
    transform:scale(1.4);
}

.crypto-services-container .investment-title,
.crypto-services-container .trust-security h1,
.crypto-services-container .mission-guarantees h1,
.crypto-services-container .testimonials h1,
.crypto-services-container .team h1,
.crypto-services-container .education h1,
.crypto-services-container .live-data h1,
.crypto-services-container .faq-link h1,
.crypto-services-container .cta h1,
.crypto-services-container .community h1 {
    color:#fff;
    font-size:24px;
    font-weight:800;
    text-align:center;
    margin-bottom:15px;
    text-shadow:0 0 15px #00d8ef;
}

.crypto-services-container .investment-subtitle,
.crypto-services-container .trust-security p,
.crypto-services-container .mission-guarantees p,
.crypto-services-container .testimonials p,
.crypto-services-container .team p,
.crypto-services-container .education p,
.crypto-services-container .live-data p,
.crypto-services-container .faq-link p,
.crypto-services-container .cta p,
.crypto-services-container .community p,
.crypto-services-container .disclaimer p {
    color:rgba(255,255,255,.85);
    line-height:1.6;
    text-align:center;
    max-width:900px;
    margin:0 auto 20px;
}

.crypto-services-container .signup-button,
.crypto-services-container .btn {
    display:inline-block;
    margin-top:15px;
    padding:12px 28px;
    border-radius:25px;
    background:#00d8ef;
    color:#05070d;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.crypto-services-container .signup-button:hover,
.crypto-services-container .btn:hover {
    background:#009bb8;
    color:#fff;
}

/*=========================
   RESPONSIVE
=========================*/
@media(max-width:991px){
  .crypto-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .crypto-services-container {
    padding:60px 0;
  }
  .crypto-grid {
    width:95%;
    grid-template-columns:1fr;
    gap:24px;
  }
  .crypto-card {
    padding:24px;
  }
  .crypto-card-title {
    font-size:21px;
  }
  .crypto-card-text {
    font-size:14px;
    line-height:1.5;
  }
  .crypto-hero-title {
    font-size:21px;
  }
  .crypto-hero-subtitle {
    font-size:16px;
  }

  /* Partnerships images stack in column on mobile */
  .crypto-partnerships .crypto-grid {
    flex-direction:column;
    align-items:center;
  }
  .crypto-partnerships .crypto-grid img:last-child {
    width:100px; /* revert to normal size on mobile */
  }
}
