@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

body {
	font-family: 'Inter', sans-serif;
    background-color: #0a192f;
    color: #e6f1ff;
    overflow-x: hidden;
}

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .gradient-text {
            background: linear-gradient(90deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-bg {
            background: linear-gradient(90deg, #38bdf8, #818cf8);
        }

        .gradient-border {
            position: relative;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 0.5rem;
            padding: 2px;
            background: linear-gradient(90deg, #38bdf8, #818cf8);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 0.75rem;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.btn-glow-menu {
            position: relative;
            overflow: hidden;
			  padding: 10px 24px;
        }

        .btn-glow {
            position: relative;
            overflow: hidden;
			  padding: 20px 48px;
			  width: 100%;
        }

        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .btn-glow:hover::before {
            left: 100%;
        }

        .social-icon {
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: rgba(56, 189, 248, 0.2);
            position: absolute;
            left: -1rem;
            top: -1rem;
            line-height: 1;
        }

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 20px 48px;
  font-weight: bold;
  font-size: 1.125rem;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.secondary-btn:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4), 0 0 20px rgba(56, 189, 248, 0.3);
}





        .header-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.3), transparent 60%);
    z-index: 0;
}

@media (max-width: 640px) {
    .header-gradient {
        width: 100%;
    }
}






/* Original desktop styles remain unchanged */

@media (max-width: 767px) {
  #nav-menu {
    background-color: rgba(23, 72, 104, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    flex-direction: column;
    text-align: center;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  #nav-menu ul li a {
    font-size: 1.25rem;
    display: block;
  }
}









/* Sticky Nav Container */
.sticky-nav {
  position: sticky;
  top: 20px;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  z-index: 9999;
}

/* Nav Inner Glassmorphism */
.nav-inner {
  max-width: 1220px;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: transparent;
  display: flex;
  align-items: center;
}

.dropcode-text {
  font-weight: 700; /* heavy bold */
  color: white;
  letter-spacing: 0.04rem;
  margin-left: 4px;
}

.studio-text {
  font-weight: 100; /* very thin */
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: -6px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: 2px;
}


/* Nav Link Hover Gradient Underline */
.nav-link {
  position: relative;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Book a Call Gradient Glow Button */
.gradient-bg {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
}

/* Mobile Toggle */
#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}


.scroll-down-arrow {
  display: inline-block;
  color: white;
  font-size: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

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






        /* New styles for combined testimonial/CTA section */
        .testimonial-cta-section {
            position: relative;
            background: linear-gradient(135deg, rgba(129, 140, 248, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
            overflow: hidden;
            padding: 80px 0;
        }

        .floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(56, 189, 248, 0.25) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 30s linear infinite;
            z-index: 1;
        }

        .floating-dots:nth-child(2) {
            animation-direction: reverse;
            animation-duration: 25s;
            opacity: 0.7;
        }

        @keyframes float {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 500px 500px;
            }
        }

        .testimonial-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(56, 189, 248, 0.15);
        }

        .accolade-bar {
            background: linear-gradient(90deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1), rgba(56, 189, 248, 0.1));
            border-left: 4px solid #38bdf8;
            padding: 15px 20px;
            margin: 40px auto;
            max-width: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .star-rating {
            color: #FFD700;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .client-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            margin-top: 10px;
        }

        .client-title {
            font-size: 0.9rem;
            color: #9CA3AF;
        }

        /* Enhanced Why Landing Pages Section */
        .why-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%);
            overflow: hidden;
			border-top: 1px solid #3ABBF8;
        }

        .why-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(56, 189, 248, 0.3) 0%, transparent 75%);
            z-index: 0;
        }

        .why-card {
            transition: all 0.3s ease;
            height: 100%;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
        }

        .why-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #9CA3AF;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

		.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 287px);
  column-gap: 24px;
  row-gap: 32px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}

@media (max-width: 599px) {
  .why-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}





/* === Gradient Underline with Rounded Ends === */
.underline-container {
  position: relative;
  display: inline-block;
  padding-bottom: 8px; /* space for underline */
}

.scribble-underline {
  position: absolute;
  bottom: 0;  /* aligns to bottom of container */
  left: 0;
  width: 100%;
  height: 18px; /* adjust if needed */
  pointer-events: none;
  user-select: none;
}








@media (max-width: 1024px) {
  p.ignore-max-width {
    max-width: none !important;
    width: 100% !important;
  }
}












.secondary-btn {
  overflow: hidden;
  position: relative;
}

.secondary-btn i {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.secondary-btn:hover i {
  animation: slideScrollEffect 0.6s ease forwards;
}

@keyframes slideScrollEffect {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0;
  }
  51% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}




@keyframes ringing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30%, 50%, 70% {
    transform: rotate(15deg);
  }
  20%, 40%, 60%, 80% {
    transform: rotate(-15deg);
  }
}

.btn-glow:hover .ringing-phone {
  animation: ringing 0.8s infinite;
}




.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-4px);
}








/* Page Loader Spinner */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid transparent;
  border-top: 6px solid #38bdf8;
  border-right: 6px solid #818cf8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

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

/* Fade-out animation */
.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}



