/* Fonts */
@font-face {
  font-family: Poppins;
  src: url(fonts/Poppins/Poppins-Regular.ttf);
}

/* Base Styles */
body {
  background-color: #000;
  font-family: Poppins, 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Header & Navigation */
.row1 {
  background: linear-gradient(45deg, #010101 0%, #010d3e 40%, #0033ff 100%);
}

.cus-nav {
  background: #fff;
  border-radius: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  margin: 2rem auto 3rem auto;
  box-shadow: 5 8px 32px #0033ff;
  max-width: 900px;
  position: relative;
}

.cus-nav .nav-link {
  position: relative;
  padding: 0.7rem 1.7rem;
  font-size: 1.10rem;
  font-weight: 700;
  color: #000000;
  border-radius: 1.5rem;
  background: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s cubic-bezier(.25, .8, .25, 1);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.cus-nav .nav-link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s cubic-bezier(.25, .8, .25, 1), transform 0.3s cubic-bezier(.25, .8, .25, 1);
}

.cus-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #fff 0%, #00c3ff 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(.25, .8, .25, 1);
  z-index: 1;
}

.cus-nav .nav-link:hover span,
.cus-nav .nav-link.active span {
  color: #0033ff;
  transform: translateY(-3px) scale(1.08) skewX(-8deg);
}

.cus-nav .nav-link:hover::before,
.cus-nav .nav-link.active::before {
  width: 100%;
  animation: liquid-underline 0.7s cubic-bezier(.25, .8, .25, 1);
}

@keyframes liquid-underline {
  0% {
    width: 0;
  }

  60% {
    width: 120%;
  }

  100% {
    width: 100%;
  }
}

/* Optional: Responsive */
@media (max-width: 900px) {
  .cus-nav {
    max-width: 98vw;
    padding: 1rem 0.5rem;
    gap: 0.2rem;
  }

  .cus-nav .nav-link {
    padding: 0.7rem 0.8rem;
    font-size: 1rem;
  }
}

/* Hero Section */
.head-box {
  color: #fff;
  margin: 3rem 0 2rem 0;
}

.head-box h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.head-box h2 span {
  color: #0033FF;
  font-weight: 700;
}

.head-box p {
  font-size: 1.3rem;
  margin: 1.5rem 0 2.4rem 0;
}

/* Our Packages Section */
.packages-section {
  padding: 4rem 0 6rem 0;
  background: linear-gradient(45deg, #010101 0%, #010d3e 40%, #0033ff 100%);
  text-align: center;
}

.packages-title {
  color: #fff;
  font-size: 2.8rem;
  font-family: 'Montserrat', Poppins, sans-serif;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.package-card {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid #0033ff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(0, 51, 255, 0.15);
  width: 320px;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
/* Fix package cards */
.package-card {
  width: 100%;
  max-width: 360px;
}

/* Fix generic card styles */
.card1 {
  width: 100%;
  max-width: 350px;
  height: auto; /* remove fixed height */
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.package-card.featured {
  background: linear-gradient(120deg, #0033ff 60%, #010d3e 100%);
  color: #fff;
  border: 2.5px solid #fff;
  box-shadow: 0 12px 40px 0 rgba(0, 51, 255, 0.25);
  z-index: 2;
  transform: scale(1.05);
}

.package-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0033ff;
  margin-bottom: 1.5rem;
}

.package-card.featured .package-price {
  color: #fff;
  text-shadow: 0 2px 8px #0033ff99;
}

.package-price span {
  font-size: 1.1rem;
  color: #8c8c8c;
  font-weight: 400;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: 100%;
}

.package-card ul li {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #fff;
  padding-left: 1.2em;
  position: relative;
}

.package-card ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #0033ff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.package-btn {
  background: #0033ff;
  color: #fff;
  padding: 0.7rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 #0033ff33;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
}

.package-btn:hover {
  background: #fff;
  color: #0033ff;
  box-shadow: 0 4px 24px 0 #0033ff55;
}

/* Responsive */
@media (max-width: 1000px) {
  .packages-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .package-card {
    width: 90%;
    max-width: 400px;
  }
}

/* Ultra Footer with Heavier Visuals and Hover Effects */
.ultra-footer {
  background: #0b0b0b;
  padding: 70px 20px 30px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  position: relative;
}

/* Subtle background grid */
.ultra-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.ultra-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  max-width: 1250px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

/* LOGO split hover */
.footer-logo span {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}
.footer-logo:hover span {
  color: #00eaff;
  text-shadow: 0 0 12px #00eaff, 0 0 24px #0077ff;
}
.footer-logo:hover span:nth-child(odd) { transform: translateX(-4px); }
.footer-logo:hover span:nth-child(even) { transform: translateX(4px); }

/* Titles with underline shimmer */
.footer-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: #00eaff;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg,#00eaff,#0077ff);
  transition: width 0.4s ease;
}
.footer-title:hover::after { width: 100%; }

/* Links with icon rotation + 3D flip */
.ultra-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ultra-footer ul li { margin-bottom: 12px; }
.ultra-footer ul li a {
  color: #ccc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.4s ease, transform 0.4s ease;
}
.ultra-footer ul li a i {
  margin-right: 8px;
  transition: transform 0.4s ease, color 0.4s ease;
}
.ultra-footer ul li a:hover {
  color: #00eaff;
  transform: rotateY(12deg);
}
.ultra-footer ul li a:hover i {
  transform: rotate(180deg);
  color: #00eaff;
}

/* Social icons with glowing ring burst */
/* --- Updated social button hover --- */
.footer-social a {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 20px;
  padding: 10px 14px;
  border: 2px solid transparent;
  border-radius: 50%;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}

/* --- Updated footer buttons (square, neon hover) --- */
.footer-social a {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 0; /* square corners */
  overflow: hidden;
  text-decoration: none;
  transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(0,238,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.footer-social a:hover {
  color: #00eaff;
  border-color: #00eaff;
  box-shadow: 0 0 12px #00eaff, inset 0 0 20px #0077ff;
  border-radius: 10px;
}

.footer-social a:hover::before {
  transform: translateX(100%);
}


@keyframes ring {
  to { width: 300%; height: 300%; opacity: 0; }
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .ultra-footer .footer-grid {
    text-align: center;
  }
  .footer-social a { margin: 0 8px; }
}


/* Utility Classes */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.d-block {
  display: block !important;
}

.text-sm {
  font-size: 12px !important;
}

.pt-1,
.py-1 {
  padding-top: .25rem !important;
}

h1,
h2 {
  text-align: center;
}

h2 {
  font-size: 50px;
}

h1 {
  font-size: 50px !important;
}

/* Card Styles (Generic) */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem;
  box-shadow: 0 12px 20px 1px rgba(64, 64, 64, 0.09);
}

.card-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.card-text {
  padding-top: 12px;
  color: #8c8c8c;
}

.card a {
  display: inline-block;
  margin-top: 220px;
  padding: 8px 15px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
}

.card a:hover {
  background: white !important;
  color: #0033ff !important;
}

/* Super Creative Animated About Us Section */
// filepath: c:\Users\malik\Downloads\portfolio (3)\css\style.css

.about-animated-section {
  background: linear-gradient(120deg, #010d3e 0%, #0033ff 100%);
  padding: 5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(30px);
  animation: floatShape 8s infinite alternate;
}

.about-shape1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #0033ff 0%, #00c3ff 80%);
  top: 10%;
  left: -80px;
  animation-delay: 0s;
}

.about-shape2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #00c3ff 0%, #0033ff 80%);
  bottom: 10%;
  right: -60px;
  animation-delay: 2s;
}

.about-shape3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff 0%, #0033ff 80%);
  top: 60%;
  left: 60%;
  opacity: 0.25;
  animation-delay: 4s;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-30px) scale(1.1);
  }
}

