@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

.body-bg {
  background-color: #222 !important;
  margin: 0px !important;
  color: #ddd;
  font-family: "Inter", sans-serif;
  padding: 0;
}

:root {
  --color-one: #cc66ff;
  --color-two: #66ccff;
  --color-three: #222222;
  --color-four: #333333;
  --color-five: #444444;
  --text-one: #ffffff;
  --text-two: #C9C9C9;
}

.container {
  flex: 1;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
}

.inner-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
  background-color: #222;
}

.screen {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
}

.screen-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 90vh;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #444;
}

.content {
  display: flex;
  flex-direction: column;
  overflow-y: visible;
  max-height: none;
  width: 98%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 10px;
}

.top-banner {
  flex: 1;
  display: flex;
  flex-direction: row;
  width: 90%;
  /* height: 8%; */
  max-height: 68.72px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.top-banner-text {
  color: #cc66ff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: bold;
  padding-right: 20px;
}

.top-banner-icon {
  color: #cc66ff;
  padding-right: 4px;
}

.logo {
  height: 80%;
  max-height: 68.72px;
}

/* .content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 100%;
  width: 98%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 10px;
  scrollbar-width: auto;
  scrollbar-color: #cc66ff #222;
} */

.content::-webkit-scrollbar {
  width: 8px;
}

.content::-webkit-scrollbar-track {
  background: #222;
  border-radius: 20px;
}

.content::-webkit-scrollbar-thumb {
  background: #cc66ff;
  border-radius: 20px;
}

.content::-webkit-scrollbar-thumb:hover {
  background: #d582fe;
}

.content h1 {
  color: #ccc;
  font-size: 24px;
  font-weight: bold;
  margin-left: 30px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.content h2 {
  color: #c9c9c9;
  font-size: 18px;
  font-weight: normal;
  margin-left: 30px;
  margin-bottom: 10px;
  margin-top: 0px !important;
}

.content p {
  margin-bottom: 15px;
  margin-left: 20px;
}

.content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.content li {
  margin-bottom: 8px;
}

.contact-link {
  color: #cc66ff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* BLOG GRID STYLES */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 95%;
  margin: 30px auto;
}

.blog-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-content a {
  color: #cc66ff;
  font-size: 18px;
  margin: 0 0 10px 0;
  text-decoration: none;
}

.blog-content a:hover {
  color: #d582fe;
}

.blog-content p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.blog-date {
  color: #ccc;
  font-size: 12px;
  font-weight: bold;
  margin-left: 0px !important;
}

.read-more {
  color: #cc66ff;
  font-size: 14px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  margin-top: 10px !important;
  margin-right: 4px !important;
  align-self: flex-start !important;
}

.read-more:hover {
  color: #d582fe !important;
}




/* Footer */
.footer {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 0px 0rem 0px;
  background: var(--color-four);
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
}

.footer-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 15px;
}

.footer-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-two);
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--color-one);
}

.f-con-link {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 30px;
}

.f-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--text-one);
  transition: 0.2s;
}

.f-social a i {
  color: var(--text-one);
}

.f-social a:hover {
  border-color: var(--color-one);
  background: var(--color-one);
  color: var(--text-one);
}

.f-para {
  width: 80%;
  color: var(--text-two);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 24px;
  margin-bottom: 30px;
}

.footer .contact-form {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--text-two);
  background: var(--color-three);
  border-radius: 10px;
  padding: 20px;
}

.contact-form h3 {
  color: var(--text-one);
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 18px;
  border: 1px solid var(--text-two);
  margin-bottom: 10px;
  background: var(--color-four);
  color: var(--text-one);
}

.contact-form button {
  width: 100%;
  background: var(--text-one);
  color: var(--color-three);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 10px;
  margin-top: 10px;
  transition: 0.2s;
}

.contact-form button:hover {
  background: var(--color-one);
}

.footer-note {
  width: 100%;
  background: var(--color-three);
  text-align: center;
  color: var(--text-two) !important;
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 0px;
  padding: 15px 0px;
}

a {
  text-decoration: none;
  color: #cc66ff;
}



@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 750px) {
  .logo {
    max-height: 36px !important;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-content a {
    font-size: 16px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .contact-form h3 {
    text-align: center;
  }
}