:root {
  --primary: #330eca;
  --primary-light: #6366f1;
  --secondary: #10b981;
  --dark: #111827;
  --light: #f9fafb;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --hero-background: linear-gradient(
    134deg,
    rgba(19, 12, 55, 1) 0%,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 1) 70%,
    rgba(19, 12, 55, 1) 100%
  );
  --service-background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    radial-gradient(
      68% 58% at 50% 50%,
      #2c09aa 10%,
      #2617a8 20%,
      #341a7d 32%,
      #291859 46%,
      #21173c 60%,
      #1b152a 72%,
      #18131f 84%,
      #111014 94%,
      #0a0a0a 100%
    ),
    radial-gradient(
      90% 75% at 50% 50%,
      rgba(98, 42, 228, 0.06) 0%,
      rgba(92, 42, 228, 0) 55%
    ),
    radial-gradient(
      150% 120% at 8% 8%,
      rgba(0, 0, 0, 0) 42%,
      #0b0a0a 82%,
      #070707 100%
    ),
    radial-gradient(
      150% 120% at 92% 92%,
      rgba(0, 0, 0, 0) 42%,
      #0b0a0a 82%,
      #070707 100%
    ),
    radial-gradient(
      60% 50% at 50% 60%,
      rgba(108, 60, 240, 0.06),
      rgba(0, 0, 0, 0) 60%
    ),
    #050505;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --secondShadow: 0px 0px 10px #1111113f;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: #000;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.loading-screen {
  width: 100%;
  height: 100%;
  background: var(--gray-light);
  z-index: 1001;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0px 0px 2px var(--dark);
}

.loading-screen h1 {
  font-size: 1.8rem;
  text-align: center;
  color: var(--dark);
  z-index: 1002;
}

.loading-screen h1 span {
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
}

.nav-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--secondShadow);
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  background: var(--primary);
  color: white;
  box-shadow: 0px 0px 10px var(--dark);
  font-weight: 400;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn:hover {
  background: #2617a8;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border: none;
}

.hireBtn:hover {
  background: transparent;
  border: 2px solid var(--primary);
  -webkit-transform-origin-y: 10px;
}

.project-btn{
  border: 2px solid var(--primary);
  background: transparent;
}

/* Header */
.header {
  position: fixed;
  width: 90%;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hero-background);
  color: var(--light);
  border-radius: 10px;
  border: 1px solid #2b2828;
  box-shadow: 0px 2px 10px var(--dark);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 60%;
}

.header.scrolled .logo {
  display: none;
}

.header.scrolled .getInTouch {
  display: none;
}

.header.scrolled .up-arrow {
  display: block;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--light);
  transition: all 0.3s ease;
  margin-left: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  margin-left: 2rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: #161616;
  padding: 2px 8px;
  border: none;
  border-radius: 5px;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--light);
}

.getInTouch {
  display: flex;
  align-content: center;
  justify-self: center;
  color: var(--light);
  font-weight: 400;
  background-color: #330eca;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 0.8rem;
  box-shadow: 0px 0px 10px var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.up-arrow {
  display: none;
  color: var(--light);
  background: #330eca;
  font-size: 24px;
  padding: 5px 10px;
  border-radius: 10px;
}

.straight-arrow {
  position: relative;
  display: none;
  color: var(--light);
  font-size: 24px;
}

/* Hero Section */
.hero {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-background);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  z-index: 10;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  margin-left: 40px;
}

.emoji {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
  position: fixed;
  margin-left: -40px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-subtitle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--primary);
  bottom: 4px;
  left: 0;
  z-index: -1;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
}

.shape {
  position: absolute;
  z-index: 0;
  opacity: 0.2;
}

.shape-1 {
  top: 10%;
  left: 30%;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  animation: moveUpDown 8s infinite alternate;
}

.shape-2 {
  bottom: 15%;
  left: 60%;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 5px;
  animation: moveRightLeft 12s infinite alternate;
}

.shape-3 {
  top: 20%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 10px;
  transform: rotate(45deg);
  animation: rotate 15s linear infinite;
}

