@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap");

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  background: linear-gradient(
    180deg,
    #0b0b0b 0%,
    #0a0a23 25%,
    #0c0c40 50%,
    #0a0a23 75%,
    #0b0b0b 100%
  );
  font-family: "TikTok Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 6% 10px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-name {
  padding-bottom: -3px;
}
/* Logo */
.nav-logo {
  line-height: 3px;
  flex-direction: row;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
}
.nav-logo-content {
  margin-top: 16px;
}
.tagline {
  font-size: 0.84rem;
  display: inline-block;
  padding-top: 9px;
  border-top: 2px solid var(--gold);
}
.nav-logo img {
  height: 55px;
  width: 45%;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1.5rem;
  padding-bottom: 5px;
  z-index: 2;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: #007bff;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  color: #ffff;
  background-color: #00d4ff;
  width: 26px;
  height: 2px;
  transition: 0.4s;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 6%;
    background: var(--bg-secondary);
    flex-direction: column;
    gap: 20px;
    padding: 25px 50px;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.4s ease;
    /* Glassy Background */
    background: rgba(255, 255, 255, 0.1); /* semi-transparent */
    backdrop-filter: blur(12px); /* blur effect */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

    transform: scale(0);
    transform-origin: top right;
    transition:
      transform 0.4s ease,
      background 0.4s ease,
      box-shadow 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: scale(1);
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
header {
  background: url(../images/img-11.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  transition: all 0.2s ease-in-out;
}
.top-content {
  margin-top: -3em;
  position: absolute;
  top: 35%;
  left: 10%;
  color: #fff;
  line-height: 59px;
  transition: all 0.2s ease-in-out;
}
.top-content h3 {
  font-size: 39px;
}
#skillsChanging {
  color: rgb(0, 255, 200);
}
#skillsChanging:hover {
  color: #00ffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff;
}
.top-content h1 {
  font-size: 40px;
  line-height: 1em;
}
.top-content p {
  width: 70%;
  margin-top: 30px;
  line-height: 25px;
  font-size: 22px;
}
.top-links a i {
  font-size: 20px;
  border-radius: 50%;
  margin-left: 12px;
  border: 2px solid #fff6ff;
  color: #fff;
  text-align: center;
  padding: 9px;
  margin-top: 30px;
}
.top-links a i:hover {
  background-color: #fff6ff;
  color: #111;
  font-weight: 400;
  opacity: 80%;
  box-shadow: 0 0 50px 8px rgb(43, 43, 236);
  transition: all 0.2s;
}
.top-btn button {
  background-color: #00ffff;
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ffff;
  transition: 0.3s;
  font-size: 1em;
  transition: all 0.2s ease-in-out;
}
.top-btn button:hover {
  box-shadow: 0 0 35px 0px #00ffff;
  transform: scaleX(1.08);
}

#menuList {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: white;
  transition: all 0.2s ease-in-out;
}

/* about section started */

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  padding: 60px 20px;
  margin: 40px auto;
  max-width: 1200px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about-content {
  flex: 1;
  min-width: 280px;
  padding-top: 1em;
  transition: all 0.2s ease-in-out;
}

.about-pic {
  flex: 1; /* Takes half of the section */
  min-width: 300px;
  max-width: 470px;
  overflow: hidden;
  border-radius: 15px;
}

.about-pic img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-pic img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1; /* Takes the other half */
  min-width: 280px;
  padding-top: 1em;
  color: #fff;
}

.about-content h2 {
  font-size: 35px;
  margin-bottom: 1.3em;
}

.about-content h2 span {
  color: #be1509;
}

.about-content p {
  font-size: 18px;
  margin-bottom: 1em;
}

@media screen and (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about-pic,
  .about-content {
    max-width: 100%;
  }
}

#string {
  height: 200px;
  width: 100%;
  background-color: #ffffff;
}
.contain {
  background-color: #000000;
  height: 100vh;
}

/* Service Section Started */

.service {
  padding: 80px 10%;
  color: #fff;
  text-align: center;
}
.service h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.service h2 span {
  color: #00f0ff;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ========= BASE CARD (Glassy + Glow) ========= */
.service-cards {
  position: relative;
  /* background: rgba(255, 255, 255, 0.06); */
  border-radius: 22px;
  padding: 2em 2em 4em 2em;
  width: 30%;
  text-align: left;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: 0.35s ease;
  will-change: transform, box-shadow, filter;
}

/* ========= Light Sweep ========= */
.service-cards::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -150%;
  width: 250%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  transition: 0.6s ease-out;
}

/* ========= Glow Border ========= */
.service-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 255, 0.4),
    rgba(0, 120, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

/* Hover effects */
.service-cards:hover::after {
  left: 200%;
}
.service-cards:hover::before {
  opacity: 1;
}

/* ========= Floating Idle Effect ========= */
@keyframes floatingCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}
.service-cards {
  animation: floatingCard 6s ease-in-out infinite;
}

/* ========= Particle Background ========= */
.particle-container {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: cyan;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(4px);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(-10vh);
  }
}

/* ========= Magnetic Cursor ========= */
#magCursor {
  position: fixed;
  width: 25px;
  height: 25px;
  background: rgba(0, 255, 255, 0.4);
  border: 2px solid #00ffff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.15s ease-out;
  z-index: 9999;
}

.service-cards h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00f0ff;
}

.service-cards p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e0e0e0;
  margin-bottom: 20px;
}
.service-cards a.read {
  display: inline-block;
  padding: 10px 20px;
  background: #00f0ff;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition:
    background 0.3s,
    color 0.3s;
  position: absolute;
  bottom: 20px;
}

.service-cards a.read:hover {
  background: #fff;
  color: #03292c;
}

/* service section end */

/* projecs section start */

:root {
  --bg-color: #f9f9f9;
  --text-color: #111;
  --overlay-bg: rgba(0, 0, 0, 0.25);
  --button-bg: #007bff;
  --button-color: #fff;
}

body.dark {
  --bg-color: #111;
  --text-color: #f9f9f9;
  --overlay-bg: rgba(255, 255, 255, 0.15);
  --button-bg: #00d4ff;
  --button-color: #111;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Arial", sans-serif;
  transition:
    background-color 0.3s,
    color 0.3s;
}

#theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background: var(--button-bg);
  color: var(--button-color);
  cursor: pointer;
  z-index: 1000;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 80px 20px 20px;
  perspective: 1000px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex: 1 1 auto;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.project:hover {
  transform: scale(1.05) rotateX(3deg) rotateY(3deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.overlay h3 {
  color: var(--text-color);
  margin-bottom: 10px;
  font-size: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.overlay a {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: auto;
  padding: 12px 25px;
  background: var(--button-bg);
  color: var(--button-color);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.project:hover .overlay a {
  opacity: 1;
  transform: translateY(0);
}

/* Masonry size ratios */
.small {
  flex: 1 1 30%;
  height: 200px;
}
.medium {
  flex: 1 1 45%;
  height: 290px;
}
.large {
  flex: 1 1 60%;
  height: 300px;
}
.xlarge {
  flex: 1 1 100%;
  height: 350px;
}

/* skills section start */

.skills {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 80px 20px;
  margin-top: 5em;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #e6e6e6;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

.category-title {
  font-size: 2.3rem;
  margin: 40px 0 20px 0;
  color: #00d4ff;
  transition: all 0.2s ease-in-out;
}
.category-title span {
  color: white;
}
.category-title-graphic {
  color: #00d4ff;
  font-size: 2.3rem;
  margin: 180px 0 0px 0;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.skill-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 180px;
  padding: 25px 20px;
  text-align: center;
  margin-top: 2em;
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    background 0.4s;
  cursor: pointer;
}

.skill-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #4caf50, #00bcd4, #ff4081);
  color: #fff;
}

.icon-wrap {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.skill-card:hover .icon-wrap {
  transform: scale(1.2) rotate(10deg);
}

.skill-card img {
  width: 100%;
}

.skill-card h4 {
  margin-bottom: 10px;
  color: inherit;
}

.skill-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.skill-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff4081, #00bcd4, #4caf50);
  border-radius: 10px;
  transition: width 1.5s;
}

.percent {
  font-weight: bold;
  color: inherit;
}

/* testimonials section start */

.testimonials {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 100px auto;
  padding: 50px 20px;
  background: #f9f9f9;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.testimonials h2 {
  text-align: center;
  font-size: 2.2em;
  font-weight: bolder;
  color: #19d6d6;
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.testimonial-card {
  display: none;
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.review {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-style: italic;
  color: #eeeeee;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.profile h4 {
  margin: 0;
  font-size: 1rem;
  color: #111;
}

.profile span {
  font-size: 0.85rem;
  color: #777;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.t-btn {
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.t-btn:hover {
  color: #007bff;
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #007bff;
  transform: scale(1.3);
}
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonial-wrapper,
.testimonial-card,
.testimonial-controls {
  position: relative;
  z-index: 1;
}

/* ===== Platforms Section ===== */
.platforms {
  padding: 80px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  margin: 50px auto;
  max-width: 1200px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
}

.platforms h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00f0ff;
  animation: fadeInUp 1s ease forwards;
}

.platforms p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #aaa;
  animation: fadeInUp 1.2s ease forwards;
}

.platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.platform-icons a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 1.8rem;
  border-radius: 20px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  color: #fff;
}

.platform-icons a:hover {
  transform: translateY(-10px) rotateY(10deg) scale(1.1);
  box-shadow:
    0 8px 25px rgba(0, 255, 255, 0.5),
    0 0 50px rgba(0, 255, 255, 0.2);
  color: #00f0ff;
}

.platform-icons a i {
  transition:
    transform 0.4s,
    color 0.4s;
}

.platform-icons a:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #00f0ff;
}

/* ===== Fade In Animation ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .platform-icons a {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
  }
}

/* contact section start */

/* ===== Container ===== */
.contact-section.luxury {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  position: relative;
}

.contact-container {
  max-width: 1100px;
  width: 90%;
  display: flex;
  gap: 60px;
  padding: 50px;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.contact-container:hover {
  transform: rotateY(8deg) rotateX(5deg);
}

/* ===== Left Info ===== */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.contact-info .subtitle {
  opacity: 0.75;
  font-size: 16px;
  max-width: 280px;
  color: #ccc;
}

/* ===== Social Icons ===== */
.social-icons {
  display: flex;
  gap: 15px;
  position: relative;
}
.social-icons .icon {
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  transition: 0.2s;
  box-shadow: 0 0 10px #00ffff55;
  position: relative;
  overflow: hidden;
}
.social-icons .icon:hover {
  transform: translateY(-12px) rotate(8deg) scale(1.15);
  box-shadow:
    0 0 20px #00ffff,
    0 0 35px #00ffff55;
}

/* ===== Input Fields ===== */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.input-field {
  position: relative;
}
.input-field input,
.input-field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 15px;
  border: none;
  background: rgba(20, 20, 20, 0.85);
  color: #0ff;
  outline: none;
  font-size: 16px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0 10px #00fff0 inset;
}
.input-field textarea {
  height: 130px;
  resize: none;
}
.input-field label {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(0, 255, 255, 0.6);
  pointer-events: none;
  transition: 0.3s;
  z-index: 2;
}
.input-field input:focus,
.input-field textarea:focus {
  box-shadow: 0 0 14px #00fff0 inset;
}

/* ===== Input Ripple Canvas ===== */
.input-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 15px;
}

/* ===== Button ===== */
.send-btn {
  width: 200px;
  padding: 16px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(90deg, #00ffea, #ff00ff, #00ffea, #ff00ff);
  background-size: 300% 100%;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.send-btn:hover {
  transform: translateY(-6px) rotate(-2deg) scale(1.05);
  box-shadow:
    0 0 20px #0ff,
    0 0 40px #ff00ff;
}

/* ===== Button Canvas for ripple ===== */
.btn-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 15px;
}

/* watermark section start */

#watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: bold;
  font-family: "Arial", sans-serif;
  pointer-events: none;
  z-index: 9999;
  user-select: none;
  transition: transform 0.5s ease;
}

.contact-details {
  margin: 20px 0 30px;
}

.contact-details .detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-details i {
  font-size: 1.3rem;
  color: #00bcd4;
}
.contact-details .detail span {
  color: #e0e0e0;
}
