
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0B1426;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
        }

       /* Transparent Sticky Navbar *//* Navbar Base */
.navbar {
    background: rgba(255, 255, 255, 0.08); /* Light transparent */
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7); /* Darker on scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.navbar-brand .logo {
    height: 35px;
}

/* Brand Text */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #3B82F6 !important;
}

.btn-primary {
    background: linear-gradient(45deg, #3B82F6, #1D4ED8);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}


        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(11, 20, 38, 0.6);
            z-index: -1;
        }

        .hero-content {
            z-index: 10;
            max-width: 800px;
            margin: auto;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-description {
            font-size: 1.125rem;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .btn-warning {
            background: linear-gradient(45deg, #F59E0B, #D97706);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .btn-warning:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
            color: #ffffff;
        }

        .social-icons {
            position: absolute;
            top: 90%;
            left: 70px;
            transform: translateY(-50%);
            display: flex;
            gap: 20px;
            z-index: 11;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #F59E0B;
        }

        .hero-stats {
            position: absolute;
            bottom: 40px;
            right: 40px;
            display: flex;
            gap: 40px;
            align-items: center;
            z-index: 10;
        }

        .stat-item {
            text-align: right;
        }

        .stat-number {
            font-size: 4.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0;
        }

        .stat-label {
            font-size: 1.0rem;
            color: white;
            font-weight: 300;
            margin: 0;
            padding: 0 15px 0 0;
        }
/* Sirf mobile ke liye changes */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .btn-warning {
    margin-bottom: 10px;
  }

  /* Social icons + stats ek row me */
  .hero-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 5px;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

        /* About Section */
        .about-section {
            background: #0F172A;
            color: #ffffff;
            padding: 5rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .founder-avatar img {
            width: 160px;
            height: 160px;
            object-fit: cover;
        }

        .founder-name {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .founder-title {
            font-size: 0.875rem;
            color: #94A3B8;
            margin: 0;
        }

        .about-card {
            background-color: #1E293B;
            border-radius: 8px;
            color: #CBD5E1;
            font-size: 0.95rem;
            line-height: 1.6;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .about-card .text-warning {
            color: #F59E0B;
        }

        .about-card .text-primary {
            color: #3B82F6;
        }

        /* Work Section */
        .work-section {
            background: #0B1426;
            padding: 5rem 0;
        }

        .work-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .work-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .work-img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .work-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #3B82F6, #1D4ED8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .work-icon i {
            font-size: 1.5rem;
            color: #ffffff;
        }

        .work-card h4 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .work-card p {
            color: #CBD5E1;
            line-height: 1.6;
        }
        .work-section {
  background: #0B1426;
  padding: 4.5rem 0;
}

.work-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #3B82F6, #1D4ED8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: pulseGlow 2s infinite;
}

.work-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.work-card h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.work-card p {
  color: #CBD5E1;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Glow animation for icons */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .work-card { padding: 1.25rem; }
  .section-title { font-size: 1.6rem; }
}


        /* Services Section */
        .services-section {
            background: #1E293B;
            padding: 5rem 0;
        }

        .services-accordion {
            margin-top: 2rem;
        }

        .service-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-item.active {
            background: rgba(59, 130, 246, 0.1);
            border-color: #3B82F6;
        }

        .service-header {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .service-header h5 {
            color: #ffffff;
            font-weight: 600;
            margin: 0;
        }

        .service-header i {
            color: #3B82F6;
            transition: transform 0.3s ease;
        }

        .service-item.active .service-header i {
            transform: rotate(45deg);
        }

        .service-content {
            padding: 0 1.5rem 1.5rem;
            color: #CBD5E1;
            display: block;
        }

        .service-item:not(.active) .service-content {
            display: none;
        }

        .services-image img {
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        .service-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #CBD5E1;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-item.active .service-content {
    max-height: 500px; /* enough for big text */
    padding: 1rem 1.5rem 1.5rem;
}
.services-section { background: #1E293B; padding: 4.5rem 0; }
.section-title { color: #fff; margin-bottom: 1.25rem; }

/* Accordion items */
.services-accordion { margin-top: 1.5rem; }
.service-item {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: box-shadow .28s ease, transform .28s ease;
}
.service-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.35); }

/* header */
.service-header {
  padding: 1.25rem;
  display:flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.service-header h5 { color:#fff; font-weight:600; margin:0; display:flex; align-items:center; gap:8px; }
.toggle-icon { color: #3B82F6; font-size: 1.1rem; transition: transform .3s ease, opacity .2s; }

/* content with smooth slide */
.service-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: #CBD5E1;
  transition: max-height .42s ease, padding .3s ease;
}
.service-item.active { background: rgba(59,130,246,0.06); border-color:#3B82F6; }
.service-item.active .service-content {
  max-height: 780px; /* large enough for content */
  padding: 0.75rem 1.25rem 1.25rem;
}
/* rotate icon when open */
.service-item.active .toggle-icon { transform: rotate(45deg); }

/* image */
.services-image img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.28); }

/* mobile tweaks */
@media (max-width: 991px) {
  .services-accordion { margin-bottom: 1.5rem; }
  .service-header { padding: 1rem; }
  .service-content { padding-left: 1rem; padding-right:1rem; }
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, #0B1426 0%, #1E293B 100%);
    padding: 5rem 0;
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

/* Solution Card */
.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #3B82F6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

/* Horizontal Card Layout */
.solution-card.horizontal {
    text-align: left;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Icon */
.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3B82F6, #1D4ED8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

.solution-card.horizontal .solution-icon {
    margin: 0;
}

.solution-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

/* Titles */
.solution-card h5 {
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

/* Descriptions */
.solution-text {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .solution-card.horizontal {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .solution-card.horizontal .solution-icon {
        margin-bottom: 1rem;
    }
}

        /* Trading Section */
        .trading-section {
            background: #F8FAFC;
            padding: 5rem 0;
            color: #1E293B;
        }

        .trading-form {
            background: #ffffff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .trading-form h3 {
            color: #1E293B;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .form-label {
            color: #64748B;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            padding: 0.75rem;
            font-size: 1rem;
        }

        .form-control:focus {
            border-color: #3B82F6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .trading-interface {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .trading-card {
            background: linear-gradient(45deg, #3B82F6, #1D4ED8);
            padding: 2rem;
            border-radius: 15px;
            color: #ffffff;
            max-width: 400px;
            width: 100%;
        }

        .trading-card h4 {
            text-align: center;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .crypto-input {
            margin-bottom: 1rem;
        }

        .crypto-input span {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .exchange-icon {
            text-align: center;
            margin: 1rem 0;
        }

        .exchange-icon i {
            font-size: 1.5rem;
            color: #F59E0B;
        }

        /* Token Section */
        .token-section {
            background: #0f1724;
            padding: 5rem 0;
            border-radius: 20px;
            margin: 0 0 2rem 0;
            color: #CBD5E1;
        }

        .token-info h3,
        .token-details h3,
        .token-sell h3 {
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .chart-placeholder {
            text-align: center;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            min-height: 230px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .token-list {
            background: rgba(255, 255, 255, 0.03);
            padding: 1.25rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .token-item {
            display: flex;
            align-items: center;
            padding: .75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #CBD5E1;
            gap: 0.75rem;
        }

        .token-item:last-child {
            border-bottom: none;
        }

        .token-color {
            width: 36px;
            height: 10px;
            border-radius: 8px;
            display: inline-block;
            margin-right: .75rem;
            flex: 0 0 auto;
        }

        .token-item span {
            line-height: 1;
        }

        .token-item .ms-auto {
            margin-left: auto;
            font-weight: 600;
            color: #F8FAFC;
        }

        /* Partners Section */
        .partners-section {
            background: #0B1426;
            padding: 5rem 0;
        }

        .partner-logo {
            text-align: center;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.25s ease;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .partner-logo:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 6px 18px rgba(2, 6, 23, 0.4);
        }

        .partner-logo i {
            opacity: 0.95;
        }

        .partner-name {
            margin-top: 0.75rem;
            font-weight: 600;
            color: #E6EEF8;
            font-size: 0.95rem;
        }

        .partner-logo .btc {
            color: #F7931A;
        }

        .partner-logo .eth {
            color: #627EEA;
        }

        .partner-logo .coins {
            color: #FBBF24;
        }

        .partner-logo .chart {
            color: #34D399;
        }

        .partner-logo .wallet {
            color: #60A5FA;
        }

        .partner-logo .shield {
            color: #8B5CF6;
        }

        /* Community + Portfolio */
        .community-portfolio-combined {
            background: linear-gradient(180deg, #0B1426 0%, #0B1426 46%, #000000 100%);
            padding-top: 3.5rem;
            padding-bottom: 6rem;
            position: relative;
            color: #E6EEF8;
        }

        .community-stat {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: transform .25s ease, box-shadow .25s ease;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: .5rem;
        }

        .community-stat i {
            color: #fff;
        }

        .community-stat h4 {
            color: #DDECFB;
            font-size: .95rem;
            margin: 0;
        }

        .community-stat:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.5);
        }

        .portfolio-wrapper {
            position: relative;
            margin-top: -40px;
            z-index: 2;
        }

        .portfolio-card {
            background: linear-gradient(90deg, rgba(253, 224, 71, 1) 0%, rgba(249, 168, 37, 1) 100%);
            border-radius: 18px;
            box-shadow: 0 30px 80px rgba(2, 6, 23, 0.6);
            overflow: hidden;
            display: flex;
            align-items: center;
            min-height: 280px;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .portfolio-card::before {
            content: "";
            position: absolute;
            right: -120px;
            top: -40px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 30%);
            transform: rotate(15deg);
            filter: blur(30px);
            pointer-events: none;
            z-index: 0;
        }

        .portfolio-card .card-title {
            font-size: 2rem;
            font-weight: 800;
            color: #081219;
        }

        .portfolio-card .card-sub {
            color: rgba(8, 18, 25, 0.8);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .live-stats {
            align-items: center;
            gap: 1.25rem;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-weight: 800;
            font-size: 4.25rem;
        }

        .stat-label {
            font-size: 1.rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #081219;
            margin-top: .5rem;
        }

        .feature-item i {
            font-size: 1.05rem;
        }

        .device-mock {
            width: 220px;
            height: 380px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.4);
        }

        .device-mock img {
            width: 90%;
            height: auto;
            border-radius: 12px;
        }

        .btn-app {
            background: #081219;
            color: #fff;
            padding: .6rem 1rem;
            border-radius: 8px;
            font-weight: 600;
        }

        /* Newsletter Section *//* Base newsletter styles (keep these with your existing rules) */
.newsletter-section {
  background: #0B1426;
  padding: 6rem 0;
}

.newsletter-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.newsletter-brand i {
  color: #3B82F6;
}

.newsletter-brand span {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

.newsletter-right {
  flex: 1 1 460px; /* allows the right side to take available space but not too small */
  text-align: left;
  min-width: 260px;
}

.newsletter-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.newsletter-form .input-group {
  width: 100%;
  max-width: 700px;
}

.newsletter-form .form-control {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  border-radius: 8px 0 0 8px;
  padding: 0.625rem 0.75rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  padding: 0.625rem 1rem;
}

/* Desktop minor polish (>= 992px) keep current look but ensure centered content inside container */
@media (min-width: 992px) {
  .newsletter-content {
    padding: 3.2rem;
  }
  .newsletter-title {
    font-size: 1.75rem;
  }
}

/* Tablet / small desktop (>= 768px and < 992px) */
@media (max-width: 991.98px) {
  .newsletter-section {
    padding: 4.5rem 0;
  }

  .newsletter-content {
    padding: 2.4rem;
    gap: 1.25rem;
  }

  .newsletter-brand span {
    font-size: 1.35rem;
  }

  .newsletter-title {
    font-size: 1.4rem;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    padding: 0.55rem 0.7rem;
  }
}

/* Mobile (portrait phones: < 768px) */
/* Stack layout: brand on top, title + form below, center everything, make input and button full width *//* Mobile view fix for newsletter form */
@media (max-width: 767.98px) {
  .newsletter-form .input-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .newsletter-form .form-control {
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
  }

  .newsletter-form .btn {
    border-radius: 8px;
    width: 100%;
  }



  /* make input and button stack on very small screens */
  .newsletter-form .input-group {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .newsletter-form .form-control {
    border-radius: 8px 8px 8px 8px; /* keep rounded when stacked fallback */
    flex: 1 1 auto;
    margin-bottom: 0.5rem; /* small gap if button stacks below (see next rule) */
  }

  .newsletter-form .btn {
    border-radius: 8px;
    width: 100%;
    padding: 0.65rem 0.8rem;
    margin-left: 0; /* ensure no horizontal gap */
  }

  /* For narrow phones, stack input above the button */
  @media (max-width: 430px) {
    .newsletter-form .input-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .newsletter-form .form-control {
      margin-bottom: 0;
    }
    .newsletter-form .btn {
      width: 100%;
    }
  }
}

/* Mini / very small phones fallback (<360px) */
@media (max-width: 359.98px) {
  .newsletter-content {
    padding: 1rem;
    gap: 0.6rem;
  }

  .newsletter-brand span {
    font-size: 1.05rem;
  }

  .newsletter-title {
    font-size: 1.05rem;
  }

  .newsletter-form .form-control {
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem;
  }

  .newsletter-form .btn {
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem;
  }
}

/* Accessibility & visual polish */
.newsletter-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
  outline: none;
}

.newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}


        /* Footer */
        .footer-section {
            background: #1E293B;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 5rem 0;
        }

        .footer-widget h5 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #3B82F6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        .copyright {
            color: #64748B;
            margin: 0;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: #CBD5E1;
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #3B82F6;
            color: #ffffff;
            transform: translateY(-2px);
        }
/* Footer Responsive Styling */
@media (max-width: 767.98px) {
  .footer-section {
    padding: 3rem 0;
    text-align: center;
  }

  .footer-widget {
    margin-bottom: 2rem;
  }

  .footer-widget h5 {
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    margin-top: 1rem;
  }

  .social-links a {
    margin: 0 0.4rem;
  }
}

        /* Responsive Design */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-stats {
                position: static;
                justify-content: center;
                margin-top: 2rem;
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .portfolio-card {
                flex-direction: column;
                text-align: center;
            }
            
            .newsletter-content {
                flex-direction: column;
                text-align: center;
            }
            
            .newsletter-form .input-group {
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .social-icons {
                position: static;
                justify-content: center;
                margin-top: 2rem;
            }
            
            .token-section .row {
                flex-direction: column;
                gap: 2rem;
            }
            
            .footer-section .row > div {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 1.5rem;
            }
            
            .btn-lg {
                padding: 0.5rem 1.5rem;
                font-size: 1rem;
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .newsletter-form .input-group {
                flex-direction: column;
            }
            
            .newsletter-form .btn {
                margin-top: 1rem;
                border-radius: 8px;
            }
        }





/* Animated Gradient Background */
.animated-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #0f2027, #203a43, #2c5364);
    background-size: 600% 600%;
    animation: gradientMove 15s ease infinite;
    z-index: -1;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* About Card Styling */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px rgba(255, 255, 255, 0.2);
}

/* Fade-In Animation */
.about-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}
.info-card .icon {
    font-size: 2rem;
    color: #fbbf24;
    transition: color 0.3s ease;
}
.info-card:hover .icon {
    color: #3b82f6;
}
.info-card table {
    font-size: 0.85rem;
}
