html {
  scroll-behavior: smooth;
}


:root {
  --electric-blue: #007FFF;
  --dark-bg: #000;
  --glass-bg: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  background: var(--dark-bg);
  color: #fff;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--electric-blue);
  font-size: 1.5rem;
  font-weight: 700;
}

#logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height:3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

/* Mobile Nav */
.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.4s ease;
    z-index: 999;
  }

  .nav-links.show {
    top: 0;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 20px 0;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: var(--electric-blue);
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
}

/* Header */
header {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--electric-blue);
  text-align: center;
  z-index: 10;
  animation: fadeInDown 1.5s ease;
}

@keyframes fadeInDown {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}




.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 28px;
  background: white;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}




.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #007FFF;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #007FFF;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}




.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.4s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  gap: 25px;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    transition: top 0.4s ease;
    z-index: 999;
  }

  .nav-links.show {
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
  }

  .nav-links a:hover {
    color: var(--electric-blue);
  }
}


.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--electric-blue);
  text-align: center;
  z-index: 10;
  font-weight: bold;
  min-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--electric-blue);
  animation: blinkCursor 0.8s steps(1) infinite;
}

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





#about {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#about h2 {
  font-size: 2rem;
  color: var(--electric-blue);
  margin-bottom: 40px;
  font-weight: 700;
}

.about-img-container {
  max-width: 1000px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 127, 255, 0.2);
}

.about-img-container img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

#about p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #ccc;
}



/* Initial hidden state */
.animate-top,
.animate-left,
.animate-right {
  opacity: 0;
  transition: all 1s ease;
  position: relative;
}

.animate-top {
  top: -50px;
}

.animate-left {
  left: -60px;
}

.animate-right {
  right: -60px;
}

.animate-top.visible,
.animate-left.visible,
.animate-right.visible {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
}




html, body {
  max-width: 100%;
  overflow-x: hidden;
}





#services {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom right, #0a0a0a, #121212);
}

#services h2 {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 50px;
  font-weight: 700;
  animation: slideFromTop 1s ease;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 127, 255, 0.05);
  margin: 20px auto;
  max-width: 600px;
  padding: 20px 30px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease;
}

.service-item i {
  font-size: 1.8rem;
  color: var(--electric-blue);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 127, 255, 0.2);
}

/* Animations */
@keyframes slideFromTop {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}



@media (max-width: 480px) {
  .service-item {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .service-item i {
    font-size: 1.5rem;
  }
}




#team {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #0a0a0a, #101820);
}

#team h2 {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 50px;
  font-weight: 700;
  animation: slideFromTop 1s ease;
}

.team-member {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 127, 255, 0.08);
  color: #fff;
  animation: fadeInUp 1.2s ease;
}

.ceo-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid var(--electric-blue);
}

.team-member h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 10px;
}

/* Animations */
@keyframes slideFromTop {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}



#reviews {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

#reviews h2 {
  color: var(--electric-blue);
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.reviews-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto 30px;
}

.review-item {
  display: none;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 127, 255, 0.08);
  font-style: italic;
  color: #ccc;
  transition: all 0.3s ease;
}

.review-item.active {
  display: block;
}

.review-item blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.review-item footer {
  margin-top: 20px;
  font-weight: bold;
  font-style: normal;
  color: #fff;
}

.review-controls {
  margin: 20px 0;
}

.review-controls button {
  background: none;
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
}

.review-controls button:hover {
  background: var(--electric-blue);
  color: #000;
}

/* Floating Labels */
.form-group {
  position: relative;
  margin: 25px auto;
  max-width: 600px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--electric-blue);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 0.9rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
  background: #000;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  color: #00ffff;
}


#reviews {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

#reviews h2 {
  color: var(--electric-blue);
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.reviews-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto 30px;
}

.review-item {
  display: none;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 127, 255, 0.08);
  font-style: italic;
  color: #ccc;
  transition: all 0.3s ease;
}

