
/* font-family: "Syncopate", sans-serif;
  font-family: "Open Sans", sans-serif; */
* {
  box-sizing: border-box;
}
/* ----akhil_krish2025----------- */
body {
  margin: 0;
  overflow: hidden;
  font-family: sans-serif;
  background: radial-gradient(circle, rgb(3, 155, 229) 20%, rgb(1, 51, 75) 120%);
  color: white;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
  flex-direction: row; /* Default: text left, globe right */
}

.left {
  width: 48%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.right canvas {
    width: 800px;
    height: 776px;
}
.left h1 {
  font-size: 60px;
  margin-bottom: 20px;
   font-family: "Open Sans", sans-serif; 
    /* font-family: "Syncopate", sans-serif; */
   font-weight: bold;
}

.left p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 100;
    font-family: "Open Sans", sans-serif; 
}
.left a{
background:#93CF55;
    width: fit-content;
    padding: 10px 27px;
    color: #fff;
    text-decoration: none;
     font-family: "Open Sans", sans-serif; 
    font-size: 18px;
    text-transform: uppercase;
}
.left button {
  background: #ffffff;
  color: #0077a8;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s;
}

.left button:hover {
  background: #e0e0e0;
}

.right {
  flex: 1;
  position: relative;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* 🔻 Responsive layout for small screens (≤ 991px) */
@media (max-width: 991px) {
  .container {
    flex-direction: column; /* Stack vertically */
  }

  .left {
    width: 100%;
    padding: 40px 20px;
    align-items: center;
    text-align: center;
  }

  .right {
    flex: none;
    height: 60vh; /* fixed height for the globe */
  }

  canvas {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
  }
}
