 :root {
    --ink: #e7f5ff;
    --muted: #9cc3d6;
    --accent: #00e5ff;
    --accent-2: #2ee59d;
--bg: #05090e;
    --bg-grad-1: #07131d;
    --bg-grad-2: #091a28;
  }

  html, body { height:100%; }
  body {
    margin:0;
   background: #203a43;
    color:var(--ink);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
    overflow-x:hidden;
  }

  /* HERO */
  .hero {
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
  }

  /* Three.js canvas fills hero */
  #globe-canvas {
    position:absolute; inset:0;
    width:100%; height:100%;
    display:block;
    z-index:0;
  }

  /* Glassy gradient overlay for depth */
  .vignette {
    position:absolute; inset:0;
    background:
      radial-gradient(70% 55% at 75% 25%, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.55) 100%),
      radial-gradient(50% 35% at 10% 90%, rgba(0,229,255,.15), rgba(0,0,0,0) 60%);
    pointer-events:none;
    z-index:1;
  }

  /* NAV (simple) */
  
  .hero-inner {
    position:relative; z-index:4;
    height:100%; width:100%;
    display:grid; grid-template-columns: 1.1fr 1fr;
    align-items:center;
    gap: clamp(16px, 4vw, 60px);
    padding: clamp(16px, 3vw, 36px);
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; align-items:start; padding-top:88px; }
  }

  .copy {
    max-width: 680px;
    animation: fadeUp .8s ease-out both .1s;
  }
  .kicker {
    font-size:.9rem; letter-spacing:.25em; text-transform:uppercase;
    color: var(--muted); margin-bottom: 10px;
  }
  h1 {
    margin:6px 0 10px;
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height:1.15;
  }
  .typed {
    color: var(--accent);
    text-shadow: 0 0 16px rgba(0,229,255,.25);
    font-weight:800;
  }
  .sub {
    color: #c9deeb; max-width: 56ch; margin: 12px 0 24px;
  }
  .cta-row { display:flex; gap:12px; flex-wrap:wrap; }
  .btn {
    border:0; border-radius:12px; padding:12px 18px; font-weight:700; cursor:pointer;
    background: linear-gradient(135deg, var(--accent), #5ffbf1);
    color:#001217;
    box-shadow: 0 10px 30px rgba(0,229,255,.2);
    height: auto;
  }
  .btn.secondary {
    background: linear-gradient(135deg, #1f2937, #0b1320);
    color:#d6e6ef; border:1px solid rgba(255,255,255,.08);
    height: auto;
  }
  .trust {
    display:flex; gap:14px; align-items:center; margin-top:16px; color:var(--muted); font-size:.95rem;
  }
  .dot { width:8px; height:8px; border-radius:50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }

  /* Placeholder column where globe sits behind */
  .globe-pad {
    height: 60vh;
  }

  @keyframes fadeUp {
    from { opacity:0; transform: translateY(12px); }
    to { opacity:1; transform: translateY(0); }
  }
  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #011e29;
      color: white;
      position: relative;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo img {
      height: 40px;
  }

  .logo h1 {
      font-size: 2.5rem;
      color: linear-gradient(135deg, var(--accent), #5ffbf1);
  }

  .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
  }

  .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: #3498db;
  }

  .hamburger {
      display: none;
      cursor: pointer;
  }

  .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px;
      transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
      .nav-links {
          position: fixed;
          left: -100%;
          top: 70px;
          background-color: rgb(0, 0, 0, 0.5);
          opacity: 10;
          flex-direction: column;
          width: 80%;
          height: calc(100vh - 70px);
          padding: 2rem;
          transition: all 0.5s ease;
          z-index: 100;
      }

      .nav-links.active {
          left: 0;
          box-shadow: 2px 0 10px rgba(0,0,0,0.2);
      }

      .hamburger {
          display: block;
      }

      .hamburger.active div:nth-child(1) {
          transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active div:nth-child(2) {
          opacity: 0;
      }

      .hamburger.active div:nth-child(3) {
          transform: rotate(45deg) translate(-5px, -6px);
      }
  }
  .container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

    /* Features Section */
    .section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 3rem 2rem;
      background-color: #203a43;
      position: relative;
    }
    
    .item {
      flex: 1 1 250px;
      max-width: 300px;
      margin: 1rem;
      padding: 1.5rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center;
    }
    
    .item img {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
    }
    
    .item h4 {
      margin-bottom: 1rem;
      color: #007bff;
    }


