:root {
  --primary-color: #8888ff;
  --primary-dark: rgb(108, 108, 192);
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --text-light: #fff;
  --text-dim: #cccccc;
  --nav-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --secondary-color: #6c6cc0;
  --bg-dark: #1a1a1a;
  --card-bg: rgba(35, 35, 47, 0.7);
  --gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
html {
  overscroll-behavior-x: none;
  touch-action: pan-y;
  scroll-behavior: smooth;
}
/* Body */
body {
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background: radial-gradient(
    circle at center,
    #181818 0%,
    #0f0f0f 100%
  ); /* dark with 5% transparency */
  color: white;
  font-family: "Outfit", "Noto Kufi Arabic", sans-serif;
  overflow-x: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* Safari support */
}

.container {
  padding: 10px 5%;
}

/* ---------- Header ---------- */
#header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10000;
  align-items: center;
  background-color: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: auto;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.logo-name {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #8888ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.logo-subtitle {
  font-size: 14px;
  font-family: monospace;
  color: #b0b0b0;
  font-weight: 500;
  margin-top: 2px;
  text-decoration: none;
}
/* Nav Links */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 20px;
  font-weight: 650;
  position: relative;
}
nav ul li a i {
  margin-right: 10px;
}

nav ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #8888ff;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}

nav ul li a:hover {
  color: #ffffff;
}
nav ul li a:hover::after {
  width: 100%;
}
nav ul li a.active {
  color: #ffffff;
}

nav ul li a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary-color);
}

/* ---------- home Section ---------- */
#home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px;
}

.home-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  background-attachment: fixed;
  z-index: 0;
  overflow: hidden;
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -9999;
  pointer-events: none;
}

.floating-icons {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -9998;
  pointer-events: none;
}

.icon {
  position: absolute;
  font-size: 20px;
  color: rgba(136, 136, 255, 0.2);
  animation: floatIcon 10s linear infinite;
  animation-delay: calc(var(--i) * -1s);
  top: calc(var(--i) * 10%);
  left: calc(var(--i) * 10%);
}

.glow {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #8888ff;
  filter: blur(100px);
  position: fixed;
  top: 20%;
  left: 30%;
  animation: float 6s ease-in-out infinite;
  z-index: -9997;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
}

@keyframes floatIcon {
  0% {
    transform: translateY(100vh) scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) scale(1.2);
    opacity: 0;
  }
}

.home-content {
  position: relative;
  max-width: 600px;
  text-align: left;
  z-index: 1;
}

.home-content h1 {
  font-size: 80px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #8888ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(136, 136, 255, 0.6);
}