.review-item.active {
  display: block;
}

.review-item blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.review-item footer {
  margin-top: 20px;
  font-weight: bold;
  font-style: normal;
  color: #fff;
}

.review-controls {
  margin: 20px 0;
}

.review-controls button {
  background: none;
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
}

.review-controls button:hover {
  background: var(--electric-blue);
  color: #000;
}

/* Floating Labels */
.form-group {
  position: relative;
  margin: 25px auto;
  max-width: 600px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--electric-blue);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 0.9rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
  background: #000;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  color: #00ffff;
}



/* Floating Labels */
.form-group {
  position: relative;
  margin: 25px auto;
  max-width: 600px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--electric-blue);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-group placeholder {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 0.9rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
  background: #000;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  color: #00ffff;
}



button[type="submit"] {
  background: var(--electric-blue);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #00ffff;
  color: #000;
}


.form-group {
  position: relative;
  margin: 25px auto;
  max-width: 600px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--electric-blue);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 0.9rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
  background: #000;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  color: #00ffff;
}

#submit-btn {
  background: var(--electric-blue);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

#submit-btn:hover {
  background: #00bfff;
}

.review-author {
  font-weight: normal;
  font-size: 0.95rem;
  color: #ccc;
}

.success-msg {
  color: lightgreen;
  margin-top: 10px;
}




#why-us {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

#why-us h2 {
  color: var(--electric-blue);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--electric-blue);
  padding: 25px 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 127, 255, 0.15);
}

.faq-item h3 {
  color: #00ffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Optional responsive tweaks */
@media (max-width: 600px) {
  .faq-item {
    padding: 20px;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }
}



#contact {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

#contact h2 {
  font-size: 2.2rem;
  color: var(--electric-blue);
  margin-bottom: 30px;
}

.social-links .icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.social-links a {
  color: #fff;
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-6px);
  color: var(--electric-blue);
}

form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

input, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--electric-blue);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

label {
  position: absolute;
  top: 14px;
  left: 20px;
  color: #aaa;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s ease;
  background: #000;
  padding: 0 5px;
}

input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 15px;
  font-size: 0.75rem;
  color: var(--electric-blue);
}

form button {
  background: var(--electric-blue);
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s ease;
}

form button:hover {
  background: #005bb5;
}

/* Confirmation Message */
#formMessage {
  color: #00ffcc;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}






/* === Footer Styling === */
#footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Orbitron', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-about h3 {
  font-size: 1.5rem;
  color: #007FFF;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  color: #007FFF;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007FFF;
}

.footer-icons {
  display: flex;
  justify-content: center;  /* Center align the social icons */
  align-items: center;      /* Vertically center the icons */
  gap: 15px;
}

.footer-icons a {
  color: #ccc;
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icons a:hover {
  transform: translateY(-3px);
  color: #007FFF;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  font-size: 0.85rem;
  color: #888;
}

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



.review-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.review-nav button {
  padding: 12px 30px;
  border: none;
  background-color: #007FFF; /* Electric Blue */
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 12px; /* Rounded but not fully rounded, resembling Mini Militia button */
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 127, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-nav button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 127, 255, 0.6);
}

.review-nav button:focus {
  outline: none;
}


#home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the 0.4 for lighter/darker */
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #007FFF;
  z-index: 2;
  text-align: center;
  font-size: 2rem;
}







.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.project-card {
  position: relative;
  width: 300px; /* moderate width */
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 0.7rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  color: #007fff;
  z-index: 2;
  text-align: left;
  font-size: 0.9rem;
}




.view-project {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-project:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}



#formMessage {
  position: relative;
  background-color: #007fff; /* Purple brand color */
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 10px;
  display: none; /* initially hidden */
  z-index: 1;
}

#formMessage.slide-message {
  display: block;
}

#formMessage.error {
  background-color: #ff3b3b;
}