@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

:root {
  /* New Premium Color Palette */
  --primary: #0a0a0a;
  --primary-light: #171717;
  --accent: #9333ea; /* Amethyst */
  --accent-light: #a855f7;
  --accent-glow: rgba(147, 51, 234, 0.4);
  --secondary: #4f46e5; /* Indigo */
  --bg-dark: #050505;
  --bg-soft: #0f0f0f;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Layout */
  --container-width: 1320px;
  --section-padding: 100px 0;
  --header-height: 80px;
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --header-height: 70px;
  }
}

/* Background Mesh Glow */
.mesh-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.08), transparent 40%);
  filter: blur(100px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Cinematic Grain Texture */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}

select option {
  background-color: var(--bg-soft);
  color: var(--white);
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #151515;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.custom-select-trigger:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--accent);
  transition: all 0.4s ease;
}

.custom-select.open .custom-select-trigger:after {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: #151515;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  z-index: 100;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  position: relative;
  display: block;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-option:hover {
  background: var(--accent);
  color: #fff;
}

.custom-option.selected {
  background: rgba(147, 51, 234, 0.2);
  color: var(--white);
}

.custom-option.is-placeholder {
    display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  margin-bottom: 3rem;
  text-align: center;
}

.section-title span {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid System Utilities */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Premium Components */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  font-size: 0.95rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--glass-border);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(147, 51, 234, 0.2);
}

.glass {
  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-img-box img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-5deg) translateY(-20px);
  }
}

.service-card-img {
  overflow: hidden;
  border-radius: 20px;
}

/* Floating Tool Icons */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.tool-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 15px var(--accent-glow);
  animation: float-icon 4s ease-in-out infinite;
  z-index: 11;
}

.tool-icon i {
  filter: drop-shadow(0 0 8px var(--accent));
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-30px) rotate(8deg);
  }
}

/* Position variations - Professional Orbit */
.icon-ps {
  top: 12%;
  left: -2%;
  animation-duration: 5s;
}
.icon-code {
  top: 58%;
  left: -8%;
  animation-duration: 4s;
  animation-delay: 1s;
}
.icon-figma {
  top: 18%;
  right: -2%;
  animation-duration: 6s;
  animation-delay: 0.5s;
}
.icon-ad {
  bottom: 12%;
  right: 2%;
  animation-duration: 4.5s;
  animation-delay: 1.5s;
}

.tool-icon i {
  color: var(--white) !important;
  filter: drop-shadow(0 0 8px var(--accent));
}

@media (max-width: 1200px) {
  .tool-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .icon-ps {
    left: -5%;
  }
  .icon-code {
    left: -10%;
  }
  .icon-figma {
    right: -5%;
  }
  .icon-ad {
    right: 0%;
  }
}

@media (max-width: 992px) {
  .floating-icons {
    display: none;
  } /* Hide on mobile to keep it clean */
}

/* Header Fixes */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  height: 80px;
  border-bottom: 1px solid var(--glass-border);
}

/* Unique Mega Footer */
.mega-footer {
  padding: 15vw 0 5vw;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.footer-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(
    255,
    255,
    255,
    0.05
  ); /* Slightly increased opacity for better visibility */
  white-space: nowrap;
  pointer-events: none;
  font-family: var(--font-heading);
  z-index: 0;
}

.footer-top {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 10vw;
}

.footer-top h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 3rem;
}

.footer-top h2 span {
  display: block;
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
  padding-top: 5vw;
  border-top: 1px solid var(--glass-border);
}

.footer-col h4 {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.footer-link {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
  transition: all 0.4s ease;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(10px);
}

.social-circle-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-circle {
  width: 60px;
  height: 60px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--white);
}

.social-circle:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-10px) rotate(10deg);
  box-shadow: 0 15px 30px var(--accent-glow);
}

.footer-bottom {
  margin-top: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .mega-footer {
    padding: 80px 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .social-circle-row {
    justify-content: center;
  }
  .footer-link:hover {
    transform: translateY(-5px);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bg-text {
    font-size: 35vw;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .footer-link {
    font-size: 1.2rem;
  }
  .footer-top h2 {
    font-size: 2.5rem;
  }
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
}

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

.nav-links {
  display: flex;
  gap: 3.5rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
}

/* New Hero Style */
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(147, 51, 234, 0.05),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(79, 70, 229, 0.05),
      transparent 40%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  margin-bottom: 2rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

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

.hero-img-box {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 20px var(--accent-glow));
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-img-box:hover img {
  transform: translateY(-20px) scale(1.08) rotate(2deg);
}

.hero-img-box::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.25;
  z-index: 1;
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.35;
  }
}

/* Custom Cursor and Trail */
body {
  cursor: none;
}

a,
button,
.btn,
.social-circle,
.mobile-toggle {
  cursor: none;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(147, 51, 234, 0.05);
}

@media (max-width: 768px) {
  body,
  a,
  button,
  .btn,
  .social-circle,
  .mobile-toggle {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* Custom Navigation Button */
.nav-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
}

@media (max-width: 1300px) {
  .nav-links {
    gap: 1.5rem;
  }

  .nav-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  .container {
    max-width: 100%;
    padding: 0 2rem;
  }

  .logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6rem;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-img-box img {
    transform: none;
  }
  .hero-img-box::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .responsive-rtl {
    direction: ltr !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  header .btn-primary {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* About Page Image Fix */
.about-image {
  width: 100%;
  height: clamp(350px, 60vh, 650px);
  object-fit: cover;
  border-radius: clamp(20px, 4vw, 40px);
  border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .about-image {
    height: auto;
    aspect-ratio: 16/9;
    min-height: 200px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Pricing Localization Utilities */
.gst-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.payment-methods i {
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: var(--accent);
}

.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  font-size: 1.5rem;
}

/* Infinite Marquee */
.marquee-container {
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2.5rem 0;
  display: flex;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
  padding-right: 4rem;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.marquee-item span {
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