.carousel{
height: 700px; 
perspective: 250px;    
text-align: center;
position: relative;
background-color: #203a43;
}
.carousel .carousel-item {
width: 300px;
background: #fff;
padding: 50px;
height: auto;
text-align: center;
border-radius: 15px;
}
.item p{
  color: #000;
}
.img-area {
width: 100px;
height: 100px;
margin: 0 auto;
overflow: hidden;
}
   .img-area img{
       width: 100%;
   }
   .testi p {
color: #262626;
font-size: 18px;
text-align: center;
}
   .testi h4 {
font-size: 20px;
margin: 0;
color: #000;
}
   .testi h5 {
font-size: 14px;
letter-spacing: 5px;
margin: 7px 0;
}
    


  /* Counter Section */
.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 70px 20px;
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5365);
  color: white;
  margin-bottom:0 ;
}

.counter-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.icon {
  font-size: 32px;
  color: #fff;
}

.counter {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  display: flex;
}

.counter-box p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* 3D Cube Section */
.scene-container {
  position: relative;
  height: 100vh;
  background-color: #203a43;
  overflow: hidden;
  margin-top: 0;
}

.scene {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cube-container {
  position: absolute;
  transform-style: preserve-3d;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
      transform: translate3d(0, 0, -500px) rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
      transform: translate3d(0, 0, 500px) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

.cube {
  position: relative;
  width: 40px;
  height: 40px;
  transform-style: preserve-3d;
  animation: spin 8s infinite linear;
}

@keyframes spin {
  0% { transform: rotateX(0) rotateY(0); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  border: 1px solid rgba(255,255,255,0.3);
}

.front  { transform: rotateY(0deg) translateZ(20px); background: rgba(255,255,255,0.2); }
.back   { transform: rotateY(180deg) translateZ(20px); background: rgba(255,255,255,0.2); }
.right  { transform: rotateY(90deg) translateZ(20px); background: rgba(255,255,255,0.15); }
.left   { transform: rotateY(-90deg) translateZ(20px); background: rgba(255,255,255,0.15); }
.top    { transform: rotateX(90deg) translateZ(20px); background: rgba(255,255,255,0.1); }
.bottom { transform: rotateX(-90deg) translateZ(20px); background: rgba(255,255,255,0.1); }

.content2 {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 30px;
  padding: 20px;
  color: white;
  top: 0;
  left: 0;
}
.why1{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: white;
}
.why1 h2{
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
}
.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.card p {
  margin: 0;
  opacity: 0.8;
}

/* Spacer between sections */
.spacer {
  height: 50px;
  background: #f5f5f5;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Counter section mobile styles */
  .counter {
      font-size: 24px;
  }

  .counter-box p {
      font-size: 14px;
  }
  
  .counter-box {
      min-width: 120px;
      padding: 15px;
      width: calc(50% - 10px);
  }
  
  .icon {
      font-size: 20px;
  }
  
  .counter-container {
      gap: 10px;
      padding: 20px 10px;
  }
  
  /* Cube section mobile styles */
  .content2 {
      gap: 15px;
      padding: 15px;
  }
  
  .card {
      width: calc(50% - 10px);
      padding: 20px;
  }
  
  .card h2 {
      font-size: 18px;
  }
  
  .card p {
      font-size: 14px;
  }
  
  .cube {
      width: 30px;
      height: 30px;
  }
  
  .front  { transform: rotateY(0deg) translateZ(15px); }
  .back   { transform: rotateY(180deg) translateZ(15px); }
  .right  { transform: rotateY(90deg) translateZ(15px); }
  .left   { transform: rotateY(-90deg) translateZ(15px); }
  .top    { transform: rotateX(90deg) translateZ(15px); }
  .bottom { transform: rotateX(-90deg) translateZ(15px); }
}

@media (max-width: 480px) {
  /* Counter section small mobile styles */
  .counter-container {
      flex-direction: column;
      align-items: center;
  }
  
  .counter-box {
      width: 80%;
      max-width: 200px;
  }
  
  /* Cube section small mobile styles */
  .content2 {
      flex-direction: column;
  }
  
  .card {
      width: 80%;
  }
  
  .cube {
      width: 25px;
      height: 25px;
  }
}

.about-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    background-color: #203a43;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Animation Styles */
.about-image {
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s ease;
}

.about-content {
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s ease;
}

.animate {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

/* Content Styles */
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3498db;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #31a5e3;
    margin-bottom: 30px;
    font-weight: 500;
}

.mission-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    padding-top: 15px;
    border-top: 2px solid #3498db;
}

/* Mobile Layout (Stacked) */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .mission-text {
        display: inline-block;
    }
}
.t4{
    background-color: #203a43;
}

.tradingview-widget-responsive-container {
    position: relative;
    width: calc(100% - 40px); /* Subtracts 20px from each side */
    height: 650px;
    min-height: 400px;
    margin: 0 auto; /* 20px top/bottom, auto centers horizontally */
    overflow: hidden;
    border-radius: 8px; /* Optional rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Optional subtle shadow */
    background-color: #203a43;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tradingview-widget-responsive-container {
    width: calc(100% - 30px); /* Less padding on mobile */
    margin: 0 auto;
    height: 500px;
    }
}