.shape-4 {
  top: 70%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 10px;
  transform: rotate(45deg);
  animation: rotate 15s linear infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

@keyframes moveRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img-main {
  width: 80%;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform: rotateX(0deg) rotateY(0deg);
  box-shadow: var(--shadow);
}

.about-img-main:hover {
  transform: rotateX(15deg) rotateY(15deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-img::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  border: 4px solid var(--primary);
  border-radius: 20px;
  top: -20px;
  left: 20px;
  z-index: -1;
}

.about-content {
  flex: 1;
}

.tick-image {
  display: none;
  width: 20px;
  height: 20px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text {
  margin-bottom: 2rem;
  color: var(--gray);
}

.about-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-item {
  flex: 1;
  min-width: 200px;
}

.info-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.info-text {
  color: var(--gray);
}

.info-text span {
  font-size: 3rem;
  font-weight: 500;
  color: var(--light);
}

/* Services Section */
.services {
  background: var(--service-background);
  opacity: 0.95;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: #000000;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #1d043d;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #1d043d, #2c09aa);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease;
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background: white;
  color: var(--primary);
}

.service-title {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-item:hover .service-title,
.service-item:hover .service-text {
  color: white;
}

.service-text {
  color: var(--gray);
  transition: all 0.3s ease;
}

/* Skills Section */
.skills-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.skill-item {
  text-align: center;
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-10px);
}

.skill-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--dark);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
  background: var(--service-background);
  color: white;
}

.skill-title {
  font-weight: 500;
  color: var(--light);
}

/* Projects Section */
.projects {
  background: var(--service-background);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-item {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-img {
  height: 200px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.project-content {
  padding: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: #161616;
  border-radius: 3px;
  color: var(--gray);
}

.project-title {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: var(--primary-light);
}

.project-link i {
  margin-left: 0.2rem;
  transition: all 0.3s ease;
}

.project-link:hover i {
  transform: translateX(5px);
}

/* Testimonial Section  */

.testimonial-section {
  position: relative;
  background-color: #000000;
  background-image: radial-gradient(at 25% 76%, #000000 0%, transparent 60%),
    radial-gradient(at 40% 39%, #2e0446 0%, transparent 20%),
    radial-gradient(at 22% 20%, #17032e 0%, transparent 20%),
    radial-gradient(at 69% 94%, #20073d 0%, transparent 30%);
}

.testimonial-container {
  margin: 0 auto;
}

.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  margin: 0;
}

.testimonial {
  max-width: 400px;
  max-height: fit-content;
  padding: 1rem;
  background: var(--hero-background);
  border-radius: 10px;
  box-shadow: 0px 0px 10px #20073d;
  margin: 0 auto;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 1rem;
  position: relative;
}

.review-data {
  display: flex;
  align-items: center;
  gap: 10px;
}

.name-role {
  display: flex;
  flex-direction: column;
  line-height: 10px;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.testimonial-role {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Contact Section */

.contact {
  background: var(--service-background);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--hero-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.info-text h4 {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 0.2rem;
}

.info-text p {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--hero-background);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--light);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  color: var(--light);
  background: transparent;
  border: 1px solid var(--gray);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.alertPop {
  position: fixed;
  width: 350px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary);
  background: var(--hero-background);
  border: 1px solid #161616;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #1111117e;
  display: none;
  padding: 10px;
  text-align: center;
  align-content: center;
  z-index: 10;
}

/* Footer */
.footer {
  background: var(--hero-background);
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-logo span {
  color: var(--primary);
}

.footer-text {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Chatbot */
.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 450px;
  background: var(--dark);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 100;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.chatbot-container.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.chatbot-header {
  background: var(--hero-background);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-head img {
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0px 0px 5px #111827;
}
.chatbot-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.chatbot-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bot-message {
  background: #f0f0f0;
  color: var(--dark);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.user-message {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.chatbot-footer {
  padding: 0.8rem;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 0.5rem;
}

.chat-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
}

.chat-input:focus {
  outline: none;
  border-color: var(--primary);
}

.send-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: var(--primary-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .logo {
    display: none;
  }

  .header.scrolled {
    width: 70%;
  }

  .header.scrolled .up-arrow {
    font-size: 20px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-img {
    display: none;
  }

  .about-content {
    text-align: center;
  }

  .about-title {
    font-size: 14px;
    align-self: center;
    font-weight: 300;
    margin-left: 5px;
  }

  .info-item:nth-child(3) {
    display: none;
  }

  .developer-tick {
    display: flex;
    align-items: center;
    justify-self: center;
    background: #161616;
    border-radius: 10px;
    padding: 3px 6px;
  }

  .tick-image {
    display: block;
  }

  .about-subtitle {
    margin-top: 10px;
  }

  .testimonial-name {
    font-size: 14px;
  }
  .form-wrapper {
    max-height: 700px;
    width: 400px;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .header {
    width: 100%;
    top: 0;
  }

  .header.scrolled {
    top: 2%;
    width: 60%;
  }

  .nav-links {
    position: fixed;
    top: 10%;
    right: -150%;
    width: 250px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    margin: 1rem 0;
  }

  .header.scrolled .up-arrow {
    display: none;
  }

  .navbar-toggler {
    display: block;
  }

  .logo {
    display: none;
  }

  .getInTouch {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .info-item:nth-child(3) {
    display: none;
  }

  .chatbot-container {
    width: 300px;
    height: 400px;
    bottom: 80px;
  }
  .card-center {
    position: relative;
    width: 320px;
  }

  .testimonials {
    display: flex;
    flex-direction: column;
  }

  .contact-subheading {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }

  .logo {
    margin-left: 0px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .about-title {
    font-size: 14px;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .info-item {
    max-width: 100%;
  }

  .info-item:nth-child(3) {
    display: none;
  }

  .about-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .chatbot-container {
    right: 10px;
    bottom: 70px;
    width: calc(100% - 20px);
    max-width: 300px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
  }
  .pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .card-center {
    position: relative;
    width: 320px;
  }
}
