*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
#divclass4{
    display: flex;
    flex-direction: column;
    justify-content:flex-end;
    align-items: flex-start;
    height: 380px;
    margin-top: 30px;
}
#h1id1{
    color: white;
    display: flex;
    padding: 25px 25px 3px 25px;
    position: relative;
    left: 15px;
}
#h1id2{
    color: white;
    display: flex;
    padding: 3px 25px 25px 60px;
    position: relative;
    left: 15px;
}
#p1{
    display: flex;
    color: white;
    padding: 10px 25px 3px 60px;
}
#p2{
    display: flex;
    color: white;
    padding: 3px 25px 3px 90px;

}
.spanclass1{
    color: cyan;
    font-weight: bold;
    padding-left: 10px;
}
.buttonclass1{
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 12px;
    outline: none;
    position: relative;
    left: 10px;
    z-index: 0;
    color: black;
    font-weight: bold;
    height: 45px;
    width: 160px;
    margin: 60px 25px 25px 160px;
    cursor: pointer;
}
.buttonclass1::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    border-radius: 10px;
}
.buttonclass1::before{
    content: "";
    background: linear-gradient(
        45deg,
        #FF0000, #FF7300, #FFFB00 , #48FF00, #00FFd5, #002BFF, #FF00C8, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity 0.5s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}
@keyframes glowing{
    0%{background-position: 0 0;}
    50%{background-position: 400% 0;}
    100%{background-position: 0 0;}
}
.buttonclass1:hover::before{
    opacity: 1;
}
.buttonclass1:active::after{
    background: transparent;
}
.buttonclass1:active{
    color: #000;
    font-weight: bolder;
}

.divclass5{
    display: flex;
    height: 180px;
    background-color: transparent;
}
.divclass6{
    display: flex;
    min-height: 2500px;
    background-color: #1A1A1A;
    justify-content: center;
}
#spanid1{
    display: flex;
    font-size: 50px;
    color: white;
    height: 300px;
    gap: 20px;
}
#spanid2{
    margin-top: 115px;
}
.divclass7{
    height: 780px;
}
#WhyChooseUs_Section{
    text-align: center;
    margin-top: 20px;
}
#spanid3{
    color: white;
    font-size: 60px;
}
.stats-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  flex-wrap: wrap;         /* THIS makes them move to next line */
  text-align: center;
  padding: 40px 10px;
  color: white;
}

.stat h2 {
  font-size: 50px;
  color: #00c4ff;          /* same blue color you want */
  margin: 0;
  font-weight: 700;
}
.stat p {
  margin: 0;
  font-size: 20px;
  opacity: 0.8;
}
#Special{
    color: white;
    font-size: 20px;
    text-align: center;
}
#Users_Speach{
    color: white;
    font-size: 60px;
    text-align: center;
    margin-top: 15px;
}
#footer{
    display: flex;
    background-color: #1A1A1A;
    height: 300px;
    align-items: flex-end;
}
.footer {
    width: 100%;
    background-color: #1A1A1A;   /* same teal color as image */
    padding: 50px 10%;
    display: flex;
    justify-content: flex-start;
    gap: 150px;
    flex-wrap: wrap;
    padding: 70px 50px 50px 400px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #d8d8d8;
    margin: 4px 0;
    font-size: 15px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: cyan;
}
#footertradepulseimg{
    position: relative;
    height: 300px;
}
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}
/* MOVING GRADIENT BACKGROUND */

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Fix canvas full-page */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -10;
}

/* Fix gradient full-page */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -9;
    pointer-events: none;
}
/* ---------------- Responsive Adjustments ---------------- */
@media (max-width: 900px) {
  #Navbar {
    flex-wrap: wrap;
    padding: 10px 15px;
  }
  #divclass2, #divclass3 {
    gap: 10px;
  }
  #divclass4 {
    align-items: center;
    padding: 5vh 3%;
    margin-top: 100px;
  }
  #h1id1, #h1id2 {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  #p1, #p2 {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  .buttonclass1 {
    margin: 20px auto;
    display: block;
  }
}

@media (max-width: 600px) {
  #Navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: auto;
  }
  #divclass4 {
    margin-top: 120px;
  }
  #h1id1, #h1id2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  #p1, #p2 {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
}

/* Background Canvas */

.gradient-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg,#0ff,#ff00c8,#002bff);
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -3;
}
@keyframes gradient{
  0%{background-position: 0% 50%;}
  50%{background-position: 100% 50%;}
  100%{background-position: 0% 50%;}
}

/* Navbar */

#Navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 30px;
  height: 55px;
  width: 97%;
  max-width: 1310px;

  padding: 0 25px;
  margin: 15px auto;

  position: fixed;
  top: 1px;
  left: 50%;               /* FIX */
  transform: translateX(-50%); /* FIX */

  z-index: 1000;
  transition: 0.35s ease;
}

#Navbar.shrink{
  width: 90%;
  backdrop-filter: blur(6px);
}
#Navbar a{
  color: white;
  text-decoration: none;
}
#Navbar a:hover {
  color: cyan;
  text-decoration: underline;
  transition: 0.8s;

}
/* Branding */
#divclass1 {
  display: flex;
  align-items: center;
  gap: 5px;   /* logo text spacing */
}

#h3id1 { color: cyan; font-size: 22px; }
#h3id2 { color: magenta; font-size: 22px; }

/* Center Menu */
#divclass2 {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Right buttons */
#divclass3 {
  display: flex;
  align-items: center;
  gap: 15px;
}

#buttonid1 {
  background: white;
  border: none;
  border-radius: 30px;
  height: 32px;
  width: 80px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  font-weight: 600;
}

#buttonid1:hover {
  background: cyan;
}

/* Responsive adjustments (same as Login Page) */
@media (max-width: 900px) {
  #Navbar { padding: 0 15px; gap: 10px; }
  #divclass2 { gap: 15px; }
  #Navbar a { font-size: 15px; }
  #buttonid1 { width: 75px; height: 30px; font-size: 13px; }
}

@media (max-width: 600px) {
  #Navbar { padding: 0 12px; height: 50px; }
  #h3id1, #h3id2 { font-size: 18px; }
  #divclass2 { gap: 12px; }
  #Navbar a { font-size: 13px; }
  #buttonid1 { width: 70px; height: 28px; font-size: 12px; }
}

@media (max-width: 400px) {
  #Navbar { padding: 0 10px; height: 48px; }
  #divclass2 { gap: 8px; }
  #Navbar a { font-size: 12px; }
  #h3id1, #h3id2 { font-size: 17px; }
  #buttonid1 { width: 65px; height: 26px; font-size: 11px; }
}

/* fade the entire homepage AFTER zoom */
.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#zoomOverlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg,#0ff,#ff00c8,#002bff);
  background-size: 400% 400%;
  animation: gradient 12s ease infinite;

  opacity: 0;
  transform: scale(1);
  transition: opacity 0.65s ease,
              transform 0.9s cubic-bezier(0.4,0,0.2,1);

  z-index: 99999;
  pointer-events: none;

  display: flex;
  justify-content: center;
  align-items: center;
}


/* LOGO */
#zoomLogo {
  width: 280px;
  max-width: 70vw;
  opacity: 0;
  transform: scale(0.3);
}
#pageWrapper.exit {
  pointer-events: none;
  animation: pageExit 0.95s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity, filter;
}

@keyframes pageExit {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: scale(0.96) translateY(-60px);
    filter: blur(6px);
  }
}

@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);     
  }
  100% {
    opacity: 1;
    transform: scale(1);       
  }
}


