    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    body {
      overflow-x: hidden;
      background: #f8fafc;
    }
    /* TOP BAR STYLES - FULLY RESPONSIVE */
    .top-bar {
      background: #0f2b46;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: clamp(8px, 2vh, 10px) 5%;
      align-items: center;
      font-size: clamp(12px, 3.5vw, 14px);
      position: relative;
      overflow: hidden;
      z-index: 1001;
      gap: clamp(8px, 2vw, 15px);
    }

    .top-bar::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      animation: shimmer 8s infinite;
      pointer-events: none;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      20% { left: 200%; }
      100% { left: 200%; }
    }

    .top-bar i { margin-right: 5px; color: #ffd700; }

    .top-bar .fa-phone { animation: softPulse 2s infinite; }

    @keyframes softPulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.05); }
    }

    .top-bar select {
      padding: clamp(6px, 1.5vh, 8px) clamp(15px, 4vw, 20px);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: clamp(12px, 3.5vw, 14px);
      backdrop-filter: blur(5px);
      min-width: clamp(120px, 30vw, 140px);
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px;
    }

    .top-bar select:hover {
      background: rgba(255,215,0,0.15);
      border-color: #ffd700;
      box-shadow: 0 0 20px rgba(255,215,0,0.3);
      transform: translateY(-2px);
    }

    .top-bar select:focus {
      outline: none;
      border-color: #ffd700;
      box-shadow: 0 0 0 3px rgba(255,215,0,0.3);
    }

    .top-bar select option { background: #0f2b46; color: #fff; }

    @media (max-width: 600px) {
      .top-bar { flex-direction: column; text-align: center; }
      .top-left { justify-content: center; }
    }

    /* NAVBAR STYLES - FULLY RESPONSIVE (slide down) */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: clamp(10px, 2.5vh, 15px) 5%;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
      z-index: 999;
      position: relative;
    }

    .navbar.scrolled {
      background: rgba(10,25,45,0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      border-bottom: 1px solid rgba(255,215,0,0.2);
    }

    .navbar.scrolled nav a { color: #ffffff; }

    .navbar.scrolled .logo img {
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease;
    }

    .navbar.sticky {
      position: fixed;
      top: 0;
      width: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .navbar nav {
      display: flex;
      gap: clamp(15px, 3vw, 30px);
    }

    .navbar nav a {
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      font-size: clamp(12px, 3vw, 14px);
      transition: 0.3s;
      position: relative;
    }

    .navbar nav a:after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ffd700;
      transition: 0.3s;
    }

    .navbar.scrolled nav a:after { background: #ffd700; }

    .navbar nav a:hover:after,
    .navbar nav a.active:after { width: 100%; }

    .navbar nav a.active {
      color: #0f2b46;
      font-weight: 600;
    }

    .navbar.scrolled nav a.active { color: #ffd700; }

    .logo img {
     height: clamp(30px, 10vw, 60px);
      transition: all 0.3s ease;
    }

    .menu-toggle {
      display: none;
      font-size: clamp(22px, 6vw, 28px);
      cursor: pointer;
      color: #0f2b46;
      z-index: 1002;
      transition: transform 0.3s ease;
    }

    .navbar.scrolled .menu-toggle { color: #ffd700; }

    .menu-toggle:hover { transform: scale(1.1); }

    /* MOBILE MENU - SLIDE DOWN FROM TOP */
    @media (max-width: 992px) {
      .navbar { flex-wrap: wrap; }

      .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a1a2f;
        flex-direction: column;
        padding: 0 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        z-index: 998;
        transition: max-height 0.4s ease, padding 0.3s ease;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        display: flex !important;
        pointer-events: auto;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }

      .navbar nav.active {
        max-height: 550px;
        padding: 15px 20px 25px;
        border-top: 1px solid rgba(255,215,0,0.3);
      }

      .navbar nav a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        padding: 14px 15px;
        width: 100%;
        text-align: left;
        border-radius: 8px;
        opacity: 1;
        transform: none;
        transition: background 0.2s, color 0.2s, transform 0.2s;
        background: transparent;
        border: 1px solid transparent;
        letter-spacing: 0.5px;
        pointer-events: auto;
        margin: 2px 0;
      }

      .navbar nav a:hover {
        background: #ffd700;
        color: #0a1a2f;
        border-color: #ffd700;
        transform: translateX(5px);
      }

      .navbar nav a.active {
        background: #ffd700;
        color: #0a1a2f;
        font-weight: 600;
        border-color: #ffd700;
      }

      .navbar nav a:after { display: none; }

      .menu-toggle { display: block; }

      .menu-toggle.active i { transform: rotate(90deg); }

      .menu-toggle i { transition: transform 0.3s ease; }

      .menu-toggle.active i::before { content: "\f00d"; }

      .nav-overlay { display: none; }

      body.menu-open { overflow: hidden; }
    }

     /* CTA button style for LOGIN/SIGNUP link */
    .navbar nav a.cta-link {
      background: linear-gradient(145deg, #ffd700, #ffb800);
      color: #0f2b46;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 700;
      border: 2px solid transparent;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .navbar nav a.cta-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.6s;
    }

    .navbar nav a.cta-link:hover::before {
      left: 100%;
    }

    .navbar nav a.cta-link:hover {
      background: linear-gradient(145deg, #ffb800, #ffd700);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
      border-color: #00ffff;
    }

    .navbar nav a.cta-link:after {
      display: none;
    }

    .navbar nav a.cta-link i {
      margin-right: 5px;
      transition: transform 0.3s;
    }

    .navbar nav a.cta-link:hover i {
      transform: rotate(90deg);
    }

    .navbar.scrolled nav a.cta-link {
      background: linear-gradient(145deg, #ffd700, #ffaa00);
      color: #0a1a2f;
      box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    }


    /* PAGE HEADER - FULLY RESPONSIVE */
    .page-header {
      background: linear-gradient(135deg, #0f2b46 0%, #1a3f62 100%);
      padding: clamp(40px, 10vh, 60px) 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: min(500px, 80vw);
      height: min(500px, 80vw);
      background: rgba(255,215,0,0.1);
      border-radius: 50%;
      animation: floatHeader 20s infinite ease-in-out;
      pointer-events: none;
    }

    .page-header::after {
      content: "";
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: min(500px, 80vw);
      height: min(500px, 80vw);
      background: rgba(0,255,255,0.1);
      border-radius: 50%;
      animation: floatHeaderReverse 25s infinite ease-in-out;
      pointer-events: none;
    }

    @keyframes floatHeader {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(-50px,30px) scale(1.1); }
    }

    @keyframes floatHeaderReverse {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(50px,-30px) scale(1.1); }
    }

    .page-header h1 {
      color: #fff;
      font-size: clamp(32px, 8vw, 56px);
      font-weight: 800;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    .page-header p {
      color: rgba(255,255,255,0.9);
      font-size: clamp(16px, 4vw, 20px);
      max-width: min(700px, 90%);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* BREADCRUMB - FULLY RESPONSIVE */
    .breadcrumb {
      padding: clamp(10px, 2vh, 15px) 5%;
      background: #f1f5f9;
      border-bottom: 1px solid #e2e8f0;
      font-size: clamp(12px, 3.5vw, 14px);
    }

    .breadcrumb a {
      color: #0f2b46;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .breadcrumb a:hover { color: #ffd700; }

    .breadcrumb span {
      color: #64748b;
      margin: 0 5px;
    }

    .breadcrumb .current {
      color: #ffd700;
      font-weight: 600;
    }

    /* ABOUT HERO SECTION - FULLY RESPONSIVE */
    .about-hero {
      padding: clamp(50px, 10vh, 100px) 5%;
      background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?q=80&w=2070&auto=format&fit=crop');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(15,43,70,0.9), rgba(26,63,98,0.85));
      z-index: 0;
    }

    .about-hero::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: min(400px, 80vw);
      height: min(400px, 80vw);
      background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(0,255,255,0.15));
      border-radius: 50%;
      transform: translate(200px, -200px);
      z-index: 0;
      pointer-events: none;
    }

    .about-hero-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(30px, 6vw, 60px);
      align-items: center;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 992px) {
      .about-hero-container { grid-template-columns: 1fr; }
    }

    .about-hero-content h2 {
      font-size: clamp(32px, 7vw, 48px);
      color: #ffffff;
      margin-bottom: clamp(20px, 4vh, 30px);
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .about-hero-content h2 span {
      color: #ffd700;
      position: relative;
      display: inline-block;
    }

    .about-hero-content h2 span::after {
      content: "";
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(255,215,0,0.3);
      z-index: -1;
    }

    .about-hero-content p {
      color: rgba(255,255,255,0.95);
      font-size: clamp(16px, 4vw, 18px);
      line-height: 1.8;
      margin-bottom: clamp(20px, 4vh, 30px);
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

    .about-hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(20px, 5vw, 40px);
      margin-top: clamp(30px, 6vh, 40px);
    }

    @media (max-width: 768px) {
      .about-hero-stats { flex-direction: column; gap: 20px; }
    }

    .hero-stat { text-align: center; }

    .hero-stat .number {
      font-size: clamp(32px, 8vw, 42px);
      font-weight: 800;
      color: #ffd700;
      margin-bottom: 5px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-stat .label {
      color: rgba(255,255,255,0.9);
      font-size: clamp(14px, 3.5vw, 16px);
      font-weight: 500;
    }

    .chart-box {
      width: 100%;
      height: min(400px, 50vh);
      background: rgba(255,255,255,0.1);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      position: relative;
      z-index: 1;
    }

    #tradingview_chart {
      width: 100%;
      height: 100%;
    }

    /* MISSION VISION SECTION - FULLY RESPONSIVE */
    .mission-vision {
      padding: clamp(50px, 10vh, 80px) 5%;
      background: linear-gradient(135deg, #f8fafc, #eef2f6);
    }

    .mv-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(20px, 4vw, 30px);
    }

    @media (max-width: 768px) {
      .mv-container { grid-template-columns: 1fr; }
    }

    .mv-card {
      background: #ffffff;
      padding: clamp(30px, 6vh, 50px) clamp(25px, 5vw, 40px);
      border-radius: 30px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .mv-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #ffd700, #00ffff);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .mv-card:hover::before { transform: scaleX(1); }

    .mv-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    .mv-icon {
      width: clamp(80px, 18vw, 100px);
      height: clamp(80px, 18vw, 100px);
      background: linear-gradient(135deg, #0f2b46, #1a3f62);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      position: relative;
    }

    .mv-icon::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      width: calc(100% + 10px);
      height: calc(100% + 10px);
      border: 2px dashed #ffd700;
      border-radius: 50%;
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .mv-icon i {
      font-size: clamp(36px, 8vw, 48px);
      color: #ffd700;
    }

    .mv-card h3 {
      font-size: clamp(24px, 5vw, 32px);
      color: #0f2b46;
      margin-bottom: 20px;
    }

    .mv-card p {
      color: #64748b;
      font-size: clamp(16px, 4vw, 18px);
      line-height: 1.8;
    }

    /* VALUES SECTION - FULLY RESPONSIVE */
    .values-section {
      padding: clamp(60px, 12vh, 100px) 5%;
      background: #ffffff;
    }

    .section-header {
      text-align: center;
      max-width: min(700px, 90%);
      margin: 0 auto clamp(40px, 8vh, 60px);
    }

    .section-subtitle {
      color: #ffd700;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: clamp(12px, 3vw, 14px);
      margin-bottom: 15px;
    }

    .section-header h2 {
      font-size: clamp(28px, 7vw, 42px);
      color: #0f2b46;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .section-header p {
      color: #64748b;
      font-size: clamp(16px, 4vw, 18px);
      line-height: 1.6;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 4vw, 30px);
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 1200px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

    .value-card {
      text-align: center;
      padding: clamp(30px, 6vh, 40px) clamp(20px, 4vw, 30px);
      background: #f8fafc;
      border-radius: 20px;
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
    }

    .value-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(180deg, rgba(255,215,0,0.1), transparent);
      transition: height 0.5s ease;
    }

    .value-card:hover::before { height: 100%; }

    .value-card:hover {
      transform: translateY(-10px);
      border-color: #ffd700;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .value-icon {
      width: clamp(60px, 15vw, 80px);
      height: clamp(60px, 15vw, 80px);
      background: #0f2b46;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .value-card:hover .value-icon {
      transform: rotateY(360deg);
      background: #ffd700;
    }

    .value-card:hover .value-icon i { color: #0f2b46; }

    .value-icon i {
      font-size: clamp(28px, 6vw, 36px);
      color: #ffd700;
      transition: all 0.3s ease;
    }

    .value-card h3 {
      font-size: clamp(18px, 4.5vw, 22px);
      color: #0f2b46;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .value-card p {
      color: #64748b;
      line-height: 1.6;
      position: relative;
      z-index: 1;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    /* TEAM SECTION - FULLY RESPONSIVE */
    .team-section {
      padding: clamp(60px, 12vh, 100px) 5%;
      background: linear-gradient(135deg, #f8fafc, #eef2f6);
      position: relative;
      overflow: hidden;
    }

    .team-section::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: min(300px, 50vw);
      height: min(300px, 50vw);
      background: rgba(255,215,0,0.1);
      border-radius: 50%;
      pointer-events: none;
    }

    .team-section::after {
      content: "";
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: min(300px, 50vw);
      height: min(300px, 50vw);
      background: rgba(0,255,255,0.1);
      border-radius: 50%;
      pointer-events: none;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 4vw, 30px);
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1200px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

    .team-card {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    .team-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
    }

    .team-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .team-card:hover .team-image img { transform: scale(1.1); }

    .team-social {
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 20px;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      transition: bottom 0.3s ease;
    }

    .team-card:hover .team-social { bottom: 0; }

    .team-social a {
      width: clamp(35px, 8vw, 40px);
      height: clamp(35px, 8vw, 40px);
      background: #ffd700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0f2b46;
      text-decoration: none;
      transition: all 0.3s ease;
      transform: translateY(20px);
      opacity: 0;
    }

    .team-card:hover .team-social a {
      transform: translateY(0);
      opacity: 1;
    }

    .team-social a:nth-child(1) { transition-delay: 0.1s; }
    .team-social a:nth-child(2) { transition-delay: 0.2s; }
    .team-social a:nth-child(3) { transition-delay: 0.3s; }

    .team-social a:hover {
      background: #ffffff;
      transform: translateY(-3px) !important;
    }

    .team-info {
      padding: clamp(20px, 4vh, 25px);
      text-align: center;
    }

    .team-info h3 {
      font-size: clamp(18px, 4.5vw, 20px);
      color: #0f2b46;
      margin-bottom: 5px;
    }

    .team-info .position {
      color: #ffd700;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    .team-info .bio {
      color: #64748b;
      font-size: clamp(12px, 3.5vw, 14px);
      line-height: 1.6;
    }

    /* TIMELINE SECTION - FULLY RESPONSIVE */
    .timeline-section {
      padding: clamp(60px, 12vh, 100px) 5%;
      background: #ffffff;
    }

    .timeline {
      max-width: 1000px;
      margin: 50px auto 0;
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #ffd700, #00ffff, #ffd700);
      border-radius: 2px;
      pointer-events: none;
    }

    .timeline-item {
      display: flex;
      justify-content: flex-end;
      padding-right: 30px;
      position: relative;
      margin-bottom: 50px;
      width: 50%;
    }

    .timeline-item:nth-child(even) {
      align-self: flex-end;
      justify-content: flex-start;
      padding-left: 30px;
      padding-right: 0;
      margin-left: 50%;
    }

    @media (max-width: 992px) {
      .timeline::before { left: 30px; }
      .timeline-item,
      .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        margin-left: 0;
      }
      .timeline-dot { left: 22px !important; right: auto; }
    }

    .timeline-dot {
      position: absolute;
      top: 0;
      right: -8px;
      width: 20px;
      height: 20px;
      background: #ffd700;
      border: 4px solid #0f2b46;
      border-radius: 50%;
      z-index: 2;
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0.7); }
      50% { transform: scale(1.2); box-shadow: 0 0 20px 5px rgba(255,215,0,0.3); }
    }

    .timeline-item:nth-child(even) .timeline-dot {
      right: auto;
      left: -8px;
    }

    .timeline-content {
      background: #f8fafc;
      padding: clamp(20px, 4vh, 30px);
      border-radius: 20px;
      width: 100%;
      position: relative;
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .timeline-content:hover {
      transform: translateY(-5px);
      border-color: #ffd700;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .timeline-year {
      font-size: clamp(20px, 5vw, 24px);
      font-weight: 800;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .timeline-content h3 {
      font-size: clamp(18px, 4.5vw, 22px);
      color: #0f2b46;
      margin-bottom: 10px;
    }

    .timeline-content p {
      color: #64748b;
      line-height: 1.6;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    /* ACHIEVEMENTS SECTION - FULLY RESPONSIVE */
    .achievements-section {
      padding: clamp(50px, 10vh, 80px) 5%;
      background-image: url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?q=80&w=2070&auto=format&fit=crop');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden;
    }

    .achievements-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(15,43,70,0.95), rgba(26,63,98,0.9));
      z-index: 1;
    }

    .achievements-section::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L50 80 Z" fill="%23ffd700"/><circle cx="30" cy="30" r="10" fill="%2300ffff"/><circle cx="70" cy="70" r="15" fill="%23ffd700"/></svg>');
      background-size: 200px;
      opacity: 0.1;
      z-index: 1;
      pointer-events: none;
    }

    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 4vw, 30px);
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 1200px) { .achievements-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .achievements-grid { grid-template-columns: 1fr; } }

    .achievement-card {
      text-align: center;
      padding: clamp(30px, 6vh, 40px) clamp(15px, 3vw, 20px);
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .achievement-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
      transition: left 0.5s ease;
    }

    .achievement-card:hover::before { left: 100%; }

    .achievement-card:hover {
      transform: translateY(-10px);
      background: rgba(255,215,0,0.15);
      border-color: #ffd700;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .achievement-icon {
      font-size: clamp(40px, 10vw, 48px);
      color: #ffd700;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 10px rgba(255,215,0,0.5));
    }

    .achievement-number {
      font-size: clamp(36px, 9vw, 48px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .achievement-label {
      color: rgba(255,255,255,0.95);
      font-size: clamp(16px, 4vw, 18px);
      font-weight: 500;
    }

    /* PARTNERS SECTION - FULLY RESPONSIVE */
    .partners-section {
      padding: clamp(50px, 10vh, 80px) 5%;
      background: #ffffff;
    }

    .partners-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(20px, 5vw, 50px);
      max-width: 1200px;
      margin: 40px auto 0;
    }

    .partner-item {
      padding: 20px 30px;
      background: #f8fafc;
      border-radius: 15px;
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .partner-item:hover {
      transform: translateY(-5px);
      border-color: #ffd700;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .partner-item i {
      font-size: clamp(40px, 10vw, 60px);
      color: #0f2b46;
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .partner-item:hover i {
      color: #ffd700;
      opacity: 1;
    }

    /* TESTIMONIALS SECTION - FULLY RESPONSIVE */
    .testimonials-section {
      padding: clamp(60px, 12vh, 100px) 5%;
      background: linear-gradient(135deg, #f8fafc, #eef2f6);
      position: relative;
      overflow: hidden;
    }

    .testimonials-slider {
      max-width: min(800px, 90%);
      margin: 40px auto 0;
      position: relative;
    }

    .testimonial-slide {
      background: #ffffff;
      padding: clamp(30px, 6vh, 50px);
      border-radius: 30px;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      position: relative;
      border: 1px solid #e2e8f0;
    }

    .testimonial-slide::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 30px;
      font-size: clamp(80px, 20vw, 120px);
      font-family: serif;
      color: rgba(255,215,0,0.2);
      line-height: 1;
      pointer-events: none;
    }

    .testimonial-slide i.fa-quote-right {
      position: absolute;
      bottom: 20px;
      right: 30px;
      font-size: clamp(30px, 8vw, 40px);
      color: rgba(255,215,0,0.2);
      pointer-events: none;
    }

    .testimonial-text {
      font-size: clamp(16px, 4vw, 20px);
      line-height: 1.8;
      color: #334155;
      margin-bottom: 30px;
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .author-avatar {
      width: clamp(50px, 12vw, 70px);
      height: clamp(50px, 12vw, 70px);
      background: #0f2b46;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffd700;
      font-weight: 600;
      font-size: clamp(20px, 5vw, 24px);
    }

    .author-info h4 {
      font-size: clamp(16px, 4vw, 18px);
      color: #0f2b46;
      margin-bottom: 5px;
    }

    .author-info p {
      color: #ffd700;
      font-weight: 500;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #cbd5e1;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background: #ffd700;
      transform: scale(1.3);
    }

    /* CTA SECTION - FULLY RESPONSIVE */
    .cta-section {
      padding: clamp(50px, 10vh, 80px) 5%;
      background: linear-gradient(135deg, #ffd700, #ffaa00);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -20%;
      width: min(600px, 90vw);
      height: min(600px, 90vw);
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      animation: floatCta 20s infinite ease-in-out;
      pointer-events: none;
    }

    .cta-section::after {
      content: "";
      position: absolute;
      bottom: -50%;
      right: -20%;
      width: min(600px, 90vw);
      height: min(600px, 90vw);
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      animation: floatCtaReverse 20s infinite ease-in-out;
      pointer-events: none;
    }

    @keyframes floatCta {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(50px,50px) scale(1.1); }
    }

    @keyframes floatCtaReverse {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(-50px,-50px) scale(1.1); }
    }

    .cta-content {
      max-width: min(800px, 90%);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      font-size: clamp(28px, 7vw, 48px);
      color: #0f2b46;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .cta-content p {
      font-size: clamp(16px, 4vw, 20px);
      color: #0f2b46;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .cta-button {
      display: inline-block;
      padding: clamp(12px, 3vh, 18px) clamp(30px, 8vw, 50px);
      background: #0f2b46;
      color: #ffd700;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: clamp(16px, 4vw, 18px);
      transition: all 0.3s ease;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before { left: 100%; }

    .cta-button:hover {
      background: #ffffff;
      color: #0f2b46;
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    /* FOOTER - FULLY RESPONSIVE */
    .footer {
      background: #0a1a2f;
      color: #ffffff;
      padding: clamp(50px, 10vh, 80px) 5% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
      gap: clamp(20px, 5vw, 40px);
      max-width: 1200px;
      margin: 0 auto 60px;
    }

    @media (max-width: 1200px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

    .footer-logo img {
      height: clamp(40px, 10vw, 60px);
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
    }

    .footer-about p {
      color: #94a3b8;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .social-links a {
      width: clamp(35px, 8vw, 40px);
      height: clamp(35px, 8vw, 40px);
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      transition: 0.3s;
      font-size: clamp(16px, 4vw, 18px);
    }

    .social-links a:hover {
      background: #ffd700;
      color: #0a1a2f;
      transform: translateY(-3px);
    }

    .footer h4 {
      font-size: clamp(16px, 4vw, 18px);
      margin-bottom: 25px;
      position: relative;
    }

    .footer h4:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 2px;
      background: #ffd700;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li { margin-bottom: 12px; }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: 0.3s;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    .footer-links a:hover {
      color: #ffd700;
      padding-left: 5px;
    }

    .newsletter p {
      color: #94a3b8;
      margin-bottom: 20px;
      font-size: clamp(14px, 3.5vw, 16px);
    }

    .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .newsletter-form input {
      flex: 1 1 150px;
      padding: clamp(10px, 2.5vh, 12px);
      border: none;
      border-radius: 30px;
      background: rgba(255,255,255,0.1);
      color: #ffffff;
      border: 1px solid rgba(255,255,255,0.2);
      min-width: 150px;
    }

    .newsletter-form button {
      width: clamp(45px, 10vw, 50px);
      height: clamp(45px, 10vw, 50px);
      background: #ffd700;
      border: none;
      border-radius: 50%;
      color: #0a1a2f;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .newsletter-form button:hover {
      background: #ffffff;
      transform: scale(1.1) rotate(5deg);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #94a3b8;
      font-size: clamp(12px, 3vw, 14px);
    }

    .risk-disclaimer {
      max-width: 1200px;
      margin: 30px auto 0;
      padding: 20px;
      background: rgba(255,255,255,0.05);
      border-radius: 10px;
      font-size: clamp(11px, 3vw, 12px);
      color: #94a3b8;
      line-height: 1.8;
    }

    /* CHATBOT - FULLY RESPONSIVE */
    .chatbot-container {
      position: fixed;
      bottom: clamp(20px, 5vh, 40px);
      right: clamp(10px, 3vw, 20px);
      z-index: 1000;
    }

    .chatbot-avatar {
      width: clamp(50px, 12vw, 70px);
      height: clamp(50px, 12vw, 70px);
      border-radius: 50%;
      background: linear-gradient(135deg, #0f2b46, #1a3f62);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      border: 3px solid #ffd700;
      transition: all 0.3s ease;
      animation: avatarPulse 2s infinite;
      overflow: hidden;
      position: relative;
    }

    .chatbot-avatar i {
      font-size: clamp(25px, 6vw, 35px);
      color: #ffd700;
    }

    .chatbot-avatar:hover {
      transform: scale(1.1) rotate(5deg);
      border-color: #00ffff;
      box-shadow: 0 15px 40px rgba(255,215,0,0.4);
    }

    @keyframes avatarPulse {
      0%,100% { box-shadow: 0 5px 20px rgba(255,215,0,0.3); }
      50% { box-shadow: 0 5px 30px rgba(255,215,0,0.6), 0 0 20px #00ffff; }
    }

    .chatbot-window {
      position: absolute;
      bottom: 60px;
      right: 0;
      width: min(350px, 90vw);
      height: min(450px, 70vh);
      background: rgba(15,43,70,0.95);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 1001;
      transform-origin: bottom right;
      animation: chatOpen 0.3s ease;
    }

    @keyframes chatOpen {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    .chatbot-window.active { display: flex; }

    .chatbot-header {
      background: linear-gradient(135deg, #ffd700, #ffaa00);
      padding: clamp(15px, 3vh, 20px);
      color: #0f2b46;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .chatbot-header h3 {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(16px, 4vw, 18px);
    }

    .chatbot-header i { font-size: clamp(18px, 4.5vw, 20px); }

    .close-chat {
      background: none;
      border: none;
      color: #0f2b46;
      font-size: clamp(18px, 4.5vw, 20px);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .close-chat:hover { transform: rotate(90deg); }

    .chat-messages {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .message {
      max-width: 80%;
      padding: 12px 15px;
      border-radius: 15px;
      font-size: clamp(12px, 3.5vw, 14px);
      line-height: 1.5;
      animation: messageSlide 0.3s ease;
    }

    @keyframes messageSlide {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .message.bot {
      background: rgba(255,255,255,0.1);
      color: #fff;
      align-self: flex-start;
      border-bottom-left-radius: 5px;
      border: 1px solid rgba(255,215,0,0.2);
    }

    .message.user {
      background: #ffd700;
      color: #0f2b46;
      align-self: flex-end;
      border-bottom-right-radius: 5px;
    }

    .typing-indicator {
      display: flex;
      gap: 5px;
      padding: 12px 15px;
      background: rgba(255,255,255,0.1);
      border-radius: 15px;
      width: fit-content;
      border-bottom-left-radius: 5px;
    }

    .typing-indicator span {
      width: 8px;
      height: 8px;
      background: #ffd700;
      border-radius: 50%;
      animation: typing 1.4s infinite;
    }

    .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
    .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes typing {
      0%,60%,100% { transform: translateY(0); opacity: 0.5; }
      30% { transform: translateY(-10px); opacity: 1; }
    }

    .chat-input-area {
      padding: clamp(15px, 3vh, 20px);
      background: rgba(0,0,0,0.2);
      display: flex;
      gap: 10px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .chat-input-area input {
      flex: 1;
      padding: 12px;
      border: none;
      border-radius: 25px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      border: 1px solid rgba(255,215,0,0.3);
      transition: all 0.3s ease;
      min-width: 0;
    }

    .chat-input-area input:focus {
      outline: none;
      border-color: #ffd700;
      background: rgba(255,255,255,0.15);
    }

    .chat-input-area input::placeholder { color: rgba(255,255,255,0.5); }

    .chat-input-area button {
      width: clamp(40px, 10vw, 45px);
      height: clamp(40px, 10vw, 45px);
      border-radius: 50%;
      background: #ffd700;
      border: none;
      color: #0f2b46;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .chat-input-area button:hover {
      transform: scale(1.1) rotate(5deg);
      background: #fff;
    }

    /* SCROLL TO TOP BUTTON - FULLY RESPONSIVE */
    .scroll-to-top {
      position: fixed;
      bottom: clamp(80px, 15vh, 115px);
      right: clamp(10px, 3vw, 23px);
      width: clamp(45px, 12vw, 60px);
      height: clamp(45px, 12vw, 60px);
      border-radius: 50%;
      background: #0f2b46;
      color: #ffd700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      border: none;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      font-weight: bold;
      font-size: clamp(12px, 3vw, 14px);
    }

    .scroll-to-top.visible { opacity: 1; visibility: visible; }

    .scroll-to-top:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 10px 30px rgba(255,215,0,0.4);
      background: #ffd700;
      color: #0f2b46;
    }

    .scroll-to-top .progress-ring {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .scroll-to-top svg {
      transform: rotate(-90deg);
      width: 100%;
      height: 100%;
    }

    .scroll-to-top circle {
      fill: none;
      stroke: #ffd700;
      stroke-width: 4;
      stroke-linecap: round;
      stroke-dasharray: 176;
      stroke-dashoffset: 176;
      transition: stroke-dashoffset 0.3s ease;
    }

    .scroll-to-top:hover circle { stroke: #0f2b46; }

    .scroll-to-top .percentage {
      position: relative;
      z-index: 1;
      font-size: clamp(12px, 3vw, 14px);
      font-weight: bold;
    }

    /* TYPING TEXT */
    .typing-brand {
      color: #00f7ff;
      font-weight: bold;
      font-size: clamp(16px, 4vw, 20px);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* NEON GLOW */
    .glow {
      animation: neonGlow 1.6s ease-in-out infinite alternate;
    }

    @keyframes neonGlow {
      from { text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff, 0 0 20px #00f7ff; }
      to { text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff, 0 0 35px #00f7ff; }
    }

    /* BITCOIN FLOAT */
    .btc-icon {
      font-size: clamp(20px, 5vw, 26px);
      color: #f7931a;
      animation: floatBTC 3s ease-in-out infinite;
    }

    @keyframes floatBTC {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    /* BUTTON */
    .read-btn {
      margin-top: 30px;
      display: inline-block;
      padding: 12px 28px;
      border: 1px solid #00f7ff;
      color: #00f7ff;
      text-decoration: none;
      border-radius: 6px;
      transition: 0.3s;
    }

    .read-btn:hover {
      background: #00f7ff;
      color: black;
    }

    /* RIPPLE EFFECT */
    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      transform: scale(0);
      animation: ripple-animation 0.6s ease-out;
      pointer-events: none;
    }

    @keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }