@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background-color: black;
  color: white;
}

.typing-text {
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
}

.typing-text span {
  position: relative;
}

.typing-text span::before {
  content: "software Developer";
  color: rgb(255, 94, 94);
  animation: words 20s infinite;
}

.typing-text span::after {
  content: "";
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  border-left: 3px solid black;
  right: -8;
  animation: cursor 0.6s infinite;
}

@keyframes cursor {
  to {
    border-left: 3px solid rgb(255, 94, 94);
  }
}

@keyframes words {
  0%,
  10% {
    content: "Static Website";
  }
  11%,
  20% {
    content: "Dynamic Website";
  }
  21%,
  30% {
    content: "Web Designing";
  }
  31%,
  40% {
    content: "School website";
  }
  41%,
  50% {
    content: "E-commerce website";
  }
  51%,
  60% {
    content: "Portfolio website";
  }
  61%,
  70% {
    content: "Blog website";
  }
  71%,
  80% {
    content: "Business website";
  }
  81%,
  90% {
    content: "Personal website";
  }
  91%,
  100% {
    content: "Website Maintenance";
  }
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  height: 100vh;
  text-align: left;
  padding: 0 20px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 24px;
  margin-bottom: 20px;
  color: #00e7ff;
}

/* nav bar css
/* Base nav styling */
nav {
  background: #111;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #00e7ff;
}
.wrapper,
.wrapper span {
  pointer-events: none;
}
nav {
  position: relative;
  z-index: 1000;
}

nav .logo {
  color: #00e7ff;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #00e7ff;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff5e5e;
}

/* Hamburger icon hidden by default */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #00e7ff;
  cursor: pointer;
}

/* Responsive styles */
/* Mobile menu behavior */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    color: #00e7ff;
    cursor: pointer;
  }

  /* Hidden by default on mobile */
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: #111;
    border-top: 1px solid #00e7ff;
    padding: 10px 0;
  }

  /* Visible when toggled */
  nav ul.show {
    display: flex;
  }

  nav ul li {
    text-align: center;
    margin: 10px 0;
  }

  nav ul li a {
    font-size: 16px;
  }
}

/* bg effects
     */

.wrapper span {
  position: fixed;
  bottom: -50px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: deepskyblue;
  box-shadow: 0 0 20px 5px #fff;
  animation: ani1 10s linear infinite, ani2 1.5s ease-in-out infinite alternate;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.wrapper span:nth-child(1) {
  left: 0;
  animation-delay: 0.6s;
}
.wrapper span:nth-child(2) {
  left: 10%;
  animation-delay: 3s;
  background: red;
}
.wrapper span:nth-child(3) {
  left: 20%;
  animation-delay: 2s;
}
.wrapper span:nth-child(4) {
  left: 30%;
  animation-delay: 5s;
  background: yellow;
}
.wrapper span:nth-child(5) {
  left: 40%;
  animation-delay: 1s;
}
.wrapper span:nth-child(6) {
  left: 50%;
  animation-delay: 7s;
  background: pink;
}
.wrapper span:nth-child(7) {
  left: 60%;
  animation-delay: 6s;
}
.wrapper span:nth-child(8) {
  left: 70%;
  animation-delay: 8s;
  background: red;
}
.wrapper span:nth-child(9) {
  left: 80%;
  animation-delay: 6s;
}
.wrapper span:nth-child(10) {
  left: 90%;
  animation-delay: 4s;
  background: yellow;
}
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.content h2 {
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  text-align: center;
  line-height: 0.9;
}
.content h2 b {
  -webkit-text-fill-color: transparent;
  font-size: 65px;
}
@keyframes ani1 {
  0% {
    bottom: 0;
    margin-left: 90px;
    margin-right: 0;
  }
  20% {
    bottom: 20%;
    margin-left: 0;
    margin-right: 90px;
  }
  40% {
    bottom: 40%;
    margin-left: 90px;
    margin-right: 0;
  }
  60% {
    bottom: 60%;
    margin-left: 0;
    margin-right: 90px;
  }
  80% {
    bottom: 80%;
    margin-left: 90px;
    margin-right: 0;
  }
  100% {
    bottom: 100%;
    margin-left: 0;
    margin-right: 90px;
  }
}

@keyframes ani2 {
  from {
    box-shadow: 0 0 20px 5px #fff;
  }
  to {
    box-shadow: 0 0 40px 10px #00fafa;
  }
}

/* our service */
/* Neon services section — tweak variables for your brand */
:root {
  --bg: #0a0b10;
  --text: #e6e9ef;
  --muted: #a9afc7;
  --accent: #00e7ff; /* primary neon color */
  --accent-2: #ff3d75; /* secondary accent for gradients */
  --card: #121522;
  --radius: 16px;
  --glow: 0 0 24px rgba(0, 231, 255, 0.35);
}

body {
  background: var(--bg);
  color: var(--text);
}

.our-services {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 5vw, 64px);
  position: relative;
}

/* Gradient title with subtle underline flare */
.services-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}
.services-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 16px);
  max-width: 720px;
}

/* Responsive grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(24px, 4vw, 40px);
}
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

/* Card with glass + neon border */
.service-card {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.01)
      )
      border-box,
    radial-gradient(
        120% 120% at 100% 0%,
        rgba(0, 231, 255, 0.14),
        transparent 60%
      )
      border-box;
  border: 1px solid rgba(0, 231, 255, 0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 240ms ease, box-shadow 240ms ease,
    border-color 240ms ease;
  overflow: hidden;
}

/* Electric edge highlight */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 231, 255, 0.25),
    transparent
  );
  opacity: 0;
  transform: translateX(-20%);
  transition: transform 280ms ease, opacity 280ms ease;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 231, 255, 0.55);
  box-shadow: var(--glow), 0 14px 36px rgba(0, 0, 0, 0.5);
}
.service-card:hover::before {
  opacity: 1;
  transform: translateX(0%);
}

/* Icon styling */
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  color: #061014;
  background: radial-gradient(
    100% 100% at 50% 0%,
    var(--accent),
    var(--accent-2)
  );
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4), var(--glow);
  margin-bottom: 14px;
  font-size: 24px;
}

/* Text hierarchy */
.service-card h3 {
  margin: 6px 0 8px;
  font-size: clamp(18px, 2.6vw, 22px);
  color: var(--text);
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

/* Subtle entrance animation */
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card {
  opacity: 0;
  animation: cardIn 500ms ease forwards;
}
.service-card:nth-child(1) {
  animation-delay: 80ms;
}
.service-card:nth-child(2) {
  animation-delay: 160ms;
}
.service-card:nth-child(3) {
  animation-delay: 240ms;
}

/* Optional focus states for accessibility */
.service-card:focus-within,
.service-card:focus {
  outline: 2px solid rgba(0, 231, 255, 0.6);
  outline-offset: 2px;
}

/* clint feedback section css */

:root {
  --accent: #00e7ff;
  --accent-2: #ff3d75;
  --bg: #0a0b10;
  --text: #e6e9ef;
  --muted: #a9afc7;
  --card: #121522;
}

.ourfeedbacks {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 5vw, 64px);
  background: var(--bg);
  color: var(--text);
}

.feedbacks-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feedbacks-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.feedbacks-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .feedbacks-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .feedbacks-container {
    grid-template-columns: 1fr;
  }
}

.feedback-card {
  background: var(--card);
  border: 1px solid rgba(0, 231, 255, 0.25);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 231, 255, 0.35);
}

.feedback-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.feedback-content h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}
.feedback-content .role {
  margin: 2px 0 8px;
  font-size: 14px;
  color: var(--muted);
}
.feedback-content .quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

/* 
about +TEAM */
:root {
  --accent: #00e7ff;
  --accent-2: #ff3d75;
  --bg: #0a0b10;
  --text: #e6e9ef;
  --muted: #a9afc7;
  --card: #121522;
}

.about-team {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 5vw, 64px);
  background: var(--bg);
  color: var(--text);
}

.about-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  max-width: 720px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

.about-story h3,
.team-container h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent);
  position: relative;
}
.about-story p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--card);
  border: 1px solid rgba(0, 231, 255, 0.25);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
  -webkit-transition: transform 240ms ease, box-shadow 240ms ease;
  -moz-transition: transform 240ms ease, box-shadow 240ms ease;
  -ms-transition: transform 240ms ease, box-shadow 240ms ease;
  -o-transition: transform 240ms ease, box-shadow 240ms ease;
  position: relative;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 231, 255, 0.35);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 12px;
  position: relative;
}

.team-card h4 {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}
.team-card .role {
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 8px;
}
.team-card .bio {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.ceo {
  position: relative;
  top: -350px;
}

.ceo h1 {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 10px;
}

.ceo p {
  font-size: small;
  color: var(--muted);
}

.ceo-social h4 {
  color: var(--accent);
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s, text-shadow 0.3s;
  margin-top: 20px;
}
/* price */

.pricing {
  text-align: center;
  padding: 60px 20px;
}

.pricing h1 {
  font-size: 3rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  gap: 45px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: #111;
  border: 2px solid #0ff;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 0 15px #0ff, inset 0 0 10px #0ff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #f0f, inset 0 0 15px #0ff;
}

.price {
  font-size: 2rem;
  color: #f0f;
  text-shadow: 0 0 10px #f0f, 0 0 20px #f0f;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card li {
  margin: 10px 0;
  color: #ccc;
  font-size: 25px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #0ff;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #f0f;
  color: #fff;
  box-shadow: 0 0 15px #f0f, 0 0 30px #f0f;
}

.highlight {
  border-color: #f0f;
  box-shadow: 0 0 20px #f0f, inset 0 0 10px #f0f;
}
.pricing-card ul {
  list-style: none; /* remove default bullets */
  padding: 0;
}

.pricing-card li {
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
}

.pricing-card li::before {
  content: "●"; /* big dot */
  position: absolute;
  left: 0;
  color: #0ff; /* neon cyan */
  font-size: 1.6rem; /* size of dot */
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
/* contact */
.contact {
  margin-top: 250px;
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 4rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  margin-bottom: 10px;
  position: relative;
  top: -120px;
}

.contact p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 25px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: #111;
  border: 2px solid #0ff;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-size: 2rem;
  outline: none;
  box-shadow: 0 0 10px #0ff, inset 0 0 5px #0ff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f0f;
  box-shadow: 0 0 15px #f0f, inset 0 0 8px #f0f;
}

.contact-form button {
  background: #0ff;
  color: #111;
  font-weight: bolder;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  transition: background 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
  background: #f0f;
  color: #fff;
  box-shadow: 0 0 20px #f0f, 0 0 40px #f0f;
}

/* responsive design */
/* Tablet adjustments */
@media (max-width: 992px) {
  /* Services */
  .services-head h2 {
    font-size: 32px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }

  /* Feedbacks */
  .feedback-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feedback-avatar img {
    width: 50px;
    height: 50px;
  }

  /* About */
  .about-story p {
    font-size: 18px;
  }
  .team-card img {
    width: 100px;
    height: 100px;
  }
  .ceo {
    position: relative;
    top: 80px;
    margin: 20px;
  }
  /* Pricing */
  .pricing-grid {
    gap: 25px;
  }
  .pricing-card {
    width: 240px;
  }

  /* Contact */
  .contact h2 {
    font-size: 3rem;
    top: -80px;
  }
  .contact p {
    font-size: 20px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1.6rem;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  /* Services */
  .services-head h2 {
    font-size: 26px;
    text-align: center;
  }
  .services-sub {
    font-size: 14px;
    text-align: center;
  }
  .services-container {
    grid-template-columns: 1fr;
  }

  /* Feedbacks */
  .feedbacks-head h2 {
    font-size: 26px;
    text-align: center;
  }
  .feedbacks-sub {
    text-align: center;
  }
  .feedbacks-container {
    grid-template-columns: 1fr;
  }
  .feedback-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* About */
  .about-head h2 {
    font-size: 26px;
    text-align: center;
  }
  .about-sub {
    text-align: center;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing h1 {
    font-size: 2.2rem;
  }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .pricing-card {
    width: 100%;
    max-width: 320px;
  }
  .pricing-card li {
    font-size: 18px;
  }

  /* Contact */
  .contact {
    margin-top: 100px;
    padding: 40px 15px;
  }
  .contact h2 {
    font-size: 2.5rem;
    top: -40px;
  }
  .contact p {
    font-size: 16px;
  }
  .contact-form {
    width: 100%;
    padding: 0 10px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1.4rem;
    width: 100%;
  }
  .contact-form button {
    font-size: 1.4rem;
    padding: 10px;
  }
}

/* nav+hero */
/* Tablet adjustments */
@media (max-width: 992px) {
  /* NAV */
  nav {
    padding: 10px;
  }
  nav .logo {
    font-size: 18px;
  }
  nav ul {
    gap: 12px;
  }
  nav ul li a {
    font-size: 16px;
  }

  /* HERO */
  .hero {
    padding: 0 15px;
  }
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 20px;
  }
  .typing-text {
    font-size: 26px;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  /* NAV */
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav .logo {
    font-size: 16px;
    margin-bottom: 10px;
  }
  nav ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  nav ul li a {
    font-size: 14px;
  }

  /* HERO */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* center content */
    height: 100vh;
    text-align: center;
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .typing-text {
    font-size: 20px;
  }
}
/* footer */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 40px 20px;
  border-top: 2px solid #0ff;
  box-shadow: 0 -5px 20px #0ff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-about h3 {
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  margin-bottom: 10px;
}

.footer-about p {
  max-width: 300px;
  color: #ccc;
  font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
  color: #f0f;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #f0f;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #0ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f0f;
  text-shadow: 0 0 10px #f0f;
}

.social-icons a {
  color: #0ff;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s, text-shadow 0.3s;
}

.social-icons a:hover {
  color: #f0f;
  text-shadow: 0 0 10px #f0f, 0 0 20px #f0f;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px #0ff);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .logo-img {
    height: 32px;
  }
}

.img1 {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* center vertically if hero has height */
  margin-top: -50px; /* adjust spacing if needed */
}

.img1 img {
  max-width: 100%; /* scale down on small screens */
  height: auto; /* keep aspect ratio */
  width: 280px; /* default size on desktop */
}

/* Tablet */
@media (max-width: 992px) {
  .img1 img {
    width: 200px; /* smaller logo */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .img1 {
    margin-top: 0; /* remove negative offset */
  }
  .img1 img {
    width: 150px; /* even smaller logo */
  }
}
/* feedback */