.about-animated-title {
  font-size: 2.7rem;
  font-family: 'Montserrat', Poppins, sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  animation: fadeInDown 1s cubic-bezier(.25, .8, .25, 1);
  position: relative;
  z-index: 2;
}

.about-animated-gradient {
  background: linear-gradient(90deg, #0033ff 40%, #00c3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 3s linear infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

.about-animated-text {
  color: #e0e0e0;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInLeft 1.2s 0.2s both;
  position: relative;
  z-index: 2;
}

.about-animated-highlight {
  color: #fff;
  background: linear-gradient(90deg, #0033ff 40%, #00c3ff 100%);
  padding: 0 0.3em;
  border-radius: 6px;
  box-shadow: 0 2px 12px #0033ff44;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 2px 12px #0033ff44;
  }

  to {
    box-shadow: 0 0 32px #00c3ff88;
  }
}

.about-animated-list {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: fadeInUp 1.2s 0.4s both;
  position: relative;
  z-index: 2;
}

.about-animated-list li {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
  letter-spacing: 1px;
  position: relative;
}

.about-animated-list i {
  color: #00c3ff;
  font-size: 1.2em;
  animation: bounce 1.5s infinite alternate;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-animated-imgbox {
  position: relative;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

.about-animated-img {
  width: 320px;
  max-width: 90vw;
  border-radius: 30px;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 32px #0033ff55;
  animation: fadeInRight 1.2s 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-animated-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #0033ff55 0%, #0033ff00 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(12px);
  pointer-events: none;
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .about-animated-img {
    width: 220px;
  }

  .about-animated-glow {
    width: 220px;
    height: 220px;
  }

  .about-animated-title {
    font-size: 2rem;
  }
}

.about-animated-svgbox {
  position: relative;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.about-animated-svg {
  width: 240px;
  height: 240px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 32px #0033ff55);
}

.rocket-fire {
  transform-origin: 120px 170px;
  animation: rocketFire 0.6s infinite alternate;
}

@keyframes rocketFire {
  0% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(1.3);
  }
}

@media (max-width: 991px) {
  .about-animated-svg {
    width: 160px;
    height: 160px;
  }
}

.about-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(30px);
  animation: floatShape 8s infinite alternate;
}

.about-shape1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #0033ff 0%, #00c3ff 80%);
  top: 10%;
  left: -80px;
  animation-delay: 0s;
}

.about-shape2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, #00c3ff 0%, #0033ff 80%);
  bottom: 10%;
  right: -60px;
  animation-delay: 2s;
}

.about-shape3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff 0%, #0033ff 80%);
  top: 60%;
  left: 60%;
  opacity: 0.25;
  animation-delay: 4s;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Footer Columns */
.four-col ul li a,
.four-col a {
  color: #fff;
  text-decoration: none;
}

.four-col ul li {
  padding: 0.5rem 0;
  transition: all 200ms linear;
}

.four-col a,
.blue h4 {
  font-size: 1.9em;
  font-weight: 200;
}

.four-col ul li a {
  font-size: 1em;
}

.four-col ul li:hover {
  opacity: 0.5;
}

.blue p {
  color: #A6A6A6;
}

/* Footer Form */
.foorer-form input {
  background: none;
  border: 0;
  outline: none;
  width: 70%;
  color: #A6A6A6;
}

.foorer-form {
  border: 1px solid #333;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  border-left: 1px solid #A6A6A6;
  border-top: 1px solid #A6A6A6;
}

.foorer-form button {
  width: 27%;
  background: none;
  color: #fff;
  font-size: 0.8em;
  border-left: 1px solid #A6A6A6;
  border-top: 1px solid #A6A6A6;
  border-radius: 5px;
}

.foorer-form button i {
  font-size: 0.8em;
  padding-left: 3px;
}

.foorer-form input::placeholder {
  color: #A6A6A6;
}

/* Miscellaneous */
.container1 {
  display: flex;
  gap: 40px;
}

.card1 {
  height: 400px;
  width: 350px;
  background: rgba(246, 246, 246, 0.126);
  backdrop-filter: blur(2px);
  border: 2px solid #0000ff;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  margin-top: 50px;
}

.btn {
  margin-top: 200px;
  font-size: 20px;
}

/* End of CSS */
/* Animated Our Services Section */
// filepath: c:\Users\malik\Downloads\portfolio (3)\css\style.css

.services-animated-section {
  background: linear-gradient(90deg, #010d3e 0%, #0033ff 100%);
  padding: 4rem 0;
}

.services-animated-title {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Montserrat', Poppins, sans-serif;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-animated-card {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(0, 51, 255, 0.12);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  color: #fff;
  text-align: center;
  transition: transform 0.3s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s;
  border: 2px solid #0033ff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-animated-card:hover {
  transform: translateY(-12px) scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 48px 0 #0033ff44;
  border-color: #fff;
  background: linear-gradient(120deg, #0033ff 60%, #010d3e 100%);
}

.service-animated-icon {
  font-size: 2.8rem;
  color: #0033ff;
  background: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px #0033ff22;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.service-animated-card:hover .service-animated-icon {
  background: #0033ff;
  color: #fff;
  transform: scale(1.15) rotate(8deg);
}

/* Icon Animations */
.bounce {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.spin {
  animation: spin 2.5s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 #0033ff55;
  }

  50% {
    box-shadow: 0 0 0 16px #0033ff11;
  }
}

.service-animated-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.service-animated-card p {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-animated-card {
    margin-bottom: 2rem;
  }
}

/* Super Creative Animated Contact Us Section */
// filepath: c:\Users\malik\Downloads\portfolio (3)\css\style.css

.contact-animated-section {
  background: linear-gradient(120deg, #010d3e 0%, #0033ff 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 5rem 0 4rem 0;
}

.contact-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: contactShapeFloat 8s infinite alternate;
}

.contact-shape1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #0033ff 0%, #00c3ff 80%);
  top: -60px;
  left: -80px;
  animation-delay: 0s;
}

.contact-shape2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #00c3ff 0%, #0033ff 80%);
  bottom: -40px;
  right: 10%;
  animation-delay: 2s;
}

.contact-shape3 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #fff 0%, #0033ff 80%);
  top: 70%;
  left: 70%;
  opacity: 0.25;
  animation-delay: 4s;
}

