@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}
.no-scroll {
  overflow: hidden;
}
body,
header,
h1,
h2,
h3,
p,
a,
span {
  text-shadow: 0 0 4px rgba(64, 255, 0, 0.3), 0 0 8px rgba(0, 166, 255, 0.2) !important;
}
.download-btn i {
  font-size: 18px;
}
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 1rem;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ff0077;
  color: white;
  padding: 10px 50px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #bb7633;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: rgba(15, 12, 41, 0.95);
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
  line-height: 1.5;
}
p {
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
a:-webkit-any-link {
  color: greenyellow;
  cursor: pointer;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
  background: #0a0a0a;
  color: #fff;
  width: 100%;
  overflow-x: hidden;
}
.navbar {
    background: linear-gradient(to right, #304dad, #5676a9, #24243e);
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border-radius: 25px;
}
.logo {
  flex-grow: 1;
}
.logo a {
  font-size: 1.5rem;
  color: #40ff00;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.logo a:hover {
  color: #00a6ff;
  text-shadow: 0px 0px 10px #00a6ff;
}
.nav-container {
  display: flex;
  justify-content: center;
  flex-grow: 2;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: #40ff00;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.nav-links a:hover {
  background-color: #220656;
  border-radius: 25px;
  color: #fff;
  text-shadow: 0px 0px 5px #00a6ff;
}
.contribute-btn {
  background: linear-gradient(45deg,#80b980,#104513);
  padding: 8px 15px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 8px 95px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.contribute-btn:hover {
  background: #00a6ff;
  color: white;
  border-color: #00a6ff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.7);
  transform: scale(1.1);
}
.contribute-btn:active {
  transform: scale(0.95);
}
.search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #40ff00;
  padding: 5px;
  border-radius: 25px;
  background: #f0eaea;
}
.search-bar input {
  background: transparent;
  border: none;
  color: rgba(4, 78, 196);
  padding: 6px 10px;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  width: 150px;
  transition: border 0.3s ease-in-out;
}
.search-bar input::placeholder {
  color: rgba(4, 78, 196);
  font-weight: bolder;
}
.search-bar input:hover,
.search-bar input:focus {
  border-color: #00a6ff;
}
.mobile-nav {
  position: fixed;
  left: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  transition: left 0.4s ease-in-out;
  padding-top: 20px;
  z-index: 1000;
  border-radius: 5px;
}
.mobile-nav.active {
  left: 0;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.mobile-nav ul li {
  padding: 15px;
  text-align: center;
}
.mobile-nav ul li a {
  color: #40ff00;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  transition: all 0.3s ease-in-out;
}
.mobile-nav ul li a:hover {
  color: #00a6ff;
  text-shadow: 0px 0px 5px #00a6ff;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px;
  color: #00a6ff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.close-btn:hover {
  text-shadow: 0 0 10px #00a6ff;
}
.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-right-section {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}
.hamburger-menu {
  font-size: 30px;
  color: #40ff00;
  cursor: pointer;
  display: none;
}
header {
  background: rgba(15, 12, 41, 0.95);
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 2px solid #40ff00;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.4);
}
header h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgba(64, 255, 0, 0.8);
}
header p {
  font-size: 1.2rem;
  color: #00a6ff;
}
@media only screen and (min-width: 200px) {
  .navbar {
    flex-direction: row;
    justify-content: center;
    padding: 40px;
    position: relative;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo a {
    font-size: 1.2rem;
  }
  .nav-container {
    display: none;
  }
  .hamburger-menu {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    width: fit-content;
    transform: translateY(-50%);
  }
  .right-section {
    display: none;
  }
  .mobile-right-section {
    display: flex;
  }
  .search-bar input {
    width: 120px;
  }
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 1rem;
  }
  .mobile-nav {
    width: 250px;
  }
}
@media only screen and (min-width: 320px) {
  .logo a {
    font-size: 1.4rem;
  }
  .navbar {
    flex-direction: row;
    padding: 40px;
  }
  .hamburger-menu {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    width: fit-content;
    transform: translateY(-50%);
  }
  .search-bar input {
    width: 140px;
  }
  .contribute-btn {
    font-size: 0.9rem;
    padding: 7px 12px;
  }
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1.1rem;
  }
  .mobile-nav {
    width: 280px;
  }
}
@media only screen and (min-width: 768px) {
  .navbar {
    flex-direction: row;
    padding: 40px;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburger-menu {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    width: fit-content;
    transform: translateY(-50%);
  }
  .nav-container {
    display: none;
  }
  .right-section {
    display: none;
  }
  .mobile-right-section {
    display: flex;
  }
  .search-bar input {
    width: 160px;
  }
  .contribute-btn {
    font-size: 1rem;
    padding: 8px 14px;
  }
  header h1 {
    font-size: 2.3rem;
  }
  header p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px;
  }
  .logo {
    position: static;
    transform: none;
  }
  .hamburger-menu {
    display: none;
  }
  .nav-container {
    display: flex;
  }
  .right-section {
    display: flex;
  }
  .search-bar input {
    width: 180px;
  }
  .contribute-btn {
    font-size: 1.1rem;
    padding: 10px 18px;
  }
  header h1 {
    font-size: 2.5rem;
  }
  header p {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .navbar {
    padding: 25px 50px;
  }
  .logo a {
    font-size: 1.8rem;
  }
  .search-bar input {
    width: 200px;
  }
  .contribute-btn {
    font-size: 1.2rem;
    padding: 12px 20px;
  }
  header h1 {
    font-size: 3rem;
  }
  header p {
    font-size: 1.5rem;
  }
}
.container {
  max-width: 1300px;
  margin: 50px auto;
  background: rgba(10, 10, 10, 0.9);
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.5);
  border: 2px solid #00a6ff;
  animation: fadeIn 1.2s ease-in-out;
}
.container1 h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #40ff00;
  text-shadow: 0 0 10px #40ff00;
  margin-bottom: 20px;
}
.container1 h3 {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 0 10px #bdbfc0;
  margin-bottom: 20px;
}
.container h1 {
  margin: 15px 0;
  font-size: 2rem;
  color: #00a6ff;
  text-shadow: 0px 0px 10px #00a6ff;
}
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.image-container:hover img {
  filter: blur(3px) brightness(60%);
}
.image-container img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 2px solid #00a6ff;
  box-shadow: 0px 0px 15px #00a6ff;
  transition: 0.3s ease-in-out;
}
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.domain-card {
  background: rgba(20, 20, 50, 0.9);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00a6ff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  text-align: center;
  transition: 0.3s ease-in-out;
}
.domain-card:hover {
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.7);
  transform: scale(1.05);
}
.hover-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: #00ff99;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 80%;
  text-align: center;
}
.image-container:hover .hover-info {
  opacity: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.roadmap-step {
  background: rgba(20, 20, 50, 0.9);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #00a6ff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  transition: 0.3s ease-in-out;
  text-align: left;
  position: relative;
}
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.step-icon {
  font-size: 2rem;
  text-shadow: 0px 0px 10px #40ff00;
}
.duration {
  font-size: 0.9rem;
  color: #00ff99;
  background: rgba(0, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.roadmap-buttons {
  text-align: center;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.button {
  display: inline-block;
  padding: 12px 20px;
  background: #ff0077;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #ff0077;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(255, 0, 119, 0.5);
  text-decoration: none;
  margin-bottom: 5px;
  flex: 1 1 calc(50% - 10px);
  text-align: center;
}
/* Wrapper for download + preview side by side */
.button-group {
  display: flex;
  gap: 10px; /* spacing between buttons */
  justify-content: center; /* keeps them centered */
  margin-bottom: 10px;
}

/* For Know More - centered in next line */
.button-group.single {
  display: flex;
  justify-content: center;
}

.button:hover {
  background: #00a6ff;
  border-color: #00a6ff;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.7);
  transform: scale(1.1);
}
.button.secondary {
  background: transparent;
  border: 2px solid #00a6ff;
  color: #00a6ff;
}
.button.secondary:hover {
  background: #00a6ff;
  color: black;
}
.progress-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  height: 10px;
  margin-top: 10px;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: #40ff00;
  border-radius: 5px;
  text-align: center;
  line-height: 10px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #000;
}
@media only screen and (min-width: 200px) {
  .container {
    padding: 15px;
    margin: 30px auto;
  }
  .container h1 {
    font-size: 1.5rem;
  }
  .image-container img {
    height: 150px;
  }
  .domain-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .button {
    flex: 1 1 100%;
  }
}
@media only screen and (min-width: 320px) {
  .container {
    max-width: 95%;
  }
  .container h1 {
    font-size: 1.7rem;
  }
  .image-container img {
    height: 170px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 80%;
  }
  .container h1 {
    font-size: 2rem;
  }
  .image-container img {
    height: 200px;
  }
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .button {
    flex: 1 1 calc(50% - 10px);
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .container h1 {
    font-size: 2.2rem;
  }
  .domain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .image-container img {
    height: 220px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1300px;
  }
  .container h1 {
    font-size: 2.5rem;
  }
  .image-container img {
    height: 250px;
  }
}
.section {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(36, 36, 62, 0.9);
  border-radius: 8px;
  border: 1px solid #00a6ff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  transition: 0.3s ease-in-out;
}
.section:hover {
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.7);
  transform: scale(1.02);
}
.section-title {
  font-weight: bold;
  font-size: 1.7rem;
  color: #00a6ff;
  text-shadow: 0px 0px 10px #00a6ff;
  margin-bottom: 10px;
}
@media only screen and (min-width: 200px) {
  .section {
    padding: 10px;
    margin-bottom: 15px;
  }
  .section-title {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 320px) {
  .section {
    padding: 12px;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .section {
    padding: 15px;
  }
  .section-title {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section {
    padding: 20px;
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section {
    padding: 25px;
    margin-bottom: 25px;
  }
  .section-title {
    font-size: 2rem;
  }
}
.container1 {
  background: rgba(36, 36, 62, 0.9);
  border-color: rgb(0, 166, 255);
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  border: 1px solid #00a6ff;
  border-image: initial;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  animation: fadeIn 1.2s ease-in-out;
  margin-bottom: 20px;
  padding: 15px;
  transition: 0.3s ease-in-out;
}
.container1:hover {
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.7);
  transform: scale(1.02);
}
.main-title {
  font-size: 2.5rem;
  text-align: center;
  color: #40ff00;
  text-shadow: 0 0 15px #40ff00;
}
.subtitle {
  font-size: 1rem;
  color: #00a6ff;
  text-align: center;
  margin-bottom: 30px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-button {
  padding: 12px 20px;
  background: #ff0077;
  color: white;
  border: 2px solid #ff0077;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(255, 0, 119, 0.5);
  cursor: pointer;
}
.tab-button:hover,
.tab-button.active {
  background: #00a6ff;
  border-color: #00a6ff;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.7);
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.tab-content.active {
  display: block;
}
.blog-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(255, 0, 119, 0.5);
  text-align: center;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 15px;
}
.blog-box:hover {
  box-shadow: 0px 0px 15px rgba(255, 0, 119, 0.7);
  transform: scale(1.05);
}
.domain-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.sub-tab-button {
  padding: 8px 16px;
  background: #00a6ff;
  color: white;
  border: 2px solid #00a6ff;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.5);
  cursor: pointer;
}
.sub-tab-button:hover,
.sub-tab-button.active {
  background: #40ff00;
  border-color: #40ff00;
  box-shadow: 0px 0px 15px rgba(64, 255, 0, 0.7);
}
.sub-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.sub-tab-content.active {
  display: block;
}
.blog-card {
  background: rgba(20, 20, 50, 0.9);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00a6ff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  text-align: center;
  transition: 0.3s ease-in-out;
  max-width: 300px;
  margin: auto;
}
.blog-card:hover {
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.7);
  transform: scale(1.05);
}
.blog-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 2px solid #00a6ff;
  box-shadow: 0px 0px 15px #00a6ff;
  transition: 0.3s ease-in-out;
}
.blog-card:hover img {
  filter: brightness(80%);
}
.blog-card .button {
  display: inline-block;
  padding: 12px 20px;
  background: #ff0077;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid #ff0077;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(255, 0, 119, 0.5);
  text-decoration: none;
  margin-top: 10px;
}
.blog-card .button:hover {
  background: #00a6ff;
  border-color: #00a6ff;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.7);
  transform: scale(1.1);
}
.blog-card .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-card .image-container img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.blog-card .image-container:hover img {
  filter: blur(3px) brightness(60%);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.updates-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.update-card {
  background: rgba(20, 20, 50, 0.9);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00a6ff;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
  transition: 0.3s ease-in-out;
  text-align: center;
}
.update-card h3 {
  color: #40ff00;
  text-shadow: 0 0 10px #40ff00;
  font-size: 1.4rem;
}
.update-card p {
  color: #ffffff;
  margin: 5px 0;
  font-size: 1rem;
}
.update-card:hover {
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.7);
  transform: scale(1.05);
}
.daily-quiz {
  text-align: center;
  margin: 15px 0;
}
@media only screen and (min-width: 200px) {
  .container1 {
    padding: 10px;
    margin-bottom: 15px;
  }
  .main-title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 0.9rem;
  }
  .tabs,
  .domain-tabs {
    flex-direction: column;
    gap: 5px;
  }
  .tab-button,
  .sub-tab-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .updates-container {
    grid-template-columns: 1fr;
  }
  .blog-card {
    max-width: 90%;
  }
}
@media only screen and (min-width: 320px) {
  .container1 {
    padding: 12px;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .tab-button,
  .sub-tab-button {
    font-size: 1rem;
  }
  .updates-container {
    grid-template-columns: 1fr;
  }
  .blog-card {
    max-width: 85%;
  }
}
@media only screen and (min-width: 768px) {
  .container1 {
    padding: 15px;
  }
  .main-title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.1rem;
  }
  .tabs,
  .domain-tabs {
    flex-direction: row;
    gap: 10px;
  }
  .updates-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card {
    max-width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .container1 {
    padding: 20px;
  }
  .main-title {
    font-size: 2.8rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .updates-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card {
    max-width: 350px;
  }
}
@media only screen and (min-width: 1600px) {
  .container1 {
    padding: 25px;
  }
  .main-title {
    font-size: 3rem;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .updates-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-card {
    max-width: 400px;
  }
}
.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
  animation: fadeIn 1s ease-in-out;
}
.platform {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(30, 60, 114, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.platform:hover {
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  box-shadow: 0px 0px 15px rgba(30, 60, 114, 0.7);
  transform: translateY(-5px);
}
.platform-icon {
  font-size: 2.5rem;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
}
.platform h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
.platform p {
  font-size: 1rem;
  opacity: 0.9;
}
.platform .button {
  display: inline-block;
  padding: 10px 15px;
  background: #f1c40f;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 10px;
}
.platform .button:hover {
  background: #e67e22;
  box-shadow: 0px 0px 10px rgba(230, 126, 34, 0.7);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 200px) {
  .platforms {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .platform {
    padding: 15px;
    font-size: 0.9rem;
  }
  .platform h3 {
    font-size: 1.2rem;
  }
  .platform p {
    font-size: 0.9rem;
  }
  .platform .button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 320px) {
  .platforms {
    grid-template-columns: 1fr;
  }
  .platform {
    padding: 18px;
  }
  .platform h3 {
    font-size: 1.3rem;
  }
  .platform p {
    font-size: 1rem;
  }
  .platform .button {
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .platforms {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  .platform {
    padding: 20px;
  }
  .platform h3 {
    font-size: 1.4rem;
  }
  .platform p {
    font-size: 1rem;
  }
  .platform .button {
    padding: 12px 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .platforms {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .platform {
    padding: 25px;
    box-shadow: 0px 0px 12px rgba(30, 60, 114, 0.6);
  }
  .platform h3 {
    font-size: 1.5rem;
  }
  .platform p {
    font-size: 1.1rem;
  }
  .platform .button {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1600px) {
  .platforms {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .platform {
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(30, 60, 114, 0.8);
  }
  .platform h3 {
    font-size: 1.6rem;
  }
  .platform p {
    font-size: 1.2rem;
  }
  .platform .button {
    padding: 14px 20px;
    font-size: 1.1rem;
  }
}
.courses-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.courses-table th {
  border: 2px solid #40ff00;
  padding: 10px;
  font-family: "Orbitron", sans-serif;
  color: rgb(255, 238, 0);
  text-align: center;
  background: #302b63;
  font-weight: bold;
  text-transform: uppercase;
}
.courses-table td {
  border: 2px solid #40ff00;
  padding: 10px;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  color: rgb(255, 255, 255);
}
.courses-table td:hover {
  background: #00a6ff;
  color: black;
}
.courses-table tr:hover {
  background: #00a6ff;
  color: black;
}
.course-type {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.course-type.paid {
  background-color: blue;
  color: white;
}
.course-type.free {
  background-color: blue;
  color: white;
}
.course-type:hover {
  background-color: rgb(0, 255, 0);
  color: black;
}
.resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
  animation: fadeIn 1s ease-in-out;
}
.resource-box {
  background: linear-gradient(135deg, #8e44ad, #732d91);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  transition: 0.3s;
  box-shadow: 0px 0px 10px rgba(142, 68, 173, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.resource-box:hover {
  background: linear-gradient(135deg, #732d91, #5e2475);
  box-shadow: 0px 0px 15px rgba(115, 45, 145, 0.7);
  transform: translateY(-5px);
}
.resource-icon {
  font-size: 2.5rem;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
}
.resource-box h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
.resource-box p {
  font-size: 1rem;
  opacity: 0.9;
}

.resource-box .button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background: #f1c40f;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.resource-box .button:hover {
  background: #e67e22;
  box-shadow: 0px 0px 10px rgba(230, 126, 34, 0.7);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 200px) {
  .courses-table {
    font-size: 12px;
  }
  .courses-table th,
  .courses-table td {
    padding: 6px;
  }
  .course-type {
    font-size: 12px;
    padding: 4px 8px;
  }
  .resources {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
  }
  .resource-box {
    padding: 10px;
  }
  .resource-box h3 {
    font-size: 1.1rem;
  }
  .resource-box p {
    font-size: 0.9rem;
  }
  .resource-box .button {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 320px) {
  .courses-table {
    font-size: 14px;
  }
  .resources {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .resource-box {
    padding: 15px;
  }
  .resource-box h3 {
    font-size: 1.2rem;
  }
  .resource-box p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .courses-table {
    font-size: 16px;
  }
  .courses-table th,
  .courses-table td {
    padding: 10px;
  }
  .course-type {
    font-size: 14px;
    padding: 6px 10px;
  }
  .resources {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  .resource-box {
    padding: 20px;
  }
  .resource-box h3 {
    font-size: 1.4rem;
  }
  .resource-box p {
    font-size: 1.1rem;
  }
  .resource-box .button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .courses-table {
    font-size: 18px;
  }
  .resources {
    grid-template-columns: repeat(3, 1fr);
  }
  .resource-box {
    padding: 25px;
  }
  .resource-box h3 {
    font-size: 1.6rem;
  }
  .resource-box p {
    font-size: 1.2rem;
  }
  .resource-box .button {
    padding: 12px 18px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1600px) {
  .courses-table {
    font-size: 20px;
  }
  .resources {
    grid-template-columns: repeat(4, 1fr);
  }
  .resource-box {
    padding: 30px;
  }
  .resource-box h3 {
    font-size: 1.8rem;
  }
  .resource-box p {
    font-size: 1.3rem;
  }
  .resource-box .button {
    padding: 14px 20px;
    font-size: 18px;
  }
}
footer {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  padding: 50px 20px;
  font-family: "Orbitron", sans-serif;
  position: relative;
  overflow: hidden;
  text-align: center;
}
footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: rgba(0, 255, 255, 0.3);
  filter: blur(100px);
  z-index: 0;
  animation: glow 5s infinite alternate ease-in-out;
}
@keyframes glow {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(20px);
  }
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.footer-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  text-align: center;
}
.footer-column h3 {
  border-bottom: 2px solid #40ff00;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 1.4em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s ease-in-out;
  display: inline-block;
}
.footer-column h3:hover {
  text-decoration: underline;
  color: #00a6ff;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #40ff00;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer-column ul li a:hover {
  color: #00a6ff;
  text-shadow: 0px 0px 5px #00a6ff;
}
.social-media {
  text-align: center;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
.social-icon i {
  font-size: 1.6rem;
  color: #40ff00;
  transition: color 0.3s ease-in-out;
}
.social-icon:hover {
  transform: scale(1.2);
  background: #000000;
  box-shadow: 0px 0px 10px rgba(21, 255, 0, 0.837);
}
.social-icon[title="Facebook"] i {
  color: #3b5998;
}
.social-icon[title="Instagram"] i {
  color: #e1306c;
}
.social-icon[title="Twitter"] i {
  color: #1da1f2;
}
.social-icon[title="GitHub"] i {
  color: #242424;
}
.social-icon[title="LinkedIn"] i {
  color: #0077b5;
}
.social-icon[title="WhatsApp"] i {
  color: #25d366;
}
.footer-column select {
  width: 80%;
  padding: 10px;
  font-size: 1.1em;
  background: #333;
  color: white;
  border: 2px solid #40ff00;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: border 0.3s ease-in-out;
}
.footer-column select:hover {
  border: 2px solid #00a6ff;
}
.footer-column input {
  width: 80%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 2px solid #40ff00;
  background: #111;
  color: white;
  font-size: 1em;
  outline: none;
  text-align: center;
}
.footer-column button {
  background: #40ff00;
  color: black;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.3s;
}
.footer-column button:hover {
  background: #00aeff;
  color: #ffffff;
  font-weight: bold;
  transform: scale(1.1);
}
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid #40ff00;
}
@media only screen and (min-width: 200px) {
  .footer-row {
    flex-direction: column;
    gap: 20px;
  }
  .footer-column {
    min-width: 100%;
    text-align: center;
  }
  .social-icons {
    flex-direction: column;
    gap: 10px;
  }
  .footer-column input,
  .footer-column select,
  .footer-column button {
    width: 100%;
    font-size: 0.9em;
  }
  .social-icon {
    width: 40px;
    height: 40px;
  }
  .social-icon i {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 320px) {
  .footer-row {
    flex-direction: column;
    gap: 25px;
  }
  .footer-column {
    min-width: 100%;
    text-align: center;
  }
  .footer-column h3 {
    font-size: 1.2em;
  }
  .footer-column input,
  .footer-column select,
  .footer-column button {
    width: 90%;
    font-size: 1em;
  }
  .social-icons {
    flex-direction: row;
    gap: 12px;
  }
  .social-icon {
    width: 45px;
    height: 45px;
  }
  .social-icon i {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-column {
    flex: 1;
    min-width: 200px;
    text-align: left;
  }
  .footer-column h3 {
    font-size: 1.3em;
  }
  .footer-column input,
  .footer-column select,
  .footer-column button {
    width: 85%;
    font-size: 1.1em;
  }
  .social-icons {
    justify-content: center;
  }
  .social-icon {
    width: 50px;
    height: 50px;
  }
  .social-icon i {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-container {
    max-width: 1100px;
  }
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-column {
    text-align: left;
  }
  .footer-column h3 {
    font-size: 1.4em;
  }
  .footer-column input,
  .footer-column select,
  .footer-column button {
    width: 80%;
  }
  .social-icons {
    justify-content: center;
  }
  .social-icon {
    width: 55px;
    height: 55px;
  }
  .social-icon i {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1600px) {
  .footer-container {
    max-width: 1300px;
  }
  .footer-row {
    justify-content: space-around;
  }
  .footer-column h3 {
    font-size: 1.5em;
  }
  .footer-column input,
  .footer-column select,
  .footer-column button {
    width: 75%;
  }
  .social-icons {
    gap: 20px;
  }
  .social-icon {
    width: 60px;
    height: 60px;
  }
  .social-icon i {
    font-size: 1.8rem;
  }
}
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #40ff00;
  color: black;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.7);
  transition: 0.3s ease-in-out;
}
#back-to-top:hover {
  background: #00a6ff;
  color: white;
}
#chatbot-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #40ff00;
  border: 2px solid #40ff00;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.8);
  transition: transform 0.3s, background 0.3s;
}
#chatbot-btn:hover {
  background: #40ff00;
  color: #24243e;
  border: 2px solid #302b63;
  transform: scale(1.1);
}
#chatbot-window {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 350px;
  background: #24243e;
  color: white;
  border: 3px solid #40ff00;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
#chatbot-window.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}
.chatbot-body {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 400px;
  padding: 10px;
}
#chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bot-msg,
.user-msg {
  padding: 10px;
  border-radius: 7px;
  margin: 5px 0;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.bot-msg {
  background: #40ff00;
  color: black;
  align-self: flex-start;
  box-shadow: 0px 0px 8px rgba(64, 255, 0, 0.8);
}
.user-msg {
  background: #00a6ff;
  color: white;
  align-self: flex-end;
  box-shadow: 0px 0px 8px rgba(0, 166, 255, 0.8);
}
.chatbot-header {
  padding: 12px;
  background: #40ff00;
  color: black;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}
.close-chatbot {
  background: none;
  border: none;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  color: black;
}
.close-chatbot:hover {
  color: red;
}
.chatbot-input-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
}
.chatbot-body input {
  flex-grow: 1;
  padding: 10px;
  border: 2px solid #40ff00;
  background: black;
  color: white;
  border-radius: 5px;
  outline: none;
  transition: 0.3s;
}
.chatbot-body input:focus {
  border-color: #00a6ff;
}
.chatbot-body button {
  padding: 10px;
  background: #40ff00;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}
.chatbot-body button:hover {
  background: #00a6ff;
  color: white;
}
#voice-btn {
  background: none;
  border: 2px solid #40ff00;
  color: #40ff00;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
#voice-btn:hover {
  background: #40ff00;
  color: black;
}
#chatbot-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px;
  justify-content: center;
}
.category-btn {
  background: #40ff00;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.category-btn:hover {
  background: #00a6ff;
  color: white;
  transform: scale(1.05);
}
#chatbot-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px;
  justify-content: center;
}
.question-btn {
  background: #24243e;
  color: white;
  padding: 10px;
  border: 2px solid #40ff00;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}
.question-btn:hover {
  background: #40ff00;
  color: black;
  transform: scale(1.05);
}
#chatbot-answers {
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #40ff00;
  border-top: 2px solid #40ff00;
  margin: 10px;
  display: none;
}
#chatbot-answers.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 200px) {
  #back-to-top,
  #chatbot-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  #chatbot-window {
    width: 90%;
    left: 5%;
    bottom: 60px;
  }
  .chatbot-header {
    font-size: 1rem;
  }
  .chatbot-body input,
  .chatbot-body button {
    font-size: 0.8rem;
    padding: 8px;
  }
  .bot-msg,
  .user-msg {
    font-size: 0.8rem;
    padding: 8px;
  }
}
@media only screen and (min-width: 320px) {
  #chatbot-window {
    width: 85%;
    left: 7.5%;
    bottom: 70px;
  }
  .chatbot-header {
    font-size: 1.1rem;
  }
  .chatbot-body input,
  .chatbot-body button {
    font-size: 0.9rem;
    padding: 9px;
  }
  .bot-msg,
  .user-msg {
    font-size: 0.9rem;
    padding: 9px;
  }
  #chatbot-categories,
  #chatbot-questions {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) {
  #back-to-top,
  #chatbot-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  #chatbot-window {
    width: 400px;
    left: 20px;
    bottom: 80px;
  }
  .chatbot-body {
    max-height: 500px;
  }
  .chatbot-body input,
  .chatbot-body button {
    font-size: 1rem;
    padding: 10px;
  }
  .bot-msg,
  .user-msg {
    font-size: 1rem;
    padding: 10px;
  }
  #chatbot-categories,
  #chatbot-questions {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1200px) {
  #back-to-top,
  #chatbot-btn {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  #chatbot-window {
    width: 450px;
    left: 30px;
    bottom: 90px;
  }
  .chatbot-body {
    max-height: 550px;
  }
  #chatbot-categories,
  #chatbot-questions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1600px) {
  #back-to-top,
  #chatbot-btn {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  #chatbot-window {
    width: 500px;
    left: 40px;
    bottom: 100px;
  }
  .chatbot-body {
    max-height: 600px;
  }
  #chatbot-categories,
  #chatbot-questions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#previewModal {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  background: white;
  padding: 20px;
  max-width: 80%;
  width: 800px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}
.close-btn {
  margin-top: 10px;
  background: #ff0077;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}
.close-btn:hover {
  background: #e6006f;
}