.home-content p {
  font-size: 21px;
  color: #b0b0b0;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  font-family: monospace;
  border-right: 2px solid #b0b0b0;
  animation: typing 7s steps(23, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 23ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* ---------- About Section ---------- */
#about {
  padding: 80px 0;
  color: #fff;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-col-1 {
  flex-basis: 35%;
}
.about-col-1 img {
  width: 100%;
  border-radius: 15px;
}
.about-col-2 {
  flex-basis: 60%;
}
.sub-title {
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #8888ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(136, 136, 255, 0.6);
}

.tab-titles {
  display: flex;
  margin: 20px 0 40px;
}
.tab-links {
  margin-right: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.tab-links::after {
  content: "";
  width: 0;
  height: 3px;
  background: #8888ff;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}
.tab-links.active-link::after {
  width: 50%;
}
.tab-contents ul li {
  list-style: none;
  margin: 10px 0;
}
.tab-contents ul li span {
  color: #8888ff;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}
.tab-contents ul li img {
  display: inline-flex;
  flex-direction: row;
  margin: 5px;
  width: 35%;
  border-radius: 15px;
  font-size: 14px;
  z-index: 10;
}
.tab-contents {
  display: none;
  z-index: 10;
}

.tab-contents.active-tab {
  display: block;
  z-index: 10;
}
/* ----------------skills---------------- */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  direction: ltr;
  text-align: left;
}
.learn-more-button {
  font-weight: 500;
  display: block;
  margin: 0px auto;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 50px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.5s;
  z-index: 10;
}

.learn-more-button:hover {
  background-color: #6666cc;
}

.skills-section {
  margin: 10px 0;
}

.skills-category {
  margin-bottom: 20px;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
}

.category-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.skill-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.skill-card a {
  position: relative;
  z-index: 11;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 75, 87, 0.1),
    rgba(123, 66, 246, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.skill-card:hover::before {
  opacity: 1;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.skill-card i,
.skill-card img {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}

.skill-card img {
  height: 48px;
  width: auto;
  margin-bottom: 15px;
}

.skill-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 15px 0 10px;
  letter-spacing: 0.2px;
}

.skill-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.colored-icon {
  color: #00a8ff;
}
/* Timeline Sections */
.timeline-container {
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.timeline-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.timeline-date {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* experience/education Section */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.experiences-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.experience-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  margin-bottom: 1%;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(108, 108, 255, 0.15);
}

.experience-header {
  background: rgba(108, 108, 255, 0.1);
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
  line-height: 1.4;
}

.experience-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

.experience-content ul {
  margin: 0px 0;
}

.experience-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  list-style: none;
}
.experience-images {
  margin: 1px 5px;
  text-align: center;
  font-size: 14px;
}
.experience-images img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-content li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Animations */
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

  .timeline-container {
    grid-template-columns: 1fr;
  }
  .experiences-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

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

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .skill-card {
    padding: 20px;
  }

  .skill-card i,
  .skill-card img {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .section {
    font-size: 1.8rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

  .profile-summary p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .category-icon {
    font-size: 1.6rem;
  }
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.skill-card i,
.skill-card img,
.tech-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

.skill-card:hover i,
.skill-card:hover img {
  animation-play-state: paused;
}

/* Icons design */

.skill-card i,
.skill-card img,
.tech-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: none !important;
  padding: 0 !important;
  border-radius: 0;
}

.skill-card i,
.skill-card img,
.tech-icon {
  animation: iconPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(108, 108, 255, 0.2));
}

.skill-card:hover i,
.skill-card:hover img,
.skill-card:hover .tech-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(108, 108, 255, 0.4));
  animation-play-state: paused;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(108, 108, 255, 0.2));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(108, 108, 255, 0.4));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(108, 108, 255, 0.2));
  }
}

@media (max-width: 768px) {
  .skill-card i,
  .skill-card img,
  .tech-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    padding: 10px;
  }
}

/* remove borders */
.tech-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  padding: 0 !important;
  border-radius: 0;
}

/* update animations */
.skill-card:hover .tech-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* update margines */
.section-title,
.section,
.category-title,
.timeline-header h3,
.experience-header h3 {
  text-align: left;
}

/* update margines */
.category-title {
  border-right: none;
  border-left: 4px solid var(--primary-color);
  padding-right: 0;
  padding-left: 15px;
  text-shadow: 0 0 10px rgba(136, 136, 255, 0.6);
}

/* update margines */
.timeline-content ul,
.experience-content ul {
  padding-left: 20px;
  padding-right: 0;
  text-align: left;
}

/* update margines */
.skill-card,
.experience-card,
.timeline-card {
  text-align: left;
}
.skill-card.center {
  text-align: center;
}

/* update margines */
.skill-card i,
.skill-card img,
.tech-icon {
  text-align: center;
}

/* sections styles */
.section {
  border: solid 1.5px var(--primary-color);
  padding: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  margin-bottom: 35px;
  text-align: left;
  text-shadow: 0 0 10px rgba(136, 136, 255, 0.6);
  transition: all 0.3s ease;
}

.section:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    135deg,
    rgba(50, 75, 87, 0.1),
    rgba(123, 66, 246, 0.1)
  );
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #8888ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section i {
  font-size: 1.8rem;
  color: var(--primary-color);
  background: rgba(108, 108, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.section:hover i {
  transform: scale(1.1);
  background: rgba(108, 108, 255, 0.2);
}

/* ---------------projects--------------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 30px;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  direction: ltr;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(108, 108, 255, 0.15);
}

.project-header {
  padding: 10px;
  padding-bottom: 17px;
  margin: 5px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(108, 108, 255, 0.05);
  text-align: left;
}

.project-title-wrapper {
  flex: 1;
}

.project-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  text-align: left;
}

.project-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
}

.project-badges {
  display: flex;
  gap: 0.5rem;
}

.project-badge {
  background: rgba(108, 108, 255, 0.15);
  color: var(--primary-color);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.project-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.project-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
}

.project-details {
  margin-top: auto;
}

.project-details h4 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.project-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 0;
}

.project-details li {
  color: var(--text-dim);
  margin-bottom: 8px;
  padding-left: 20px;
  padding-right: 0;
  position: relative;
}

.project-details li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  right: auto;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  justify-content: flex-start;
}

.tech-tag {
  background: rgba(108, 108, 255, 0.08);
  border: 1px solid rgba(108, 108, 255, 0.2);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.tech-tag:hover {
  background: rgba(108, 108, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .projects-container {
    padding: 80px 1rem 3rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

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

  .project-card {
    max-width: 100%;
  }

  .project-header {
    flex-direction: column;
    text-align: left;
  }

  .project-badges {
    margin-top: 1rem;
  }

  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .project-content {
    text-align: left;
  }
}

/* Animations */
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes nebula-shift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes constellation-move {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(30px);
  }
}

@keyframes particle-move {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-1000px) translateX(100px);
  }
}
.btn {
  display: block;
  margin: 50px auto;
  width: fit-content;
  border: 1px solid #8888ff;
  padding: 14px 50px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.5s;
  z-index: 10;
}

.btn:hover {
  background: #8888ff;
  z-index: 10;
}

/* ---------- Contact Section ---------- */
.contactinfo {
  text-decoration: none;
  color: var(--text-light);
}
.contact-left p:hover {
  text-shadow: 0 0 10px rgba(136, 136, 255, 0.988);
  transform: translateY(-2px);
}
.contact-left {
  flex-basis: 35%;
}
.contact-right {
  flex-basis: 60%;
}
.contact-left p {
  margin-top: 30px;
  font-weight: 550;
  transition: all 0.3s ease;
}
.contact-left p i {
  color: #8888ff;
  margin-right: 15px;
  font-size: 25px;
  transition: all 0.3s ease;
}
.socia-icons a {
  margin-top: 30px;
  z-index: 10;
}
.socia-icons a {
  text-decoration: none;
  font-size: 30px;
  margin-right: 15px;
  color: #ababab;
  display: inline-block;
  transition: transform 0.5s;
  z-index: 10;
}
.socia-icons a:hover {
  color: #8888ff;
  transform: translateY(-5px);
  z-index: 10;
}
.btn.btn2 {
  display: inline-block;
  background: #8888ff;
  z-index: 10;
}
.btn.btn2:hover {
  background-color: #6666cc;
}

.contact-right {
  width: 100%;
  z-index: 10;
}
form input,
form textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #262626;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  z-index: 10;
}
form .btn2 {
  padding: 14px 60px;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
  z-index: 10;
}
.copyright {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background: #262626;
  font-weight: 300;
  margin-top: 20px;
  backdrop-filter: blur(5px);
  z-index: 10;
}
.copyright i {
  color: #8888ff;
  z-index: 10;
}
/* ---------- Media Queries ---------- */
nav .fas {
  display: none;
}
@media only screen and (max-width: 768px) {
  .logo-name,
  .logo-subtitle {
    display: block;
    align-items: initial;
  }
  #header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-container {
    display: flex;
    align-items: center;
  }
  .logo {
    width: 7%;
    height: auto;
  }
  .logo-name {
    font-size: 15px;
  }
  .logo-subtitle {
    font-size: 10px;
  }
  nav {
    position: relative;
    margin-left: 0;
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  #sidemenu {
    background: var(--bg-dark);
    position: fixed;
    top: 0;
    right: -500px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 11;
    transition: right 0.5s ease;
  }

  #sidemenu.active {
    right: 0;
  }

  nav ul li {
    display: block;
    margin: 25px;
  }

  .home-content h1 {
    font-size: 30px;
  }
  .home-content p {
    font-size: 16px;
  }
  .sub-title {
    font-size: 40px;
  }
  .about-col-1,
  .about-col-2 {
    flex-basis: 100%;
  }
  .about-col-1 {
    margin-bottom: 30px;
  }
  .about-col-2 {
    font-size: 14px;
  }
  .tab-links {
    font-size: 16px;
    margin-right: 20px;
  }
  .contact-left,
  .contact-right {
    flex-basis: 100%;
  }
  .copyright {
    font-size: 14px;
  }
}