@keyframes contactShapeFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-30px) scale(1.1);
  }
}

.contact-animated-formbox {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(0, 51, 255, 0.12);
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
  border: 2px solid #0033ff;
  animation: fadeInLeft 1.2s;
}

.contact-animated-title {
  font-size: 2.2rem;
  font-family: 'Montserrat', Poppins, sans-serif;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  animation: fadeInDown 1s cubic-bezier(.25, .8, .25, 1);
}

.contact-animated-gradient {
  background: linear-gradient(90deg, #0033ff 40%, #00c3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 3s linear infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

.contact-animated-form .contact-animated-input {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid #0033ff;
  color: #fff;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #0033ff22;
  outline: none;
}

.contact-animated-form .contact-animated-input:focus {
  border: 1.5px solid #00c3ff;
  box-shadow: 0 4px 24px #00c3ff55;
  background: rgba(0, 51, 255, 0.10);
}

.contact-animated-form select.contact-animated-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' height='24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  background-size: 22px;
  
  display: block;   /* make it block */
  width: 100%;      /* full width */
  box-sizing: border-box;  /* include padding/border in width */
}

.contact-animated-form select.contact-animated-input option{
  background-color: #000;
}


.contact-animated-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0033ff 40%, #00c3ff 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  border-radius: 40px;
  box-shadow: 0 4px 24px #0033ff55;
  letter-spacing: 1px;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: btnPulse 2s infinite alternate;
  text-decoration: none;
}

