* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "manrope", sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  color: #ededed;
  background: #081b29;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  scroll-snap-align: start;
  padding: 150px 7% 100px;
  flex-direction: row-reverse; /* ye ulta kar dega (image left, text right) */
  gap: 130px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 70px;
  background: #081b29;
  background: rgba(8, 27, 41, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: 0.3s;
}

.header.sticky {
  padding: 8px 70px;
  background: #081b29;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

#menu-icon {
  font-size: 3.6rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

.logo {
  width: 250px;
  height: auto;
  display: block;
  transition: 0.3s;
  cursor: pointer;
  opacity: 1; /* Ensure visibility */
}

.navbar a {
  display: inline-block;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: 0.3s;
  opacity: 0;
  animation: slideTop 0.5s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}

.navbar a:hover {
  color: aqua;
}
/* Image Circle */
.home-img .circle {
  width: 35vw;
  height: 35vw;
  min-width: 300px;
  min-height: 300px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(45deg, #4edddd, #008080);
  display: flex;
  justify-content: center;
  box-shadow:
    0 0 30px rgb(35, 165, 165),
    0 0 20px rgb(216, 223, 223);
  align-items: center;
  animation: glow 2s linear infinite;
}

.home-img img {
  width: 95%;
  height: 95%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #081b29;
  box-shadow:
    0 0 30px rgb(35, 165, 165),
    0 0 20px rgb(169, 203, 203);
}

.home-content {
  max-width: 600px;
}
.home-hero-image {
  width: 100%;
  max-width: 560px;
  margin-top: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.16);
  object-fit: cover;
}
.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  /* gap: 80px; */
  opacity: 0;
  animation: slideBottom 1s ease forwards;
  animation-delay: 0.7s;
}
.home-content h3:nth-of-type(2) {
  margin-bottom: 30px;
  animation: slideTop 1s ease forwards;
  /* animation: slidTop 1s ease forwards; */
  animation-delay: 0.7s;
}
.home-content h3 span {
  color: aqua;
}

.home-content h1 {
  font-size: 56px;
  /* gap: 50px; */
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: 1s;
}
.home-content p {
  font-size: 20px;
  text-align: center;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 1s;
}
.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid aqua;
  border-radius: 50%;
  font-size: 20px;
  color: aqua;
  text-decoration: none;
  margin: 30px 15px 30px 0;
  transition: 0.5s ease;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}
.home-sci a:hover {
  background: aqua;
  color: black;
  box-shadow: 0 0 20px aqua;
}
.btn-box {
  display: inline-block;
  padding: 12px 28px;
  background: aqua;
  border-radius: 40px;
  gap: 50px;
  border: none;
  font-size: 16px;
  color: black;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  animation-delay: 0.2s;
}
.btn-box:hover {
  box-shadow:
    0 0 5px aqua,
    0 0 25px aqua,
    0 0 50px aqua,
    0 0 100px aqua,
    0 0 200px aqua;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 50px 150px 10%;
  background: #081b29;
  scroll-snap-align: start;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.about-img img {
  width: 450px;
  border-radius: 10px;
  box-shadow: 0 0 20px aqua;
  transition: 0.5s ease;
}

.about-img img:hover {
  transform: scale(1.2);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.about-container h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.about-container h2 span {
  color: aqua;
  text-align: center;
}

.about-text h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin: 10px 0 12px;
}
.about-text {
  font-size: 17px;
  line-height: 1.5;
  color: aliceblue;
}

.services {
  color: aliceblue;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 4rem;
}

.sub-title {
  text-align: center;
  font-size: 60px;
  padding-bottom: 20px;
  margin-right: 30;
}
.sub-title span {
  color: aqua;
}

.container {
  padding: 10px 8%;
  /* height: 5px; */
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 35px;
}
.services-list div {
  background-color: transparent;
  padding: 40px 25px;
  min-height: 420px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 20px;
  transition:
    background 0.5s,
    transform 0.5s;

  box-shadow:
    1px 1px 20px #012290f7,
    1px 1px 20px #1901cbf2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.services-list div:hover {
  transform: translateY(-10px) scale(1.03);
}

.services-list div:hover .service-card-image {
  transform: scale(1.08);
}

.services-list div i {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 15px;
}

.services-list div a {
  text-decoration: none;
  color: black;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}

.read {
  display: inline-block;
  padding: 12px 28px;
  background: aqua;
  border-radius: 40px;
  font-size: 16px;
  color: black;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 2s;
  box-shadow:
    0 0 5px aqua,
    0 0 25px aqua;
}

.read:hover {
  box-shadow:
    0 0 2px rgb(150, 191, 191),
    0 0 25px rgb(24, 167, 167),
    0 0 50px aqua;
}

.services-list div:hover {
  transform: translateY(-10px);
}

/* Ensure all sections are snap targets so navbar links work with mandatory snapping */
section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  scroll-snap-align: start;
}