@media (max-width: 480px) {
    .tradingview-widget-responsive-container {
    width: calc(100% - 20px);
    margin: 10px auto;
    min-height: 350px;
    }
}
/* Base Styles */
.price-container {
    background-color: #203a43;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: black;
}

.price-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.price-box {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Enhanced Hover Border Effect */
.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.price-box::before {
    content: '';
    position: absolute;
    top: -7px; /* Increased border thickness */
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-box:hover::before {
    opacity: 1;
}

.price-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 8px;
    background: white;
    z-index: -1;
}

/* Content Styles */
.price-header {
    margin-bottom: 15px;
}

.price-range {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.price-tier {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.price-features li {
    padding: 5px 0;
    padding-left: 22px;
    position: relative;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-divider {
    border: none;
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.price-button {
    display: block;
    text-align: center;
    background: #3498db;
    color: white;
    padding: 8px ;
    width: 60%;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition:   0.3s ease;
}

.price-button:hover {
    background: #2980b9;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
.price-boxes {
justify-content: center; /* Center boxes on tablet */
}

.price-box {
    max-width: 420px; /* Fits 2 cards */
}
}

@media (max-width: 700px) {
.pricing-boxes {
max-width: 420px; /* Fits 2 cards */
}
}

@media (max-width: 600px) {
    .price-boxes {
        flex-direction: column;
        align-items: center; /* This centers the cards vertically */
        justify-content: center; /* This centers horizontally if needed */
    }
    
    .price-box {
        min-width: 280px;
        max-width: 280px;
        margin: 0 auto 15px; /* Top/bottom: 0, Left/right: auto (centers), Bottom margin 15px */
    }
}
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand h1 {
    color: #3498db;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #ecf0f1;
    font-size: 0.95rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3498db;
    position: relative;
    padding-bottom: 5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start; /* Changed to prevent icon line issues */
}
.contact-info li,
.contact-info a,
.contact-info i{
    text-decoration: none;
    border-bottom:none;
    box-shadow: none;
}

.contact-info i {
    color: #3498db;
    margin-right: 10px;
    min-width: 20px; /* Ensures consistent spacing */
    text-align: center;
    font-size: 1rem; /* Standard icon size */
    line-height: 1.5; /* Better vertical alignment */
}
.social-links {
    display:  flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.social-links i{
    line-height: 3.5rem;
    font-size: 2.5rem;
    
}
.social-links a {
    align-items: center;
    color: white;
    text-align: center;
    line-height:50px ;
    justify-content: center;
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1rem;
    border-radius: 50%;
    transition: all 0.3s;
    background-color: rgb(255, 2555, 255, 0.1);
   
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}
.social-links a:last-child{
    margin-right: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form p {
    color: #ecf0f1;
    font-size: 0.95rem;
}

.email-input-container {
    position: relative;
}
.div5{
    position: relative;
}
.email-input {
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100%;
    padding-left: 50px;
}
.email-icon {
    position: absolute;
    top: 50%;
    left:6px;
    transform: translateY(-50%);
    color: #3498db;
}
.email-input::placeholder{
    position: relative;
    left: 30px;
}
.subscribe-btn {
    position: absolute;
    height: 30px;
    width: 50px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.subscribe-btn:hover {
    background: #2980b9;
}

.subscribe-btn i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
}