.contact-animated-btn:hover {
  background: #fff;
  color: #0033ff;
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 8px 32px #0033ff88;
}

@keyframes btnPulse {
  0% {
    box-shadow: 0 4px 24px #0033ff55;
  }

  100% {
    box-shadow: 0 8px 48px #00c3ff88;
  }
}

.contact-animated-info {
  padding-left: 2rem;
  animation: fadeInRight 1.2s;
}

.contact-animated-info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  background: rgba(0, 51, 255, 0.10);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 2px 12px #0033ff22;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.contact-animated-info-item:hover {
  background: rgba(0, 195, 255, 0.18);
  box-shadow: 0 8px 32px #00c3ff44;
}

.contact-animated-icon {
  font-size: 2.1rem;
  color: #00c3ff;
  background: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px #0033ff22;
  animation: iconBounce 1.5s infinite alternate;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.contact-animated-info-item h5 {
  margin: 0 0 0.2rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.contact-animated-info-item p {
  margin: 0;
  color: #e0e0e0;
  font-size: 1rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .contact-animated-info {
    padding-left: 0;
    margin-top: 2.5rem;
  }

  .contact-animated-formbox {
    padding: 2rem 1rem 1.5rem 1rem;
  }

}

/* Keep styles scoped to avoid ruining site layout */
.animated-heading h2 {
  margin: 0;
  text-align: left;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}

.animated-heading .word {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  height: 1.1em;
}

.animated-heading .word .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) rotateX(20deg) scale(0.92);
  transition: transform 550ms cubic-bezier(.2, .9, .3, 1), opacity 420ms ease;
}