.heading1 {
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 5px;
  margin-bottom: 50px;
}

.bar {
  font-size: 23px;
}

.Technical-bars .bar {
  margin-top: 40px 0;
}
.Technical-bars .bar:first-child {
  margin-top: 0;
}
.Technical-bars .bar:last-child {
  margin-top: 0;
}

.Technical-bars .bar .info {
  margin-bottom: 5px;
}

.Technical-bars .bar .info span {
  font-size: 17px;
  font-weight: 500;
  animation: showText 0.5s linear forwards;
  animation-delay: 1s;
  opacity: 0;
}

.Technical-bars .bar .progress-line {
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 5px;
  background-color: black;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
  transform: scalex(0);
  transform-origin: left;
}

/* STATS */

.stats {
  padding: 0;
}

.stats-box {
  border-radius: 50px;
  min-height: 60vh;
  width: 100%;
  max-width: 100%;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;

  gap: 30px;

  text-align: center;
  overflow: hidden;
  padding: 50px;

  box-shadow:
    1px 1px 20px #012290f7,
    1px 1px 20px #1901cbf2;
}
.stat h2 {
  font-size: 80px;
  color: aqua;
  gap: 20px;
}

/* Specifically targeting the container within stats to remove side constraints */
.stats .container {
  padding: 100px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Center the H2 inside the stats container */
.stats .container h2 {
  text-align: center;
  font-size: 60px;
  padding-bottom: 25px;
  color: #fff;
  margin: 0 0 30px;
}

/* Center About section heading */
.about h2,
.about-text h2,
.about-img h2 {
  text-align: center;
  width: 100%;
  margin: 0 0 2rem;
}

.stats .container h2 span {
  color: aqua;
}

/* projectes */

.main-text {
  padding: 10px 5%;
  margin: 10px;
}
.main-text h2 {
  text-align: center;
  font-size: 60px;
  padding-bottom: 5px;
}
.main-text h2 span {
  color: aqua;
}
.portfolio-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px;
}

.row {
  position: relative;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s;
  box-shadow:
    1px 1px 20px aqua,
    1px 1px 20px #1901cbf2;
}

.row:hover {
  transform: translateY(-10px);
}