.animated-heading .word.show .char {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}

.animated-heading .word .bar {
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #0ea5e9);
  border-radius: 6px;
  width: 0;
  transition: width 600ms cubic-bezier(.2, .9, .3, 1);
}

.animated-heading .word.show .bar {
  width: 70%;
}

@media(max-width:520px) {
  .animated-heading h2 {
    font-size: 1.6rem;
  }
}

.btn-animated {
  display: inline-block;
  padding: 0.3em 0.6em;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 2.5em;
  border: none;
  outline: none;
  cursor: pointer;
  background: #fff;
  color: #0033ff;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    background 0.3s cubic-bezier(.25, .8, .25, 1),
    color 0.3s cubic-bezier(.25, .8, .25, 1),
    transform 0.18s cubic-bezier(.25, .8, .25, 1),
    box-shadow 0.3s cubic-bezier(.25, .8, .25, 1),
    padding 0.2s cubic-bezier(.25, .8, .25, 1);
  box-shadow: 0 0 0 transparent;
}

.btn-animated:hover,
.btn-animated:focus {
  background: linear-gradient(90deg, #0033ff 0%, #00c3ff 100%);
  color: #fff;
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 8px 32px #0033ff33;
  padding-left: 0.5em;
  padding-right: 0.6em;
}

.btn-animated span,
.btn-animated i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.25, .8, .25, 1);
}

.btn-animated:hover span,
.btn-animated:focus span {
  transform: scale(1.10) skewX(-8deg);
  letter-spacing: 3px;
}

/* Different gradient for Contact Now */
.btn-contact {
  background: #fff;
  color: #00c3ff;
}

.btn-contact:hover,
.btn-contact:focus {
  background: linear-gradient(90deg, #00c3ff 0%, #0033ff 100%);
  color: #fff;
}

/* Super Animated Post Carousel Card Styles */
// filepath: c:\Users\malik\Downloads\portfolio (3)\pixxel span\css\style.css

.post-carousel .slider-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px #0033ff22;
  margin: 0 18px;
  transition:
    transform 0.5s cubic-bezier(.25, .8, .25, 1),
    box-shadow 0.5s cubic-bezier(.25, .8, .25, 1),
    filter 0.5s cubic-bezier(.25, .8, .25, 1);
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(40px) scale(0.96) rotateY(10deg);
  animation: cardIn 0.8s cubic-bezier(.25, .8, .25, 1) forwards;
}