.row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.layer {
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), aqua);
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  transition: height 0.5s;
}
.layer h5 {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.layer p {
  font-size: 18px;
  color: black;
  line-height: 1.8;
  margin-bottom: 20px;
}
.layer i {
  color: #081b29;
  font-size: 24px;
  background: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.layer i:hover {
  background: #081b29;
  color: aqua;
}

.row:hover img {
  transform: scale(1.1);
}
.row:hover .layer {
  height: 100%;
}

/* CTA */

.cta {
  padding: 20px 0;
  text-align: center;
}

.cta-box {
  padding: 60px 300px;
  border-radius: 30px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition:
    background 0.5s,
    transform 0.5s;

  box-shadow:
    1px 1px 20px #012290f7,
    1px 1px 20px #1901cbf2;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: aqua;
  filter: blur(100px);
  opacity: 0.15;
  top: -50px;
  right: -50px;
}

.cta h2 {
  font-size: 60px;
  margin-bottom: 20px;
}
.cta p {
  color: #b8b8b8;
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
  line-height: 1.8;
}

.cta-box span {
  color: aqua;
}

.btn {
  padding: 12px;
  background-color: aqua;
  border-radius: 50%;
}

/* FAQ Section */

.faq-section {
  width: 100%;
  min-height: 70vh;

  display: flex;
  flex-direction: column; /* sab ek ke niche */

  justify-content: center;
  align-items: center;

  gap: 30px;
  padding: 20px 10%;
}
/* Left Side */
.faq-left h1 {
  font-size: 70px;
  line-height: 1.2;
  color: white;
  font-weight: 500;
}

.faq-left h1 span {
  color: aqua;
  margin-right: 15px;
}

/* Right Side */
.faq-left {
  text-align: center;
}

.faq-right {
  width: 100%;
  max-width: 800px;
}

.faq {
  background: #112e42;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    3px 3px 5px #012290f7,
    3px 3px 5px #1901cbf2;
}

.faq-question {
  width: 100%;
  background: #112e42;
  border: none;
  outline: none;
  padding: 25px 30px;
  font-size: 1.2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.faq-question::before {
  content: "";
  width: 4px;
  height: 25px;
  background: #000;
  position: absolute;
  left: 15px;
  border-radius: 10px;
}

.faq-question span {
  margin-left: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: aqua;
}

.icon {
  font-size: 22px;
  transition: 0.3s;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
  background: #112e42;
}

.faq-answer p {
  padding: 0 0 25px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.faq.active .faq-answer {
  max-height: 200px;
}

.faq.active .icon {
  transform: rotate(180deg);
}

/* whatsapp */
.logo-box1 {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  text-decoration: none;
}

/* .glow{
      position:absolute;
      width:130px;
      height:130px;
      border-radius:50%;
      background:#25d366;
      filter:blur(35px);
      opacity:0.7;
      animation:pulse 1s infinite ease-in-out;
    } */

.whatsapp-logo {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /* background: transparent; */
  background: #25d366;
  border: 4px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 20px rgba(37, 211, 102, 0.7),
    0 0 40px rgba(37, 211, 102, 0.5);
  animation: float 1s ease-in-out infinite;
}

/* Custom bubble tail removed because Font Awesome icon already looks like a logo */
.whatsapp-logo::after {
  display: none;
}

.whatsapp-logo i {
  color: #fff;
  font-size: 40px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* insta */

/* Fixed Floating Icon */
.logo-box {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.logo-box a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Glow */
.glow {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  filter: blur(25px);
  opacity: 0.8;
  animation: pulse 1s infinite ease-in-out;
  pointer-events: none;
}

/* Instagram Circle */
.instagram-logo {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 20px rgba(238, 42, 123, 0.7),
    0 0 40px rgba(98, 40, 215, 0.5);
  animation: float 1s ease-in-out infinite;
  cursor: pointer;
  z-index: 1;
}

/* Camera Border */
.instagram-logo::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 4px solid #fff;
  border-radius: 10px;
}

/* Camera Lens */
.instagram-logo::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: 18px;
  right: 18px;
}

/* Inner Lens */
.lens {
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Footer Styles */
.main-footer {
  background: #112e42;
  padding: 60px 0 20px;
  border-top: 2px solid aqua;
  margin-top: 50px;
  scroll-snap-align: start;
}

/* Toggle Switch Styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #081b29;
  border: 1px solid aqua;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: aqua;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #112e42;
  box-shadow: 0 0 10px aqua;
}
input:checked + .slider:before {
  transform: translateX(26px);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 7%;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
}

.footer-box h3 span {
  color: aqua;
}

.footer-box p {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid aqua;
  border-radius: 50%;
  font-size: 18px;
  color: aqua;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: aqua;
  color: #081b29;
  box-shadow: 0 0 10px aqua;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #b8b8b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: aqua;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  text-align: center;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  margin-bottom: 15px;
  justify-content: center;
}

/* Ensure contact links inside footer are white and show aqua on hover */
.footer-contact li a {
  color: #ffffff;
  text-decoration: none;
}
.footer-contact li a:hover {
  color: aqua;
}
.footer-contact i {
  color: aqua;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.instagram-logo:active {
  transform: scale(0.9);
}

footer {
  padding: 30px 0;
  text-align: center;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes animate {
  100% {
    transform: scale(1);
  }
}

.Technical-bars .bar .progress-line span {
  height: 100px;
  background-color: aqua;
  position: absolute;
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
  transform: scale(0);
  transform-origin: left;
}

.progress-line html span {
  width: 50%;
}
.progress-line.css span {
  width: 60%;
}
.progress-line.javascript span {
  width: 50%;
}
.progress-line.python span {
  width: 65%;
}
.progress-line.react span {
  width: 70%;
}

@keyframes showText {
  100% {
    opacity: 1;
  }
}

.Technical-bars .bar .progress-line {
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 5px;
  background-color: black;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}
.Technical-bars .bar .progress-line span {
  width: 80%;
  height: 100%;
  background-color: aqua;
  position: absolute;
  border-radius: 10px;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
  transform: scaleX(0);
  transform-origin: left;
}

/* Skill widths */
.progress-line.html span {
  width: 90%;
}
.progress-line.css span {
  width: 60%;
}
.progress-line.javascript span {
  width: 85%;
}
.progress-line.python span {
  width: 50%;
}
.progress-line.react span {
  width: 75%;
}

/* Percentage label */
.progress-line span::after {
  position: absolute;
  content: "";
  padding: 1px 8px;
  background-color: black;
  color: white;
  font-size: 12px;
  border-radius: 3px;
  top: -28px;
  right: 0;
  animation: showText 0.5s 1.5s linear forwards;
  opacity: 0;
}

/* Percentage values */
.progress-line.html span::after {
  content: "10%";
}
.progress-line.css span::after {
  content: "60%";
}
.progress-line.javascript span::after {
  content: "85%";
}
.progress-line.python span::after {
  content: "50%";
}
.progress-line.react span::after {
  content: "75%";
}

/* Arrow below label */
.progress-line span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-bottom-width: 0;
  border-right-width: 0;
  border-top-color: black;
  top: -10px;
  right: 0;
  animation: showText 0.5s 1.5s linear forwards;
  opacity: 0;
}

/* Text fade-in */
@keyframes showText {
  100% {
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slideTop {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideBottom {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translate(100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px);
    opacity: 1;
  }
}

/* Contact Section */
.contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
  padding: 100px 10%;
  background: #081b29;
}

.contact-text h2 {
  text-align: center;
  font-size: 60px;
  padding-bottom: 25px;
  margin-left: -45%;
}

.contact-text h2 span {
  color: aqua;
}

.contact-text h4 {
  margin: 15px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.contact-text p {
  color: #b8b8b8;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-list {
  margin-bottom: 2rem;
  list-style: none;
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
}

.contact-list i {
  color: aqua;
  font-size: 20px;
  margin-right: 15px;
}

/* Ensure contact section links are white */
.contact-list li a {
  color: #ffffff;
  text-decoration: none;
}
.contact-list li a:hover {
  color: aqua;
}

.contact-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid aqua;
  border-radius: 50%;
  font-size: 20px;
  color: aqua;
  text-decoration: none;
  margin-right: 15px;
  transition: 0.5s ease;
}

.contact-icons a:hover {
  background: aqua;
  color: #081b29;
  box-shadow: 0 0 20px aqua;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 15px;
  background: #112e42;
  border: none;
  outline: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-form form textarea {
  resize: none;
  height: 200px;
}

.contact-form form .send {
  display: inline-block;
  padding: 12px 28px;
  background: aqua;
  border-radius: 40px;
  font-size: 16px;
  color: #081b29;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.5s ease;
  width: max-content;
}

.contact-form form .send:disabled {
  background: #555;
  cursor: not-allowed;
  box-shadow: none;
}

.contact-form form .send:hover {
  box-shadow: 0 0 20px aqua;
}

@media (max-width: 950px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  height: 450px;
  background: #112e42;
  border: 2px solid aqua;
  border-radius: 15px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  overflow: hidden;
}

.chat-header {
  background: aqua;
  color: #081b29;
  padding: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.chat-header button {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #081b29;
}

.chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
}

.bot {
  background: #081b29;
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.user {
  background: aqua;
  color: #081b29;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input {
  padding: 15px;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-input input {
  flex: 1;
  background: #081b29;
  border: 1px solid aqua;
  border-radius: 20px;
  padding: 8px 15px;
  color: #fff;
  outline: none;
}

.chat-input button {
  background: aqua;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  color: #081b29;
}

.chat-toggle {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: aqua;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #081b29;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 15px aqua;
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1200px) {
  .header {
    padding: 20px 5%;
  }
  .home {
    gap: 50px;
  }
  .stats-box {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .home {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 120px;
  }
  .home-img .circle {
    width: 300px;
    height: 300px;
  }
  .home-content h1 {
    font-size: 45px;
  }
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact-text h2 {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
    z-index: 101; /* Stay above the sidebar drawer */
  }
  .logo {
    width: 180px;
  }
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px; /* Sidebar width */
    height: 100vh;
    padding: 100px 30px;
    background: #081b29;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    transition: 0.4s ease;
    z-index: 100;
  }
  .navbar.active {
    left: 0;
  }
  .navbar a {
    opacity: 1 !important;
    transform: none !important;
    display: block;
    font-size: 20px;
    margin: 20px 0;
    margin-left: 0;
    transition: 0.3s ease;
  }
  .navbar a:hover {
    padding-left: 15px;
    color: aqua;
  }
  .about-container {
    padding: 80px 5% 60px;
    flex-direction: column;
  }
  .about-img img {
    width: 100%;
    max-width: 350px;
  }
  .sub-title,
  .about-text h2,
  .main-text h2,
  .contact-text h2 {
    font-size: 40px;
  }
  .container {
    padding: 50px 5%;
  }
  .services-list,
  .portfolio-content {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 40px 20px;
  }
}

@media (max-width: 450px) {
  .logo {
    width: 150px;
  }
  .home-content h1 {
    font-size: 32px;
  }
  .home-sci a {
    width: 35px;
    height: 35px;
  }
  .home-img .circle {
    width: 250px;
    height: 250px;
    min-width: 250px;
    min-height: 250px;
  }
  .stats-box {
    grid-template-columns: 1fr;
  }
  .stat h2 {
    font-size: 50px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  html {
    scroll-snap-type: none;
  }
  .header {
    padding: 14px 4%;
  }
  .home {
    min-height: auto;
    padding: 100px 4% 40px;
    gap: 24px;
    flex-direction: column;
  }
  .home-content h1 {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    line-height: 1.15;
  }
  .home-content h3 {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
  }
  .home-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .home-img .circle {
    width: min(78vw, 270px);
    height: min(78vw, 270px);
    min-width: 220px;
    min-height: 220px;
  }
  .home-sci {
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-box {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
  .about {
    padding: 70px 5% 40px;
  }
  .about-img img {
    width: 100%;
    max-width: 290px;
  }
  .sub-title,
  .about-container h2,
  .main-text h2,
  .contact-text h2 {
    font-size: 30px;
  }
  .services-list div,
  .row {
    min-height: auto;
  }
  .layer {
    padding: 16px;
  }
  .stats-box {
    gap: 16px;
  }
  .stat {
    padding: 18px 12px;
  }
  .contact {
    padding: 70px 5% 50px;
    gap: 2rem;
  }
  .contact-text h2 {
    margin-left: 0;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .faq-section {
    padding: 40px 5%;
    gap: 20px;
  }
  .faq-left h1 {
    font-size: 36px;
  }
  .faq-question {
    padding: 20px 15px 20px 35px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-answer p {
    padding: 0 0 20px 0;
    font-size: 15px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 5%;
    gap: 24px;
  }
  .main-footer {
    padding: 40px 0 20px;
  }
  .logo-box,
  .logo-box1 {
    width: 56px;
    height: 56px;
    bottom: 18px;
  }
  .instagram-logo,
  .whatsapp-logo {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    padding: 80px 5% 60px;
    gap: 2rem;
  }
  .contact-text h2 {
    margin-left: 0;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .faq-section {
    padding: 50px 5%;
  }
}

/* PRICING PAGE STYLES */
.services-page {
  background: #081b29;
  color: white;
  padding: 80px 5% 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 35px;
  margin-top: 15px;
  text-transform: uppercase;
}

.section-title span {
  color: aqua;
}
.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards side by side */
  gap: 20px;
  margin: 30px auto;
  padding: 0 10px;
  width: 100%;
  max-width: 1000px;
  justify-items: center;
  flex-wrap: nowrap;
}
.pricing-card {
  background: rgba(17, 46, 66, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 255, 0.1);
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  width: 100%;
  max-width: 280px;
}
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: aqua;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.pricing-card.popular {
  border-color: aqua;
  transform: scale(1.08);
  z-index: 1;
}

.badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: aqua;
  color: #081b29;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 12px;
}

.pricing-card i {
  font-size: 50px;
  color: aqua;
  margin-bottom: 10px;
}

.price {
  font-size: 40px;
  font-weight: 700;
  color: aqua;
  margin-bottom: 15px;
}

.price span {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .services-page {
    padding: 50px 4% 40px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 10px;
  }

  .pricing-card {
    max-width: 100%;
    min-height: auto;
    padding: 18px 16px 22px;
  }

  .pricing-card.popular {
    transform: none;
    scale: 1;
  }

  .badge {
    top: 12px;
    right: -12px;
    padding: 5px 24px;
    font-size: 11px;
  }

  .pricing-card i {
    font-size: 42px;
  }

  .price {
    font-size: 32px;
  }

  .features-list li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 22px;
  }

  .details-inner {
    padding: 0 8px;
  }

  .details-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
  }

  .detail-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .services-page {
    padding: 40px 4% 30px;
  }

  .pricing-card {
    padding: 16px 14px 18px;
  }

  .pricing-card i {
    font-size: 38px;
  }

  .price {
    font-size: 28px;
  }

  .details-inner {
    padding: 0 6px;
    gap: 24px;
    text-align: center;
  }

  .details-grid {
    gap: 16px;
  }

  .detail-card {
    padding: 16px;
    text-align: center;
  }

  .detail-card h3,
  .detail-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .detail-card p {
    max-width: 100%;
  }

  .services-page {
    padding: 40px 4% 30px;
  }

  .details-inner {
    padding: 0;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .details-intro h2 {
    font-size: 28px;
  }

  .details-intro p,
  .detail-card p,
  .details-benefits ul li {
    font-size: 15px;
  }

  .detail-card {
    padding: 18px;
  }

  .details-benefits h3 {
    font-size: 22px;
  }
}

.features-list {
  list-style: none;
  margin-bottom: 10px;
  text-align: left;
  padding: 0;
}

.features-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}

.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00f0df;
  font-size: 14px;
  line-height: 1;
}

/* Marquee Animation Styles */
.overflow-hidden {
  overflow: hidden;
}
.w-full {
  width: 100%;
}
.bg-black {
  /* background-color: transparent; */
}
.inline-flex {
  display: inline-flex;
}

/* Tier cards inside each pricing card */
.tier-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  margin-top: 18px;
  flex-wrap: wrap;
}
.tier-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-radius: 12px;
  min-width: 160px;
  max-width: 260px;
  text-align: left;
}
.tier-card h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
}
.tier-price {
  font-weight: 700;
  color: aqua;
  margin-bottom: 8px;
}
.tier-card ul {
  list-style: disc;
  padding-left: 18px;
  margin: 6px 0 12px 0;
}
.tier-card .btn-box {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
}
.services-details {
  background: #081b29;
  padding: 60px 10%;
}
.details-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.details-intro h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: #fff;
}
.details-intro p {
  color: #c1dfe8;
  line-height: 1.8;
  max-width: 820px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.detail-card {
  background: rgba(10, 28, 44, 0.75);
  border: 1px solid rgba(0, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
}
.detail-card h3 {
  font-size: 22px;
  color: aqua;
  margin-bottom: 12px;
}
.detail-card p {
  color: #d2e9f4;
  line-height: 1.75;
}
.details-benefits h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 18px;
}
.details-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.details-benefits ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #c1dfe8;
  line-height: 1.8;
}
.details-benefits ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: aqua;
  font-size: 16px;
  top: 0;
}
.detail-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 18px;
}

.items-center {
  align-items: center;
}
.h-16 {
  height: 4rem;
}
.w-auto {
  width: auto;
}
.object-contain {
  object-fit: contain;
}

@media (min-width: 640px) {
  .sm\:h-20 {
    height: 5rem;
  }
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee img {
  padding: 0 30px; /* Adjust spacing between images */
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