.post-carousel .slick-active .slider-card {
  animation: cardIn 0.8s cubic-bezier(.25, .8, .25, 1) forwards;
}

.post-carousel .slider-card {
  padding-top: 8px;
  padding-bottom: 8px;
}

.post-carousel .slider-card img {
  width: calc(100% - 16px);
  margin: 0 auto;
  display: block;
  border-radius: 1.5rem 1.5rem 0 0;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0);
  }
}

.post-carousel .slider-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  transition: filter 0.5s cubic-bezier(.25, .8, .25, 1), transform 0.5s cubic-bezier(.25, .8, .25, 1);
  filter: brightness(0.95) saturate(1.1);
}

.post-carousel .slider-card:hover {
  transform: translateY(-18px) scale(1.05) rotateY(-8deg);
  box-shadow: 0 12px 48px #0033ff55, 0 0 0 4px #00c3ff55;
  filter: brightness(1.04) saturate(1.2);
}

.post-carousel .slider-card:hover img {
  filter: brightness(1.12) saturate(1.3) blur(1px);
  transform: scale(1.04) rotate(-1deg);
}

.post-carousel .slider-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 0 32px 8px #00c3ff88, 0 0 0 4px #0033ff;
}

.post-carousel .slider-card:hover::before {
  opacity: 1;
  animation: borderGlow 1.2s infinite alternate;
}

@keyframes borderGlow {
  0% {
    box-shadow: 0 0 32px 8px #00c3ff88, 0 0 0 4px #0033ff;
  }

  100% {
    box-shadow: 0 0 48px 16px #0033ffcc, 0 0 0 8px #00c3ff;
  }
}

.post-carousel .slider-overlay {
  padding: 1.2rem 1.5rem;
  background: linear-gradient(0deg, #0033ff11 80%, transparent 100%);
  position: static;
  opacity: 1;
  color: #0033ff;
  z-index: 3;
  transition: color 0.4s;
}

.post-carousel .slider-card:hover .slider-overlay h3,
.post-carousel .slider-card:hover .slider-overlay p {
  animation: overlayTextIn 0.7s cubic-bezier(.25, .8, .25, 1);
  color: #00c3ff;
}

.post-carousel .slider-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0033ff;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: overlayTextIn 0.7s cubic-bezier(.25, .8, .25, 1) forwards;
  animation-delay: 0.2s;
}

.post-carousel .slider-card:hover .slider-overlay h3 {
  opacity: 1;
  transform: translateY(0) scale(1.08);
  animation-delay: 0s;
}

.post-carousel .slider-overlay p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: overlayTextIn 0.7s cubic-bezier(.25, .8, .25, 1) forwards;
  animation-delay: 0.35s;
}

.post-carousel .slider-card:hover .slider-overlay p {
  opacity: 1;
  transform: translateY(0) scale(1.08);
  animation-delay: 0.1s;
}

@keyframes overlayTextIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1.08);
  }
}

@media (max-width: 700px) {
  .post-carousel .slider-card img {
    height: 140px;
  }

  .post-carousel .slider-card {
    min-height: 220px;
  }

}
/* --- Neon Streaks --- */
.streak {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(transparent, rgb(0, 17, 255), transparent);
  animation: drift 8s linear infinite;
  opacity: 0.6;
}

.streak:nth-child(4) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.streak:nth-child(5) {
  top: 20%;
  left: 50%;
  animation-delay: 2s;
}
.streak:nth-child(6) {
  top: 20%;
  left: 80%;
  animation-delay: 1s;
}

@keyframes drift {
  0% { transform: translateY(0) scaleY(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(120vh) scaleY(1); opacity: 0; }
}
