@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Host Grotesk", sans-serif;
  background-color: #1A1325;
  color: #f5f5f5;
  position: relative;
}

/* Interactive Grid Background */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
}

/* Hero Word Marquee */
.hero-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    opacity: 1;
}

.hero-marquee.visible {
    opacity: 1;
}

.hero-marquee-row {
    width: 100%;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 6rem;
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    will-change: transform;
    animation: hero-marquee-scroll linear infinite;
    padding-right: 6rem;
    animation-play-state: running;
}

.hero-marquee-row[data-speed="60"] .hero-marquee-content {
    animation-duration: 60s;
    color: rgba(255, 122, 28, 0.12);
}

.hero-marquee-row[data-speed="70"] .hero-marquee-content {
    animation-duration: 70s;
    color: rgba(255, 255, 255, 0.10);
}

.hero-marquee-row[data-speed="80"] .hero-marquee-content {
    animation-duration: 80s;
    color: rgba(255, 122, 28, 0.08);
}

@keyframes hero-marquee-scroll {
    0% {
        transform: translate3d(0%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-marquee-content {
        animation: none !important;
    }
}

/* Enable hardware acceleration for better performance */
.hero-marquee-content,
.grid-canvas,
.custom-cursor {
    transform: translateZ(0);
    will-change: transform;
}

/* Reduce resource usage on mobile */
@media (max-width: 768px) {
    .hero-marquee-content {
        font-size: 6rem;
        gap: 4rem;
        padding-right: 4rem;
    }
    
    .grid-background {
        opacity: 0.3;
    }
}

/* Mobile optimizations for hero marquee */
@media (max-width: 1024px) {
    .hero-marquee-content {
        font-size: 8rem;
        gap: 4rem;
        letter-spacing: 0.2em;
    }
}

@media (max-width: 768px) {
    .hero-marquee {
        display: flex; /* Show on mobile */
    }
}

.grid-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(255, 122, 28, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, scale 0.3s ease;
  box-shadow: 
    0 0 20px rgba(255, 122, 28, 0.4),
    0 0 40px rgba(255, 122, 28, 0.2),
    0 0 60px rgba(255, 122, 28, 0.1);
  mix-blend-mode: screen;
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(255, 122, 28, 0.8);
  box-shadow: 
    0 0 25px rgba(255, 122, 28, 0.6),
    0 0 50px rgba(255, 122, 28, 0.3),
    0 0 75px rgba(255, 122, 28, 0.15);
}

/* Inspirational Quote Section */
.inspiration-quote {
  padding: 4rem 2rem;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 10;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FF7A1C;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 
    0 2px 8px rgba(255, 122, 28, 0.4),
    0 4px 16px rgba(255, 122, 28, 0.3),
    0 8px 24px rgba(255, 122, 28, 0.2),
    0 0 40px rgba(255, 122, 28, 0.15);
}

@media (max-width: 768px) {
  .inspiration-quote {
    padding: 3rem 1rem;
  }
  
  .quote-text {
    font-size: 2rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .quote-text {
    font-size: 1.6rem;
  }
}

/* Mobile Reviews Section */
.mobile-reviews {
  display: none; /* Hidden by default, shown only on mobile */
  padding: 3rem 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.mobile-reviews-container {
  width: 100%;
  max-width: 100vw;
}

.mobile-reviews-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 3rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.reviews-rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reviews-row {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.reviews-row-right {
  animation-name: scrollRight;
}

.reviews-row-left {
  animation-name: scrollLeft;
}

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

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

.review-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  margin-right: 1rem;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 122, 28, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.review-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 122, 28, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.review-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-style: italic;
  white-space: normal;
  word-wrap: break-word;
}

.review-author {
  color: #ff7a1c;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  white-space: normal;
  margin-bottom: 0.25rem;
}

.review-designation {
  color: #b0b0b0;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: right;
  white-space: normal;
  font-style: italic;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
  .mobile-reviews {
    display: block;
  }
}

@media (max-width: 480px) {
  .mobile-reviews {
    padding: 2rem 0;
  }
  
  .mobile-reviews-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .reviews-rows {
    gap: 1rem;
  }
  
  .review-item {
    min-width: 240px;
    max-width: 280px;
    padding: 1.2rem;
  }
  
  .review-text {
    font-size: 0.9rem;
  }
  
  .review-author {
    font-size: 0.8rem;
  }
  
  .review-designation {
    font-size: 0.7rem;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 7vw;
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

p {
  font-size: 1.5rem;
  font-weight: 400;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  background: rgba(26, 19, 37, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 28, 0.3);
  border-radius: 50px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  filter: brightness(0) saturate(100%) invert(95%) sepia(14%) saturate(281%) hue-rotate(14deg) brightness(103%) contrast(94%);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
}

.nav-logo a:hover {
  color: #FF7A1C;
}

.nav-logo a:hover .logo-img {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #1A1325;
  background: #FF7A1C;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

/* Mobile nav toggle styling */
@media (max-width: 768px) {
  .nav-toggle {
    padding: 5px;
    z-index: 1000;
  }
}

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

.hamburger-icon rect {
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Active state for hamburger icon */
.nav-toggle.active .bar-top {
  transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active .bar-middle {
  opacity: 0;
}

.nav-toggle.active .bar-bottom {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile hamburger menu styling */
@media (max-width: 768px) {
  .hamburger-icon rect {
    fill: #FF7A1C !important;
    filter: drop-shadow(0 0 3px rgba(255, 122, 28, 0.5));
  }
  
  .nav-toggle {
    padding: 8px !important;
    background: none;
    border: none;
    border-radius: 0;
  }
}

/* Section Styles */
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A1325;
  color: #f5f5f5;
  overflow: hidden;
}

.hero {
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.hero-header {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  will-change: transform, opacity;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #FF7A1C;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0.5px;
  opacity: 0.9;
  display: block;
  width: 100%;
  position: relative;
  white-space: nowrap;
  overflow: visible;
  min-width: 200px;
  height: 1.4em;
}

.cursor {
  color: #FF7A1C;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}




.hero-cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.8rem;
  background: linear-gradient(135deg, #FF7A1C, #FF6B14);
  border: none;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 8s forwards;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(255, 122, 28, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FF8C2A, #FF7A1C);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-cta-btn:hover::before {
  opacity: 1;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(255, 122, 28, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-cta-btn:active {
  transform: translateY(-1px);
  box-shadow: 
    0 4px 15px rgba(255, 122, 28, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-about {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease-out 8s forwards;
}

.hero-about p {
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-about p:last-child {
  margin-bottom: 0;
  color: #FF7A1C;
  font-weight: 500;
}

@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}





@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes removeCursor {
  to {
    border-right: none;
  }
}

.hero-logo-img {
  height: 25vh;
  max-height: 250px;
  min-height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 15px rgba(255, 122, 28, 0.3));
  animation: logoFloat 3s ease-in-out infinite;
}


@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}






/* Other Sections */
.about {
  background-color: #1A1325;
  color: #f5f5f5;
}

.services {
  background-color: #1A1325;
  color: #f5f5f5;
}

.contact {
  background-color: #1A1325;
  color: #f5f5f5;
}

.research {
  background-color: #1A1325;
  color: #f5f5f5;
}

.careers {
  background-color: #1A1325;
  color: #f5f5f5;
}

.section-content {
  max-width: 800px;
  text-align: center;
  padding: 2rem;
}

.section-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 1000px) {
  .navbar {
    width: calc(100% - 2rem);
    top: 1rem;
  }

  .nav-container {
    padding: 0.8rem 1.5rem;
  }

  .logo-img {
    height: 28px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .hero-logo-img {
    height: 20vh;
    max-height: 200px;
    min-height: 100px;
  }

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


  .hero-cta-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    margin-top: 1.5rem;
  }
  
  .hero-about {
    max-width: 500px;
    margin: 2.5rem auto 0;
    padding: 0 1rem;
  }
  
  .hero-about p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(26, 19, 37, 0.95);
    backdrop-filter: blur(10px);
    width: calc(100% - 2rem);
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1rem;
    border: 1px solid rgba(227, 227, 219, 0.2);
  }

  .nav-menu.active {
    left: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-logo a {
    font-size: 1.2rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  h1 {
    font-size: 12vw;
    text-align: center;
  }

  h2 {
    font-size: 8vw;
  }

  p {
    font-size: 1.1rem;
  }

  .hero-header {
    top: 45%;
    width: 100%;
  }


  .section-content {
    padding: 1rem;
  }

  .section-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    width: calc(100% - 1rem);
    top: 0.5rem;
  }

  .nav-container {
    padding: 0.6rem 1rem;
  }

  .nav-menu {
    top: 70px;
    width: calc(100% - 1rem);
  }

  .nav-logo a {
    font-size: 1.1rem;
  }

  .section-content p {
    font-size: 0.9rem;
  }
}




/* Contact Form Styles */
.contact {
  background: #1A1325;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.contact-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #141414;
  line-height: 1.1;
}

.blue-dot {
  color: #4285f4;
}

.contact-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}

.email-link {
  color: #4285f4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #2563eb;
}

.contact-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.message-group {
  margin-bottom: 2rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1.2rem 3.5rem 1.2rem 1.2rem;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  resize: none;
  outline: none;
}

.input-group textarea {
  min-height: 120px;
  padding-top: 1.2rem;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #4285f4;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
}

.input-group input:valid,
.input-group textarea:valid {
  border-color: #34d399;
}

.input-group label {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  font-size: 1rem;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 0.5rem;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group input.has-value + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label,
.input-group textarea.has-value + label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.85rem;
  color: #4285f4;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.input-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  transition: color 0.3s ease;
  pointer-events: none;
}

.input-group:focus-within .input-icon {
  color: #4285f4;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.attach-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  color: #666;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.attach-btn:hover {
  border-color: #4285f4;
  color: #4285f4;
  transform: translateY(-2px);
}

.submit-btn {
  position: relative;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #FF7A1C 0%, #ff5722 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 180px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(66, 133, 244, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  cursor: not-allowed;
}

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  opacity: 1;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes successSlide {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.input-group input.error,
.input-group textarea.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-group.focused {
  transform: translateY(-2px);
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  animation: slideIn 0.3s ease;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .contact {
    padding: 3rem 1.5rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .contact-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-card {
    flex: 0 0 420px;
  }
  
  .testimonials-carousel {
    padding: 0 60px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .metric-number {
    font-size: 3rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 24px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero-logo-img {
    height: 18vh;
    max-height: 160px;
    min-height: 80px;
  }

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

  .hero-subtitle-second {
    font-size: 1rem;
    animation: 
      typewriterSecond 3s steps(36) 6.5s forwards,
      blinkCursorSecond 0.8s infinite 6.5s;
  }

  .hero-cta-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    margin-top: 1.2rem;
  }
  
  .hero-about {
    max-width: 400px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
  }
  
  .hero-about p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .about-header {
    width: 100%;
    padding: 0 1rem;
  }
  
  .about-content {
    max-width: 100%;
  }
  
  .about-heading h1 {
    font-size: 14vw;
  }
  
  .about-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .about-tagline {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .about-tagline-new {
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 2rem 0 0 0;
    text-align: left;
  }
  
  .about-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    text-align: center;
  }
  
  .services-preview-header h2 {
    font-size: 2.5rem;
  }
  
  .services-preview-subtext {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.25rem;
  }
  
  .service-image {
    height: 140px;
    margin-bottom: 1rem;
  }
  
  .service-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  
  .service-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    margin-top: 1rem;
  }
  
  .metrics {
    padding: 3rem 0;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .metric-card {
    padding: 2rem 1.5rem;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
  
  .metric-label {
    font-size: 0.9rem;
  }
  
  .testimonials-header h2 {
    font-size: 2.5rem;
  }
  
  .testimonials-subtext {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .carousel-arrow {
    display: flex;
    width: 40px;
    height: 40px;
  }
  
  .testimonials-carousel {
    padding: 0 20px;
  }
  
  .testimonial-card {
    flex: 0 0 380px;
    padding: 2.5rem 2rem;
  }
  
  .carousel-dots {
    display: flex;
  }
  
  .testimonials-gradient-left,
  .testimonials-gradient-right {
    width: 50px;
  }
  
  /* Mobile Rating Styles */
  .overall-rating-display {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
  }
  
  .overall-stars {
    gap: 0.2rem;
  }
  
  .overall-stars .star {
    width: 18px;
    height: 18px;
  }
  
  .rating-number {
    font-size: 1.4rem;
  }
  
  .rating-count {
    font-size: 0.8rem;
  }
  
  .testimonial-stars {
    gap: 0.15rem;
  }
  
  .testimonial-stars .star {
    width: 14px;
    height: 14px;
  }

  .contact {
    padding: 2rem 1rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .attach-btn,
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-header {
    margin-bottom: 2rem;
  }
  
  .contact-header h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 0.8rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .input-group {
    margin-bottom: 1.2rem;
  }
  
  .input-group input,
  .input-group textarea {
    padding: 1.1rem 3rem 1.1rem 1.1rem;
    font-size: 0.95rem;
  }
  
  .input-group label {
    left: 1.1rem;
    top: 1.1rem;
    font-size: 0.95rem;
  }
  
  .input-icon {
    right: 1.1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact {
    padding: 1.5rem 0.8rem;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  
  .input-group input,
  .input-group textarea {
    padding: 1rem 2.8rem 1rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
  }
  
  .input-group label {
    left: 1rem;
    top: 1rem;
    font-size: 0.9rem;
  }
  
  .input-group input:focus + label,
  .input-group input:valid + label,
  .input-group input.has-value + label,
  .input-group textarea:focus + label,
  .input-group textarea:valid + label,
  .input-group textarea.has-value + label {
    font-size: 0.8rem;
    left: 0.7rem;
  }
  
  .input-icon {
    right: 1rem;
  }
  
  .attach-btn,
  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .contact-header h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  
  .contact-header p {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .contact {
    padding: 1rem 0.5rem;
  }
  
  .contact-form {
    padding: 1.2rem 0.8rem;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .input-group input,
  .input-group textarea {
    font-size: 0.85rem;
  }
}

html, body {
  overflow-x: hidden;
}

/* Mobile fixes - add to your existing @media queries */
@media (max-width: 1000px) {
  .navbar {
    width: calc(100% - 2rem);
    top: 1rem;
    padding: 0; /* Remove extra padding */
  }

  .nav-container {
    padding: 1rem 1.5rem; /* Increase padding for better touch targets */
  }

  .nav-logo a {
    font-size: 1.3rem; /* Slightly larger */
    padding: 0.5rem 1rem; /* Add padding to contain the highlight */
    border-radius: 25px; /* Match the nav bar shape */
    background: transparent;
    transition: background 0.3s ease;
  }

  .nav-logo a:hover {
    background: rgba(227, 227, 219, 0.1);
  }

  .nav-menu {
    position: fixed;
    left: 50%; /* Center the menu */
    transform: translateX(-50%); /* Center transform */
    top: 90px; /* Adjust based on navbar height */
    flex-direction: column;
    background: rgba(26, 19, 37, 0.95);
    backdrop-filter: blur(10px);
    width: calc(100% - 3rem); /* Match navbar width */
    max-width: 400px; /* Limit max width */
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1rem;
    border: 1px solid rgba(227, 227, 219, 0.2);
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }

}

@media (max-width: 480px) {
  .navbar {
    width: calc(100% - 1.5rem);
    top: 0.8rem;
  }

  .nav-container {
    padding: 0.8rem 1.2rem;
  }

  .nav-menu {
    top: 80px;
    width: calc(100% - 2rem);
  }

  .nav-logo a {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }

}






/* About Us Section Styles */
.about {
    background-color: #1A1325;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
}

.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
}

.about-header {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
    padding: 0 2rem;
}

.about-heading h1 {
    font-size: 7vw;
    font-weight: 800;
    line-height: 0.9;
    margin: 0;
    color: #f5f5f5;
}

.about-orange {
    color: #FF7A1C;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    width: 100%;
    text-align: left;
}

.about-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #f5f5f5;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

.about-tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #FF7A1C;
    opacity: 0.9;
    font-style: italic;
    margin: 1rem 0 0 0;
    font-weight: 300;
    text-align: left;
}

.about-tagline-new {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #f5f5f5;
    margin: 2.5rem 0 0 0;
    font-weight: 900;
    text-align: left;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(255, 122, 28, 0.3);
    position: relative;
    transition: all 0.15s ease;
    cursor: pointer;
}

.about-tagline-new .highlight:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    text-shadow: 
        0 0 10px #FF7A1C,
        0 0 20px #FF7A1C,
        0 0 30px #FF7A1C,
        0 0 40px rgba(255, 122, 28, 0.8) !important;
    transform: scale(1.05);
}

.about-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.btn-primary {
    background-color: #FF7A1C;
    color: #1A1325;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #FF7A1C;
}

.btn-primary:hover {
    background-color: transparent;
    color: #FF7A1C;
    border: 2px solid #FF7A1C;
}

.btn-secondary {
    background-color: transparent;
    color: #f5f5f5;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #f5f5f5;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #1A1325;
}

.highlight {
    background: linear-gradient(135deg, #FF7A1C, #FF9F4A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.1), rgba(255, 159, 74, 0.1));
    border-radius: 4px;
    z-index: -1;
}

/* Services Preview Section */
.services-preview {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background-color: #1A1325;
    margin-top: -3rem;
}

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

.services-preview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-preview-header h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.services-orange {
    color: #FF7A1C;
}

/* Testimonials Section */
.testimonials {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: #1A1325;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.testimonials-orange {
    color: #FF7A1C;
}

/* Overall Rating Display */
.overall-rating {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.overall-rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 122, 28, 0.1);
    padding: 1rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 28, 0.3);
    backdrop-filter: blur(10px);
}

.overall-stars {
    display: flex;
    gap: 0.25rem;
}

.overall-stars .star {
    transition: transform 0.2s ease;
}

.overall-stars .star:hover {
    transform: scale(1.1);
}

.overall-rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.rating-count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Testimonial Star Ratings */
.testimonial-stars {
    display: flex;
    gap: 0.15rem;
    margin-top: 0.5rem;
}

.testimonial-stars .star {
    transition: transform 0.2s ease;
    opacity: 0.9;
}

.testimonial-stars .star:hover {
    transform: scale(1.05);
    opacity: 1;
}

.testimonials-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #f5f5f5;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-gradient-left,
.testimonials-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 20;
    pointer-events: none;
}

.testimonials-gradient-left {
    left: 0;
    background: linear-gradient(to right, #1A1325, transparent);
}

.testimonials-gradient-right {
    right: 0;
    background: linear-gradient(to left, #1A1325, transparent);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 122, 28, 0.1);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF7A1C;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    outline: none;
}

.carousel-arrow:hover {
    background: rgba(255, 122, 28, 0.2);
    border-color: #FF7A1C;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 20px;
}

.carousel-arrow-right {
    right: 20px;
}

.testimonials-carousel {
    overflow: hidden;
    padding: 0 80px;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    animation: scroll-testimonials 120s linear infinite;
    width: max-content;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-14 * 520px));
    }
}

.testimonial-card {
    flex: 0 0 480px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 122, 28, 0.08);
    border-color: rgba(255, 122, 28, 0.3);
    box-shadow: 0 10px 30px rgba(255, 122, 28, 0.1);
}


.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #f5f5f5;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF7A1C, #FF9A4C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1325;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 1rem;
    color: #f5f5f5;
    opacity: 0.7;
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 122, 28, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #FF7A1C;
}

.services-preview-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #f5f5f5;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #f5f5f5;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 122, 28, 0.1);
    border-color: #FF7A1C;
    box-shadow: 0 15px 35px rgba(255, 122, 28, 0.2);
}

.service-image {
    position: relative;
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.1), rgba(255, 122, 28, 0.05));
    border: 1px solid rgba(255, 122, 28, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon svg {
    color: #f5f5f5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: #FF7A1C;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #FF7A1C;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #f5f5f5;
    opacity: 0.8;
    margin: 0 0 1.5rem 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-tag {
    background: rgba(255, 122, 28, 0.1);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 12px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #FF7A1C;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: rgba(255, 122, 28, 0.2);
    border-color: #FF7A1C;
}

.service-button {
    background: #FF7A1C;
    color: #1A1325;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    outline: none;
}

.service-button:hover {
    background: #FF9A4C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 28, 0.3);
}

.service-card:hover .service-button {
    background: #f5f5f5;
    color: #1A1325;
}

/* Metrics Section */
.metrics {
    background-color: #1A1325;
    padding: 2rem 0 4rem 0;
    margin-top: 0;
}

.about .section-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 3rem auto 2rem auto;
}

.metrics-header {
    text-align: center;
    margin: 0 auto 2rem auto;
    max-width: 800px;
}

.metrics-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FF7A1C;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.metrics-subtitle {
    font-size: 1.125rem;
    color: #b0b0b0;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.metrics-container {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 122, 28, 0.03) 50%, rgba(138, 43, 226, 0.05) 100%);
    border: 2px solid rgba(255, 122, 28, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 122, 28, 0.15) 30%, 
        rgba(255, 184, 77, 0.2) 50%, 
        rgba(255, 122, 28, 0.15) 70%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.metric-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        rgba(255, 122, 28, 0.1) 45deg, 
        transparent 90deg, 
        rgba(138, 43, 226, 0.08) 180deg, 
        transparent 225deg, 
        rgba(255, 122, 28, 0.1) 315deg, 
        transparent 360deg);
    animation: rotate-glow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.metric-card:hover {
    transform: perspective(1000px) rotateX(-3deg) translateY(-12px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 122, 28, 0.08) 50%, rgba(138, 43, 226, 0.1) 100%);
    border-color: rgba(255, 122, 28, 0.5);
    box-shadow: 
        0 20px 60px rgba(255, 122, 28, 0.25),
        0 0 40px rgba(255, 122, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover::after {
    opacity: 1;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 50%, #FF9A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(255, 122, 28, 0.3));
    text-shadow: 0 0 30px rgba(255, 122, 28, 0.4);
}

.metric-card:hover .metric-number {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 6px 20px rgba(255, 122, 28, 0.5));
    text-shadow: 0 0 40px rgba(255, 122, 28, 0.6);
}

.metric-number.bounce {
    animation: metricBounce 0.6s ease-out;
}

@keyframes metricBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.1); }
    50% { transform: scale(1.05); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-label {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.metric-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    margin-top: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-description {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #141414;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #FF7A1C 0%, #ff9a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF7A1C;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Top-Ranking Apps Section */
.top-apps {
    background-color: #1A1325;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -5rem;
    z-index: 2;
}

/* Celebration Animation Container */
.celebration-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Confetti Animation */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FF7A1C;
    border-radius: 50%;
    animation: confettiFall 4s linear infinite;
    opacity: 0.8;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: #FF7A1C;
}

.confetti:nth-child(2) {
    left: 20%;
    animation-delay: 0.5s;
    background: #FFD700;
}

.confetti:nth-child(3) {
    left: 30%;
    animation-delay: 1s;
    background: #FF7A1C;
}

.confetti:nth-child(4) {
    left: 50%;
    animation-delay: 1.5s;
    background: #FFD700;
}

.confetti:nth-child(5) {
    left: 60%;
    animation-delay: 2s;
    background: #FF7A1C;
}

.confetti:nth-child(6) {
    left: 70%;
    animation-delay: 2.5s;
    background: #FFD700;
}

.confetti:nth-child(7) {
    left: 80%;
    animation-delay: 3s;
    background: #FF7A1C;
}

.confetti:nth-child(8) {
    left: 90%;
    animation-delay: 3.5s;
    background: #FFD700;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Star Particles Animation */
.celebration-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starTwinkle 3s ease-in-out infinite;
}

.star-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star-particle:nth-child(2) {
    top: 40%;
    left: 85%;
    animation-delay: 0.6s;
}

.star-particle:nth-child(3) {
    top: 60%;
    left: 25%;
    animation-delay: 1.2s;
}

.star-particle:nth-child(4) {
    top: 30%;
    left: 75%;
    animation-delay: 1.8s;
}

.star-particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 2.4s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

/* Problem-Solving CTA Section */
.problem-solving-cta {
    background: 
        linear-gradient(135deg, #2D1B47 0%, #1A1325 30%, #2A1E3B 60%, #1A1325 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.problem-solving-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 122, 28, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 122, 28, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.problem-solving-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 122, 28, 0.03) 0px,
            rgba(255, 122, 28, 0.03) 1px,
            transparent 1px,
            transparent 80px
        );
    pointer-events: none;
    z-index: 1;
}

.problem-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.problem-cta-container::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 122, 28, 0.1), rgba(138, 43, 226, 0.08));
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.problem-cta-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(-45deg, rgba(138, 43, 226, 0.12), rgba(255, 122, 28, 0.08));
    border-radius: 50%;
    filter: blur(35px);
    z-index: -1;
}

.problem-cta-content {
    animation: fadeInUp 1s ease-out;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.1), rgba(138, 43, 226, 0.08));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 25%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 6s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.12), rgba(255, 122, 28, 0.08));
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 8%;
    animation-delay: 4s;
    animation-duration: 7s;
    border-radius: 15px;
}

.shape-4 {
    width: 30px;
    height: 30px;
    top: 70%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 9s;
    transform: rotate(45deg);
    border-radius: 5px;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 5%;
    animation-delay: 3s;
    animation-duration: 5s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(45deg, rgba(255, 122, 28, 0.08), rgba(138, 43, 226, 0.1));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translateY(-10px) rotate(240deg);
        opacity: 0.8;
    }
}

.problem-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.solve-it-orange {
    color: #FF7A1C;
    display: block;
    margin-top: 0.5rem;
}

.problem-cta-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.problem-cta-button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.problem-cta-button {
    position: relative;
    background: linear-gradient(135deg, #FF7A1C 0%, #FF9F40 50%, #FF7A1C 100%);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(255, 122, 28, 0.3),
        0 4px 16px rgba(255, 122, 28, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transform: translateY(0);
    z-index: 1;
}

.problem-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 122, 28, 0.4),
        0 6px 24px rgba(255, 122, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FF8A2C 0%, #FFAF50 50%, #FF8A2C 100%);
}

.problem-cta-button:active {
    transform: translateY(-2px) scale(1.01);
}

.button-text {
    position: relative;
    z-index: 3;
    display: block;
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF7A1C, #FF6B0A, #FF7A1C);
    border-radius: 60px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    blur: 4px;
}

.problem-cta-button:hover .button-glow {
    opacity: 0.8;
    animation: buttonGlow 2s ease-in-out infinite;
}

.button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.problem-cta-button:hover .button-pulse {
    animation: buttonPulse 1.5s ease-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        opacity: 0.8;
        filter: blur(4px);
    }
    50% {
        opacity: 1;
        filter: blur(6px);
    }
}

@keyframes buttonPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.problem-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.problem-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.problem-cta-secondary:active {
    transform: translateY(0);
}

/* Enhanced CTA Styles for Smarter Solutions */
.smart-solutions-title {
    position: relative;
    color: #ffffff;
}

.glowing-orange {
    color: #FF7A1C !important;
    font-size: 1.1em !important;
    text-shadow: 0 0 15px rgba(255, 122, 28, 0.5);
    position: relative;
}

.enhanced-description {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem) !important;
    color: #e0e0e0 !important;
    font-weight: 500;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.7;
    text-shadow: none;
    position: relative;
    padding: 1rem 0;
}

.enhanced-button-wrapper {
    position: relative;
    margin-top: 3rem;
}

.enhanced-cta-button {
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 50%, #FF7A1C 100%) !important;
    font-size: 1.3rem !important;
    padding: 1.4rem 3.5rem !important;
    border-radius: 50px !important;
    position: relative;
    transition: all 0.3s ease;
}

.enhanced-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(255, 122, 28, 0.4),
        0 8px 20px rgba(255, 122, 28, 0.3);
}

.top-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-apps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.top-apps-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.apps-carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.apps-carousel-container {
    position: relative;
    overflow: visible;
    border-radius: 20px;
    width: 100%;
    max-width: 1400px;
    padding: 30px 0;
    margin: 0 auto;
}

.apps-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    animation: infinite-scroll-apps 25s linear infinite;
}

@keyframes infinite-scroll-apps {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.app-card {
    flex: 0 0 300px;
    min-width: 300px;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.08) 0%, rgba(138, 43, 226, 0.06) 50%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 122, 28, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 122, 28, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 215, 0, 0.3) 25%,
        rgba(255, 122, 28, 0.4) 50%,
        rgba(255, 215, 0, 0.3) 75%,
        transparent
    );
    transition: left 0.8s ease;
    z-index: 1;
}

.app-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 122, 28, 0.4) 50%, rgba(138, 43, 226, 0.2) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.app-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 122, 28, 0.8);
    box-shadow: 
        0 15px 40px rgba(255, 122, 28, 0.3),
        0 0 25px rgba(255, 122, 28, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.1) 0%, rgba(255, 122, 28, 0.08) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.app-card:hover::before {
    left: 100%;
}

.app-card:hover::after {
    opacity: 1;
}

.app-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}


.app-icon img,
.app-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.app-card:hover .app-icon img,
.app-card:hover .app-logo {
    transform: scale(1.08);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 122, 28, 0.3);
    filter: brightness(1.1);
}


.app-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.app-name {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-card:hover .app-name {
    background: linear-gradient(135deg, #FF7A1C 0%, #ff9500 50%, #FF7A1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.02);
}


.app-tagline {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
}

.app-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.2) 0%, rgba(255, 122, 28, 0.2) 100%);
    border: 1px solid rgba(255, 122, 28, 0.4);
    color: #FF7A1C;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(255, 122, 28, 0.2);
}

.app-card:hover .app-category {
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.4) 0%, rgba(255, 122, 28, 0.4) 100%);
    border-color: rgba(255, 122, 28, 0.8);
    color: #FFF;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 122, 28, 0.3);
}

.app-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.star {
    color: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.star.filled {
    color: #FF7A1C;
    fill: #FF7A1C;
    stroke: #FF7A1C;
}

.app-card:hover .star.filled {
    color: #FF7A1C;
    fill: #FF7A1C;
    stroke: #FF7A1C;
    filter: drop-shadow(0 0 8px rgba(255, 122, 28, 0.6));
    transform: scale(1.05);
}

@keyframes starTwinkle {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
}

.rating-text {
    font-weight: 600;
    color: #FF7A1C;
    font-size: 0.95rem;
}

.app-card:hover .rating-text {
    color: #FF7A1C;
    transform: scale(1.02);
    font-weight: 700;
}


.app-store-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #FF7A1C, #FF9F4A);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.app-store-badge:hover {
    background: linear-gradient(135deg, #FF9F4A, #FF7A1C);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 122, 28, 0.4);
}

.app-store-badge span {
    font-size: 0.7rem;
    opacity: 0.9;
}

.app-store-badge strong {
    font-weight: 700;
    font-size: 0.85rem;
}

.app-store-link {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 12px;
    background: transparent;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.app-store-link:hover {
    transform: translateY(-5px) scale(1.12);
    filter: brightness(1.3) drop-shadow(0 12px 24px rgba(255, 122, 28, 0.4));
    animation: buttonBounce 0.8s ease-in-out infinite;
}

@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(-5px) scale(1.12);
    }
    50% {
        transform: translateY(-8px) scale(1.15);
    }
}

.app-store-image {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.app-store-svg {
    height: 45px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(95%) sepia(14%) saturate(281%) hue-rotate(14deg) brightness(103%) contrast(94%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.app-store-link:hover .app-store-svg {
    filter: brightness(0) saturate(100%) invert(60%) sepia(74%) saturate(2613%) hue-rotate(15deg) brightness(104%) contrast(101%);
    transform: scale(1.1);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    width: calc(100% + 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 1000 !important;
    padding: 0;
    transform: translateY(-50%);
}

.carousel-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.9) 0%, rgba(138, 43, 226, 0.8) 100%);
    border: 3px solid rgba(255, 122, 28, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer !important;
    z-index: 1001 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    pointer-events: all !important;
    outline: none;
    box-shadow: 
        0 8px 25px rgba(255, 122, 28, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: visible;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(
        from 0deg,
        rgba(255, 122, 28, 0.3) 0deg,
        rgba(138, 43, 226, 0.2) 90deg,
        rgba(255, 122, 28, 0.3) 180deg,
        rgba(138, 43, 226, 0.2) 270deg,
        rgba(255, 122, 28, 0.3) 360deg
    );
    border-radius: 50%;
    opacity: 0;
    animation: rotateBorder 4s linear infinite;
    transition: opacity 0.3s ease;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(255, 122, 28, 1) 0%, rgba(138, 43, 226, 0.9) 100%);
    border-color: rgba(255, 122, 28, 1);
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(255, 122, 28, 0.5),
        0 0 30px rgba(255, 122, 28, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.carousel-btn:hover::before {
    opacity: 1;
}

.carousel-btn:active {
    transform: scale(1.05);
}

/* Button positioning handled by flexbox justify-content: space-between */

/* Gradient Fades */
.gradient-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 10;
}

.gradient-fade-left {
    left: 0;
    background: linear-gradient(90deg, #1A1325 0%, transparent 100%);
}

.gradient-fade-right {
    right: 0;
    background: linear-gradient(270deg, #1A1325 0%, transparent 100%);
}

/* Responsive Design for Apps Carousel */
@media (max-width: 1024px) {
    .app-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .top-apps-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .app-card {
        flex: 0 0 calc(100% - 0rem);
    }
    
    .top-apps-header h2 {
        font-size: 2rem;
    }
    
    .top-apps {
        padding: 2rem 0;
    }
    
    .apps-carousel-wrapper {
        padding: 20px;
    }
    
    .app-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .gradient-fade {
        display: none;
    }
}

@media (max-width: 480px) {
    .app-card {
        padding: 1rem;
    }
    
    .app-icon img {
        width: 60px;
        height: 60px;
    }
    
    .app-name {
        font-size: 1.1rem;
    }
    
    .app-tagline {
        font-size: 0.85rem;
    }
}

/* Newsletter Signup Section */
.newsletter-signup {
    background-color: #1A1325;
    padding: 0.5rem 0;
    position: relative;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.newsletter-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-subtext {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: #FF7A1C;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 122, 28, 0.1);
}

.newsletter-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF7A1C, #FF9F4A);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #FF9F4A, #FF7A1C);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.3);
}

.newsletter-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.2);
}

/* Newsletter Responsive Design */
@media (max-width: 768px) {
    .newsletter-heading {
        font-size: 2.5rem;
    }
    
    .newsletter-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-signup {
        padding: 0.5rem 0;
    }
    
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-subtext {
        font-size: 0.95rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        padding: 0.9rem 1.2rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.about-card {
    background: rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 122, 28, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.5);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.about-card:hover::before {
    left: 100%;
}

.card-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gradient-1 {
    background: linear-gradient(135deg, #FF7A1C 0%, #ff5722 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #ff9a4d 0%, #FF7A1C 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #ff5722 0%, #ff9a4d 100%);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.about-card p {
    color: #c0c0c0;
    line-height: 1.7;
    font-size: 1rem;
}

.stats-section {
    background: rgba(43, 43, 43, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255, 122, 28, 0.3);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #141414;
    margin-bottom: 0.5rem;
    display: block;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.05);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Services Section Styles */
.services {
    background-color: #1A1325;
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .gradient-text {
    color: #e3e3db;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(227, 227, 219, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(227, 227, 219, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(227, 227, 219, 0.08);
    border-color: rgba(227, 227, 219, 0.2);
}

.service-card.premium {
    border: 1px solid rgba(227, 227, 219, 0.3);
    background: rgba(227, 227, 219, 0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon .icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-gradient {
    background: linear-gradient(135deg, #FF7A1C 0%, #E1306C 100%);
}

.whatsapp-gradient {
    background: linear-gradient(135deg, #FF7A1C 0%, #25D366 100%);
}

.website-gradient {
    background: linear-gradient(135deg, #FF7A1C 0%, #667eea 100%);
}

.service-badge {
    background: rgba(255, 122, 28, 0.2);
    color: #FF7A1C;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 122, 28, 0.4);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e3e3db;
}

.service-description {
    color: #999;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #e3e3db;
}

.feature svg {
    color: #e3e3db;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-cta {
    text-align: center;
}

.price-impact {
    background: rgba(227, 227, 219, 0.1);
    border: 1px solid rgba(227, 227, 219, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.impact-text {
    color: #e3e3db;
    font-weight: 600;
}

.services-bottom {
    text-align: center;
}

.guarantee-section {
    background: rgba(227, 227, 219, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(227, 227, 219, 0.1);
}

.guarantee-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e3e3db;
}

.guarantee-section p {
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF7A1C 0%, #ff5722 100%);
    color: #f5f5f5;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.5);
    background: linear-gradient(135deg, #ff5722 0%, #FF7A1C 100%);
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(227, 227, 219, 0.03);
    animation: backgroundFloat 8s ease-in-out infinite;
}

.bg-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.bg-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-container,
    .services-container {
        padding: 4rem 1rem;
    }
    
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-card,
    .service-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-circle,
    .bg-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-container,
    .services-container {
        padding: 3rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-section {
        padding: 2rem;
    }
}

/* Services Page Styles */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.services-marquee {
    opacity: 1 !important;
}

.services-hero {
    background: transparent;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.services-hero-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.3s forwards;
}

.services-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FF7A1C;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.service-section {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 122, 28, 0.1);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #FF7A1C;
    text-align: left;
    padding-bottom: 0.5rem;
}

.service-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.service-content-single {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 0.2rem 0;
    font-size: 1rem;
    color: #d0d0d0;
}

.service-features li:before {
    content: "✓";
    color: #FF7A1C;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-video-container {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 122, 28, 0.1);
    border: 2px dashed rgba(255, 122, 28, 0.3);
}

.demo-placeholder {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.apps-showcase,
.websites-showcase {
    margin-top: 0.5rem;
}

/* Modern Apps Carousel */
.mobile-apps .apps-showcase {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    padding: 1rem 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 122, 28, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 122, 28, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.4);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.apps-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.apps-carousel.infinite-scroll {
    overflow: hidden;
    position: relative;
    animation: infiniteScroll 20s linear infinite;
}

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

.app-item {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    min-height: 300px;
}

.mobile-apps .app-item {
    flex: none;
    width: auto;
    padding: 1rem;
}

.mobile-apps .service-title {
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.mobile-apps .service-content-split {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Mobile Features Grid */
.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-feature-card {
    background: rgba(255, 122, 28, 0.1);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 28, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 28, 0.4);
    box-shadow: 0 20px 40px rgba(255, 122, 28, 0.2);
}

.mobile-feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    background: rgba(255, 122, 28, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.mobile-feature-card:hover .feature-icon {
    background: rgba(255, 122, 28, 0.3);
    transform: scale(1.1);
}

.feature-icon svg {
    color: #FF7A1C;
    transition: color 0.3s ease;
    width: 24px;
    height: 24px;
}

.mobile-feature-card:hover .feature-icon svg {
    color: #FFF;
}

.mobile-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF7A1C;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-feature-card:hover h4 {
    color: #FFF;
}

.mobile-feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.mobile-feature-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Modern Apps Carousel Styles */
.apps-carousel-modern {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 28, 0.05) 50%, transparent 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 28, 0.1);
    margin: 2rem auto;
    max-width: 1200px;
}

.apps-track {
    display: flex;
    gap: 3rem;
    animation: infinite-scroll 25s linear infinite;
    will-change: transform;
    padding: 2rem 0;
}

/* Duplicate apps for seamless loop */
.apps-track .app-item:nth-child(n+9) {
    animation-delay: 0s;
}

/* Pause animation on hover for better UX */
.apps-carousel-modern:hover .apps-track {
    animation-play-state: paused;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 2rem));
    }
}

/* Gradient fade edges for smooth visual effect */
.apps-carousel-modern::before,
.apps-carousel-modern::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.apps-carousel-modern::before {
    left: 0;
    background: linear-gradient(90deg, #1A1325 0%, rgba(26, 19, 37, 0.8) 50%, transparent 100%);
}

.apps-carousel-modern::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 19, 37, 0.8) 50%, #1A1325 100%);
}

/* Larger app icons for modern carousel */
.apps-carousel-modern .app-icon {
    width: 160px;
    height: 160px;
    border-radius: 32px;
    margin-bottom: 1.5rem;
}

.apps-carousel-modern .app-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FF7A1C;
    margin-bottom: 0.5rem;
}

.apps-carousel-modern .app-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin: 0 auto 2rem;
    object-fit: cover;
}

.app-item h4 {
    color: #FF7A1C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.app-item p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.store-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.store-badge {
    height: 24px;
    opacity: 0.7;
}

.chatbot-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.chatbot-trigger {
    background: linear-gradient(135deg, #FF7A1C, #FF9A3C);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.3);
}

.chatbot-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.4);
}

.website-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.website-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.website-item:hover {
    transform: translateY(-5px);
}

.website-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.website-info {
    padding: 1rem;
}

.website-info h4 {
    color: #FF7A1C;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.website-info p {
    color: #d0d0d0;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.client-rating {
    color: #FF7A1C;
    font-size: 1.1rem;
}

.services-cta {
    background: linear-gradient(135deg, #FF7A1C, #FF6B0A);
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(255, 122, 28, 0.2);
}

.services-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-cta p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: white;
    color: #1A1325;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1A1325;
    border-color: white;
    transform: translateY(-2px);
}

/* Interactive Elements */
.service-section {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-section:hover {
    background: rgba(255, 122, 28, 0.02);
}

.service-section.collapsible {
    border-radius: 8px;
    margin: 1rem 0;
    overflow: hidden;
}

.service-section.collapsible .service-title {
    position: relative;
    padding: 1rem;
    background: rgba(255, 122, 28, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-section.collapsible .service-title:hover {
    background: rgba(255, 122, 28, 0.15);
}

.service-section.collapsible .service-title::after {
    content: '▼';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #FF7A1C;
    font-size: 1.2rem;
}

.service-section.collapsible.collapsed .service-title::after {
    transform: translateY(-50%) rotate(-90deg);
}

.service-section.collapsible .service-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 2rem 1rem;
}

.service-section.collapsible.collapsed .service-content {
    max-height: 0;
    padding: 0 1rem;
}

/* Card Hover Effects */
.app-item,
.website-item {
    transition: all 0.3s ease;
}

.app-item:hover,
.website-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 122, 28, 0.2);
}

.chatbot-trigger {
    transition: all 0.3s ease;
}

.chatbot-trigger:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 122, 28, 0.4);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero {
        min-height: 25vh;
        padding: 8rem 1rem 1rem;
    }
    
    .services-hero-title {
        font-size: 2.8rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .service-content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .apps-carousel {
        gap: 1rem;
    }
    
    .app-item {
        flex: 0 0 200px;
    }
    
    .mobile-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .mobile-feature-card {
        padding: 1rem 0.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-feature-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .mobile-feature-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Mobile Apps Carousel Responsive */
    .apps-carousel-modern {
        height: 220px;
        margin: 1.5rem auto;
    }
    
    .apps-track {
        gap: 2rem;
        animation-duration: 20s;
        padding: 1.5rem 0;
    }
    
    .apps-carousel-modern .app-icon {
        width: 120px;
        height: 120px;
        border-radius: 24px;
        margin-bottom: 1rem;
    }
    
    .apps-carousel-modern .app-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .apps-carousel-modern .app-item p {
        font-size: 0.9rem;
    }
    
    .apps-carousel-modern::before,
    .apps-carousel-modern::after {
        width: 60px;
    }
    
    .website-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer {
  background: #1A1325;
  color: #f5f5f5;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 122, 28, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Footer Newsletter Section */
.footer-newsletter {
  min-width: 0;
}

.footer-newsletter h3 {
  color: #FF7A1C;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  margin-top: 1rem;
}

.footer-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-newsletter-input {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: #FF7A1C;
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-button {
  padding: 0.75rem 1.25rem;
  background: #FF7A1C;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
  background: #FF8A2C;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 122, 28, 0.3);
}

.footer-section h3 {
  color: #FF7A1C;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.footer-logo-img:hover {
  filter: brightness(0) saturate(100%) invert(95%) sepia(14%) saturate(281%) hue-rotate(14deg) brightness(103%) contrast(94%);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5f5f5;
}

.footer-description {
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-contact p {
  color: #c0c0c0;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF7A1C;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 122, 28, 0.1);
}

.footer-bottom p {
  color: #c0c0c0;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.footer-social a svg {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
  color: #FF7A1C;
}

.footer-social a:hover svg {
  color: #FF7A1C;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-input-group {
    flex-direction: column;
  }
  
  .footer-newsletter-input,
  .footer-newsletter-button {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-description {
    max-width: none;
  }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, #0A0A0A 0%, #1A1325 25%, #2D1B47 50%, #1A1325 75%, #0A0A0A 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FF7A1C" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: grid-flow 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: conic-gradient(from 0deg at 50% 50%, 
                              transparent 0deg, 
                              rgba(255, 122, 28, 0.1) 60deg, 
                              transparent 120deg,
                              rgba(138, 43, 226, 0.1) 180deg,
                              transparent 240deg,
                              rgba(255, 122, 28, 0.1) 300deg,
                              transparent 360deg);
    animation: rotate-slow 30s linear infinite;
    z-index: 1;
}

@keyframes grid-flow {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-10px) translateX(-10px); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: hero-entrance 1.5s ease-out 0.5s forwards;
}

@keyframes hero-entrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.services-hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, 
                #FF7A1C 0%, 
                #FFB84D 25%, 
                #FF9A3C 50%, 
                #FF7A1C 75%, 
                #E65A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 122, 28, 0.4);
    filter: drop-shadow(0 4px 20px rgba(255, 122, 28, 0.3));
    position: relative;
}

.services-hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
                rgba(255, 122, 28, 0.2) 0%, 
                rgba(255, 184, 77, 0.2) 50%, 
                rgba(255, 122, 28, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    transform: translate(2px, 2px);
    filter: blur(1px);
}

.services-hero-subtitle {
    font-size: clamp(1.25rem, 3.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.services-hero-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 28, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.3; 
    }
}

/* Service Section Base */
.service-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-container-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.service-header-center {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

.service-header-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 28, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.service-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, 
                #FF7A1C 0%, 
                #FFB84D 25%, 
                #FF9A3C 50%, 
                #FF7A1C 75%, 
                #E65A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 122, 28, 0.4);
    filter: drop-shadow(0 4px 20px rgba(255, 122, 28, 0.3));
    position: relative;
    z-index: 2;
}

.service-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
                rgba(255, 122, 28, 0.2) 0%, 
                rgba(255, 184, 77, 0.2) 50%, 
                rgba(255, 122, 28, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    transform: translate(2px, 2px);
    filter: blur(1px);
}

.service-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Custom Business Software Section */
.service-software {
    background: linear-gradient(135deg, #2D1B47 0%, #1A1325 50%, #2D1B47 100%);
}


.animated-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 122, 28, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 122, 28, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 28, 0.1);
    transition: all 0.3s ease;
    min-height: 60px;
    text-align: left;
}

.feature-item:hover {
    background: rgba(255, 122, 28, 0.1);
    border-color: rgba(255, 122, 28, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    color: #FF7A1C;
    flex-shrink: 0;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

/* Dashboard Demo */
.dashboard-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-frame {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, rgba(18, 18, 27, 0.95) 0%, rgba(28, 28, 39, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 122, 28, 0.15);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.dashboard-frame:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 122, 28, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 122, 28, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.08) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 28, 0.5) 50%, transparent 100%);
}

.dashboard-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #FF7A1C, #FFD700, #FF7A1C);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 122, 28, 0.5);
    position: relative;
    padding: 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.dashboard-title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FF7A1C' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 8px rgba(255, 122, 28, 0.6));
    flex-shrink: 0;
}

.dashboard-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 122, 28, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 8px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.dashboard-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
}

.dashboard-stats::before {
    content: '●';
    color: #22c55e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 28, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF7A1C 0%, #FFB84D 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dashboard-metric-card:hover {
    background: rgba(255, 122, 28, 0.05);
    border-color: rgba(255, 122, 28, 0.2);
    transform: translateY(-2px);
}

.dashboard-metric-card:hover::before {
    transform: scaleX(1);
}

.dashboard-metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-metric-value {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
}

.dashboard-metric-change {
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dashboard-metric-change::before {
    content: '↗';
    font-size: 0.9rem;
}

.dashboard-chart-section {
    margin-top: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-period {
    color: rgba(255, 122, 28, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 122, 28, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 28, 0.2);
}

.chart-area {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 122, 28, 0.02) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    height: 140px;
    display: flex;
    align-items: end;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.chart-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 122, 28, 0.02) 25%, 
        rgba(255, 122, 28, 0.02) 50%, 
        transparent 50%);
    background-size: 20px 20px;
    animation: chart-grid 15s linear infinite;
    opacity: 0.3;
}

@keyframes chart-grid {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    height: 100px;
    position: relative;
    z-index: 2;
}

.dashboard-bar {
    width: 18px;
    background: linear-gradient(to top, #FF7A1C 0%, #FFB84D 50%, #FF9A3C 100%);
    border-radius: 4px 4px 2px 2px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 122, 28, 0.2);
}

.dashboard-bar::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dashboard-bar:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.4);
}

.dashboard-bar:hover::before {
    opacity: 1;
}

.dashboard-bar:nth-child(1) {
    animation: barGrow 1.5s ease-out 0.2s both;
}

.dashboard-bar:nth-child(2) {
    animation: barGrow 1.5s ease-out 0.4s both;
}

.dashboard-bar:nth-child(3) {
    animation: barGrow 1.5s ease-out 0.6s both;
}

.dashboard-bar:nth-child(4) {
    animation: barGrow 1.5s ease-out 0.8s both;
}

.dashboard-bar:nth-child(5) {
    animation: barGrow 1.5s ease-out 1s both;
}

@keyframes barGrow {
    from { 
        height: 0%; 
        transform: scaleY(0);
    }
    to { 
        height: var(--height, 100%); 
        transform: scaleY(1);
    }
}

.metric-change {
    color: #22c55e;
    font-size: 0.875rem;
}

.chart-area {
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 100%;
    width: 100%;
}

.bar {
    background: #FF7A1C;
    border-radius: 4px 4px 0 0;
    flex: 1;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    0% { height: 0; }
    100% { height: var(--bar-height, 50%); }
}

/* Mobile Applications Section */
.service-mobile {
    background: linear-gradient(135deg, #1A1325 0%, #2D1B47 100%);
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-feature-card {
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.08) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.mobile-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 122, 28, 0.15) 30%, 
        rgba(255, 184, 77, 0.2) 50%, 
        rgba(255, 122, 28, 0.15) 70%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.mobile-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        rgba(255, 122, 28, 0.1) 45deg, 
        transparent 90deg, 
        rgba(138, 43, 226, 0.1) 180deg, 
        transparent 225deg, 
        rgba(255, 122, 28, 0.1) 315deg, 
        transparent 360deg);
    animation: spin-slow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mobile-feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.15) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-color: rgba(255, 122, 28, 0.4);
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-12px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 122, 28, 0.25),
        0 0 30px rgba(255, 122, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-feature-card:hover::before {
    left: 100%;
}

.mobile-feature-card:hover::after {
    opacity: 1;
}

.mobile-feature-icon {
    color: #FF7A1C;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(255, 122, 28, 0.4));
    transition: all 0.3s ease;
}

.mobile-feature-card:hover .mobile-feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(255, 122, 28, 0.6));
}

.mobile-feature-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.mobile-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* App Showcase */
.app-showcase {
    margin-top: 4rem;
    position: relative;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(255, 122, 28, 0.05) 0%, transparent 60%);
    border-radius: 24px;
    overflow: visible;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 122, 28, 0.02) 25%, 
        rgba(255, 122, 28, 0.02) 50%, 
        transparent 50%, 
        transparent 75%, 
        rgba(255, 122, 28, 0.02) 75%);
    background-size: 60px 60px;
    animation: diagonal-move 20s linear infinite;
    opacity: 0.3;
}

@keyframes diagonal-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.showcase-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(45deg, #FF7A1C, #FFD700, #FF7A1C, #FFB84D, #FF7A1C);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: celebratoryGradient 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 122, 28, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(255, 122, 28, 0.3));
}

.showcase-title::before {
    content: "🎉";
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.showcase-title::after {
    content: "🏆";
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite 0.5s;
}

@keyframes celebratoryGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-70%);
    }
    60% {
        transform: translateY(-60%);
    }
}

.showcase-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.app-carousel-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-app {
    background: linear-gradient(135deg, 
        rgba(255, 122, 28, 0.08) 0%, 
        rgba(138, 43, 226, 0.05) 50%, 
        rgba(255, 122, 28, 0.08) 100%);
    border: 2px solid rgba(255, 122, 28, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: visible;
    transform: perspective(1000px) rotateX(0deg);
}

.showcase-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF7A1C 20%, 
        #FFB84D 50%, 
        #FF7A1C 80%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.showcase-app::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.3), transparent, rgba(138, 43, 226, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-app:hover {
    background: linear-gradient(135deg, 
        rgba(255, 122, 28, 0.15) 0%, 
        rgba(138, 43, 226, 0.1) 50%, 
        rgba(255, 122, 28, 0.15) 100%);
    border-color: rgba(255, 122, 28, 0.5);
    transform: perspective(1000px) rotateX(-5deg) translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 122, 28, 0.3),
        0 0 40px rgba(255, 122, 28, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.showcase-app:hover::before {
    transform: scaleX(1);
}

.showcase-app:hover::after {
    opacity: 1;
}

.app-icon-large {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem auto;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    padding: 3px;
    transition: all 0.4s ease;
}

.app-icon-large::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, 
        rgba(255, 122, 28, 0.4) 0%, 
        rgba(255, 184, 77, 0.6) 50%, 
        rgba(255, 122, 28, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.showcase-app:hover .app-icon-large::before {
    opacity: 1;
}

.showcase-app:hover .app-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 122, 28, 0.4);
}

.app-icon-large img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    border-radius: 19px;
    position: relative;
    z-index: 2;
    margin: 3px;
}

.showcase-app h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.showcase-app p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.app-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 122, 28, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 28, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.showcase-app:hover .app-rating {
    background: rgba(255, 122, 28, 0.15);
    border-color: rgba(255, 122, 28, 0.3);
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.2);
}

.stars-small {
    font-size: 0.9rem;
    filter: drop-shadow(0 2px 4px rgba(255, 122, 28, 0.4));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.app-rating span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(255, 122, 28, 0.3);
}

.store-badges {
    position: relative;
    z-index: 2;
}

.store-badge {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) invert(1) brightness(1);
}

.showcase-app:hover .store-badge {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(255, 122, 28, 0.4)) invert(1) brightness(1);
}

/* AI Automation Section */
.service-ai {
    background: linear-gradient(135deg, #2D1B47 0%, #1A1325 100%);
}

.ai-nodes-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 122, 28, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 122, 28, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 40% 60%, rgba(255, 122, 28, 0.05) 0%, transparent 50%);
    animation: nodesFloat 8s ease-in-out infinite alternate;
}

@keyframes nodesFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 122, 28, 0.03) 50%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 28, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(-2deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(255, 122, 28, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ai-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 215, 0, 0.4) 25%,
        rgba(255, 165, 0, 0.6) 50%,
        rgba(255, 215, 0, 0.4) 75%,
        transparent
    );
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.ai-feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.05) 0%, rgba(138, 43, 226, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.ai-feature-item:hover::before {
    opacity: 1;
    left: 100%;
}

.ai-feature-item:hover::after {
    opacity: 1;
}

.ai-feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.12) 0%, rgba(138, 43, 226, 0.08) 100%);
    border-color: rgba(255, 122, 28, 0.4);
    transform: perspective(1000px) rotateX(0deg) translateY(-15px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 122, 28, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.instagram-icon {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.website-icon {
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
}

.automation-icon {
    background: linear-gradient(135deg, #8A2BE2 0%, #9370DB 100%);
}

.custom-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.ai-feature-icon svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.ai-feature-item:hover .ai-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ai-feature-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    gap: 0.5rem;
}

.ai-feature-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.ai-feature-description {
    color: #c0c0c0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Chatbot Demo */
.ai-chatbot-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-widget {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 122, 28, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.chatbot-avatar {
    font-size: 2rem;
}

.chatbot-info {
    display: flex;
    flex-direction: column;
}

.chatbot-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.chatbot-status {
    color: #22c55e;
    font-size: 0.875rem;
}

.chatbot-messages {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    min-height: 300px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 28, 0.3);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 122, 28, 0.5);
}

.message {
    display: flex;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.bot-message .message-bubble {
    background: rgba(255, 122, 28, 0.2);
    color: #ffffff;
    border-bottom-left-radius: 4px;
}

.user-message .message-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.chatbot-input {
    display: flex;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.75rem;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.05);
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 122, 28, 0.4);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 122, 28, 0.1);
}

.chatbot-input input::placeholder {
    color: #b0b0b0;
}

.chat-send-btn {
    background: #FF7A1C;
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-send-btn:hover {
    background: #FF8A2C;
}


/* Websites & Digital Portfolios Section */
.service-websites {
    background: linear-gradient(135deg, #1A1325 0%, #2D1B47 100%);
}

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

/* Default card styling */
.portfolio-card {
    background: linear-gradient(135deg, rgba(94, 51, 174, 0.9) 0%, rgba(94, 51, 174, 0.8) 50%, rgba(126, 68, 197, 0.9) 100%);
    border: 2px solid rgba(94, 51, 174, 0.6);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    transform: perspective(1000px) rotateX(-3deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(94, 51, 174, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Total Company card - Purple theme */
.portfolio-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(94, 51, 174, 0.9) 0%, rgba(94, 51, 174, 0.8) 50%, rgba(126, 68, 197, 0.9) 100%);
    border: 2px solid rgba(94, 51, 174, 0.6);
    box-shadow: 
        0 15px 35px rgba(94, 51, 174, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Nike card - White/Black theme */
.portfolio-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(240, 240, 240, 0.95) 100%);
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #fbf0e3;
}

.portfolio-card:nth-child(2) .portfolio-info h3,
.portfolio-card:nth-child(2) .portfolio-info p {
    color: #fbf0e3 !important;
}

/* Spotify card - Dark/Green theme */
.portfolio-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(25, 20, 20, 0.95) 0%, rgba(29, 185, 84, 0.1) 50%, rgba(25, 20, 20, 0.95) 100%);
    border: 2px solid rgba(29, 185, 84, 0.4);
    box-shadow: 
        0 15px 35px rgba(29, 185, 84, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(29, 185, 84, 0.3);
}

/* Tesla card - Dark/Red theme */
.portfolio-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(204, 0, 0, 0.1) 50%, rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid rgba(204, 0, 0, 0.4);
    box-shadow: 
        0 15px 35px rgba(204, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(204, 0, 0, 0.3);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(255, 122, 28, 0.1), 
        rgba(255, 87, 34, 0.15), 
        rgba(255, 122, 28, 0.1), 
        transparent, 
        rgba(255, 87, 34, 0.1), 
        rgba(255, 122, 28, 0.15), 
        rgba(255, 87, 34, 0.1), 
        transparent
    );
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
    animation: rotate 8s linear infinite;
    animation-play-state: paused;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.4) 25%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 75%,
        transparent
    );
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 2;
}

.portfolio-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.portfolio-card:hover::after {
    opacity: 1;
    left: 100%;
}

/* Hover effects for each themed card */
.portfolio-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-25px) scale(1.08);
}

/* Total Company hover - Enhanced purple */
.portfolio-card:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(94, 51, 174, 1) 0%, rgba(126, 68, 197, 0.9) 50%, rgba(147, 51, 234, 1) 100%);
    border: 2px solid rgba(147, 51, 234, 0.8);
    box-shadow: 
        0 30px 60px rgba(94, 51, 174, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        0 0 80px rgba(147, 51, 234, 0.5);
}

/* Nike hover - Enhanced white/black */
.portfolio-card:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 0.98) 50%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid rgba(0, 0, 0, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 3px 0 rgba(0, 0, 0, 0.1),
        0 0 80px rgba(0, 0, 0, 0.2);
}

/* Spotify hover - Enhanced green */
.portfolio-card:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(25, 20, 20, 1) 0%, rgba(29, 185, 84, 0.2) 50%, rgba(25, 20, 20, 1) 100%);
    border: 2px solid rgba(29, 185, 84, 0.8);
    box-shadow: 
        0 30px 60px rgba(29, 185, 84, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 3px 0 rgba(29, 185, 84, 0.4),
        0 0 80px rgba(29, 185, 84, 0.5);
}

/* Tesla hover - Enhanced red */
.portfolio-card:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(204, 0, 0, 0.2) 50%, rgba(26, 26, 26, 1) 100%);
    border: 2px solid rgba(204, 0, 0, 0.8);
    box-shadow: 
        0 30px 60px rgba(204, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 3px 0 rgba(204, 0, 0, 0.4),
        0 0 80px rgba(204, 0, 0, 0.5);
}

.portfolio-preview {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-preview {
    background: rgba(255, 255, 255, 0.05);
}

.website-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    min-height: 300px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card:hover .website-mockup {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 122, 28, 0.3);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.browser-bar {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF7A1C;
    opacity: 0.6;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.website-content {
    padding: 1rem;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.website-header {
    background: rgba(255, 122, 28, 0.3);
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
}

.website-nav {
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 4px;
}

.website-hero {
    background: rgba(255, 122, 28, 0.2);
    height: 40px;
    border-radius: 4px;
}

.website-sections {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}

.section-block {
    background: rgba(255, 255, 255, 0.1);
    flex: 1;
    border-radius: 4px;
}

/* E-commerce specific layout */
.website-content.ecommerce .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    flex: 1;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Portfolio specific layout */
.website-content.portfolio .portfolio-hero {
    background: rgba(255, 122, 28, 0.2);
    height: 30px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    flex: 1;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Dashboard specific layout */
.website-content.dashboard {
    flex-direction: row;
    gap: 0.5rem;
}

.dashboard-sidebar {
    background: rgba(255, 122, 28, 0.2);
    width: 60px;
    border-radius: 4px;
}

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    height: 30px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.1);
    flex: 1;
    border-radius: 4px;
}

.portfolio-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.05) 0%, rgba(255, 87, 34, 0.03) 100%);
    position: relative;
    z-index: 2;
}

.portfolio-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.portfolio-info p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.featured-title {
    color: #ffffff !important;
    font-size: 1.7rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3) !important;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

/* Nike card title - Black */
.portfolio-card:nth-child(2) .featured-title {
    color: #fbf0e3 !important;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3) !important;
    animation: titleGlowDark 2s ease-in-out infinite alternate;
}

@keyframes titleGlowDark {
    0% {
        text-shadow: 
            0 2px 4px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(0, 0, 0, 0.3);
    }
}

/* Spotify card title - Spotify Green */
.portfolio-card:nth-child(3) .featured-title {
    color: #1DB954 !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(29, 185, 84, 0.3) !important;
    animation: titleGlowSpotify 2s ease-in-out infinite alternate;
}

@keyframes titleGlowSpotify {
    0% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(29, 185, 84, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(29, 185, 84, 0.6),
            0 0 30px rgba(29, 185, 84, 0.4);
    }
}

/* Tesla card title - Tesla Red */
.portfolio-card:nth-child(4) .featured-title {
    color: #CC0000 !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(204, 0, 0, 0.3) !important;
    animation: titleGlowTesla 2s ease-in-out infinite alternate;
}

@keyframes titleGlowTesla {
    0% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(204, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(204, 0, 0, 0.6),
            0 0 30px rgba(204, 0, 0, 0.4);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.2) 0%, rgba(255, 87, 34, 0.2) 100%);
    color: #FF7A1C;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 122, 28, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(255, 122, 28, 0.1);
}

/* 3D Mouse Tracking Effect */
.flashy-portfolio-grid .portfolio-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Improved Grid Layout */
.flashy-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    perspective: 1200px;
}

@media (max-width: 768px) {
    .flashy-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-card {
        transform: perspective(1000px) rotateX(-1deg) translateY(-4px) scale(1.01);
    }
    
    .portfolio-card:hover {
        transform: perspective(1000px) rotateX(0deg) translateY(-10px) scale(1.04);
    }
    
    .website-mockup {
        min-height: 250px;
    }
    
    .portfolio-preview {
        padding: 1.5rem;
    }
}

/* Brand-Specific Website Previews */

/* Total Company Preview Styling */
.total-company-preview {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: white;
    font-family: 'Arial', sans-serif;
}

.total-company-preview .website-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.total-company-preview .company-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fbbf24;
}

.total-company-preview .header-nav {
    font-size: 0.6rem;
    opacity: 0.9;
}

.total-company-preview .hero-section {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.total-company-preview .hero-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.total-company-preview .hero-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 0.4rem;
}

.total-company-preview .location-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.total-company-preview .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    padding: 0.5rem;
}

.total-company-preview .service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.total-company-preview .service-item:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
}

.total-company-preview .service-icon {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.total-company-preview .service-name {
    font-size: 0.6rem;
    font-weight: 600;
}

/* Portfolio Screenshot Styling */
.website-screenshot {
    padding: 0;
    background: transparent;
}

.portfolio-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
}

.website-screenshot {
    padding: 0;
    background: transparent;
    margin: -1px;
}

/* Nike Preview Styling */
.nike-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #fbf0e3;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.nike-preview .website-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.nike-preview .nike-logo {
    font-size: 1.2rem;
    font-weight: 900;
}

.nike-preview .nike-hero {
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
}

.nike-preview .nike-banner {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.nike-preview .nike-cta {
    font-size: 0.7rem;
    background: white;
    color: #fbf0e3;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-block;
}

.nike-preview .nike-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    padding: 0.5rem;
}

.nike-preview .product-card {
    background: white;
    border-radius: 4px;
    padding: 0.4rem;
    text-align: center;
    border: 1px solid #eee;
}

.nike-preview .shoe-icon {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.nike-preview .product-name {
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.nike-preview .product-price {
    font-size: 0.6rem;
    color: #666;
}

/* Spotify Preview Styling */
.spotify-preview {
    background: linear-gradient(135deg, #191414 0%, #1db954 100%);
    color: white;
    font-family: 'Spotify Circular', Arial, sans-serif;
    display: flex;
}

.spotify-preview .spotify-sidebar {
    width: 30%;
    background: #000;
    padding: 0.5rem;
    border-right: 1px solid #333;
}

.spotify-preview .spotify-logo {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1db954;
}

.spotify-preview .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spotify-preview .menu-item {
    font-size: 0.6rem;
    padding: 0.2rem;
    border-radius: 4px;
    opacity: 0.7;
}

.spotify-preview .spotify-main {
    flex: 1;
    padding: 0.5rem;
}

.spotify-preview .spotify-header {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spotify-preview .playlist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.spotify-preview .playlist-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem;
    border-radius: 4px;
}

.spotify-preview .playlist-cover {
    font-size: 0.8rem;
}

.spotify-preview .playlist-name {
    font-size: 0.6rem;
}

.spotify-preview .now-playing {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spotify-preview .track-info {
    font-size: 0.5rem;
}

.spotify-preview .controls {
    font-size: 0.6rem;
}

/* Tesla Preview Styling */
.tesla-preview {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    font-family: 'Tesla', 'Arial', sans-serif;
}

.tesla-preview .tesla-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #333;
}

.tesla-preview .tesla-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: #cc0000;
}

.tesla-preview .tesla-nav {
    display: flex;
    gap: 0.5rem;
}

.tesla-preview .tesla-nav span {
    font-size: 0.6rem;
    opacity: 0.8;
}

.tesla-preview .tesla-dashboard {
    padding: 0.5rem;
}

.tesla-preview .vehicle-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 8px;
}

.tesla-preview .car-icon {
    font-size: 1.5rem;
}

.tesla-preview .status-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.tesla-preview .battery {
    font-size: 0.7rem;
    color: #4CAF50;
}

.tesla-preview .range {
    font-size: 0.6rem;
    opacity: 0.8;
}

.tesla-preview .control-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.3rem;
}

.tesla-preview .control-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tesla-preview .control-icon {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.tesla-preview .control-label {
    font-size: 0.5rem;
    opacity: 0.7;
    margin-bottom: 0.1rem;
}

.tesla-preview .control-value {
    font-size: 0.6rem;
    font-weight: 600;
}

/* End-to-End Support Section */
.service-support {
    background: linear-gradient(135deg, #2D1B47 0%, #1A1325 100%);
}

.support-section-short {
    padding: 4rem 0 !important;
}

.support-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.support-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 28, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-feature-card:hover {
    background: rgba(255, 122, 28, 0.1);
    border-color: rgba(255, 122, 28, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.15);
}

.support-feature-icon {
    color: #FF7A1C;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.support-feature-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.support-feature-card p {
    color: #b0b0b0;
    line-height: 1.4;
    font-size: 0.875rem;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .app-carousel-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .websites-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .service-section {
        padding: 4rem 0;
    }
    
    .service-container {
        gap: 2rem;
    }
    
    .mobile-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .mobile-feature-card {
        padding: 1rem 0.8rem;
    }
    
    .mobile-feature-card h3 {
        font-size: 0.9rem;
    }
    
    .mobile-feature-card p {
        font-size: 0.75rem;
    }
    
    .app-carousel-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .websites-portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .support-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-feature-card {
        padding: 1.25rem 0.75rem;
        min-height: 140px;
    }
    
    .chatbot-widget {
        max-width: 100%;
    }
    
    .dashboard-frame {
        max-width: 100%;
    }
}

/* Sophisticated Parallax Neural Network Background */
:root {
  --nn-primary-color: #FF7A1C;
  --nn-secondary-color: #1A1325;
  --nn-grid-opacity: 0.08;
  --nn-shape-opacity: 0.1;
  --nn-connection-opacity: 0.06;
  --nn-grid-size: 50px;
}

.neural-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0.8;
  will-change: transform;
}

/* Neural Grid Pattern */
.neural-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-image: radial-gradient(circle at center, var(--nn-primary-color) 1px, transparent 1px);
  background-size: var(--nn-grid-size) var(--nn-grid-size);
  opacity: var(--nn-grid-opacity);
  will-change: transform;
}

/* Floating Geometric Shapes */
.neural-shape {
  position: absolute;
  will-change: transform;
  opacity: var(--nn-shape-opacity);
  background: linear-gradient(45deg, var(--nn-primary-color), var(--nn-secondary-color));
  filter: blur(0.5px);
}

.neural-shape.circle {
  border-radius: 50%;
}

.neural-shape.square {
  border-radius: 4px;
}

.neural-shape.diamond {
  transform: rotate(45deg);
  border-radius: 8px;
}

/* SVG Network Connections */
.neural-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: var(--nn-connection-opacity);
}

.neural-line {
  stroke: var(--nn-primary-color);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  will-change: stroke-dashoffset, opacity;
}

/* Animations */
@keyframes neuralRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes neuralPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes neuralDash {
  0% { 
    stroke-dashoffset: 100;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% { 
    stroke-dashoffset: -100;
    opacity: 0;
  }
}

/* Shape Size Variations */
.neural-shape.small {
  width: 12px;
  height: 12px;
}

.neural-shape.medium {
  width: 20px;
  height: 20px;
}

.neural-shape.large {
  width: 32px;
  height: 32px;
}

/* Ensure main content is above neural network */
.navbar {
  z-index: 1000;
}

/* Research Page - Light Navbar Theme */
.research-page .navbar {
  background: rgba(251, 240, 227, 0.95);
  border: 1px solid rgba(251, 240, 227, 0.3);
  backdrop-filter: blur(20px);
}

.research-page .nav-link {
  color: #FF7A1C;
  font-weight: 600;
}

.research-page .nav-link:hover {
  color: #fbf0e3;
  transform: scale(1.05);
}

.research-page .nav-link.active {
  color: #fbf0e3;
  font-weight: 700;
}

.research-page .logo-img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(97%) saturate(1747%) hue-rotate(1deg) brightness(101%) contrast(103%);
}

/* Research Page - Grid Background */
.research-page .grid-background {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23fbf0e3" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

/* Research Page - Custom Cursor */
.research-page .custom-cursor {
  background: rgba(251, 240, 227, 0.6);
  box-shadow: 
    0 0 20px rgba(251, 240, 227, 0.4),
    0 0 40px rgba(251, 240, 227, 0.2),
    0 0 60px rgba(251, 240, 227, 0.1);
}

.research-page .custom-cursor.hover {
  background: rgba(251, 240, 227, 0.8);
  box-shadow: 
    0 0 25px rgba(251, 240, 227, 0.6),
    0 0 50px rgba(251, 240, 227, 0.3),
    0 0 75px rgba(251, 240, 227, 0.1);
}

/* Mobile navbar for research page */
@media (max-width: 1000px) {
  .research-page .nav-menu {
    background: rgba(251, 240, 227, 0.98);
    border: 1px solid rgba(251, 240, 227, 0.4);
  }
  
  .research-page .nav-toggle span {
    background-color: #1A1325;
  }
}

.hero,
.about,
.services,
.contact,
.research,
.careers,
.footer {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --nn-grid-size: 40px;
    --nn-grid-opacity: 0.05;
    --nn-shape-opacity: 0.08;
    --nn-connection-opacity: 0.04;
  }
  
  .neural-network {
    opacity: 0.6;
  }
  
  .neural-shape.small {
    width: 8px;
    height: 8px;
  }
  
  .neural-shape.medium {
    width: 14px;
    height: 14px;
  }
  
  .neural-shape.large {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  :root {
    --nn-grid-size: 35px;
    --nn-grid-opacity: 0.04;
    --nn-shape-opacity: 0.06;
    --nn-connection-opacity: 0.03;
  }
}

/* Performance optimizations */
@media (prefers-reduced-data: reduce) {
  .neural-network {
    opacity: 0.3;
  }
  
  .neural-shape {
    filter: none;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .neural-network {
    display: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --nn-grid-opacity: 0.15;
    --nn-shape-opacity: 0.2;
    --nn-connection-opacity: 0.12;
  }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1A1325;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  color: #f5f5f5;
}

.loading-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FF7A1C;
  margin-bottom: 3rem;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

.loading-progress {
  width: 300px;
  margin: 0 auto;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 122, 28, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 0%);
  background: #FF7A1C;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-percentage {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FF7A1C;
}


/* Hide main content during loading */
body.loading .navbar,
body.loading .hero,
body.loading .footer,
body.loading .neural-network {
  visibility: hidden;
}

/* Mobile responsive loading */
@media (max-width: 768px) {
  .loading-text {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  
  .loading-progress {
    width: 250px;
  }
  
  /* Problem-Solving CTA Mobile */
  .problem-solving-cta {
    padding: 4rem 0;
  }
  
  .problem-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .problem-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .problem-cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin: 0 1rem;
  }
  
  .problem-cta-button:hover {
    transform: translateY(-2px) scale(1.01);
  }
  
  .problem-cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin: 0 1rem;
  }
  
  .problem-cta-button-wrapper {
    gap: 0.75rem;
  }
}

/* ===== CAREERS PAGE STYLES ===== */

/* Hero Section - Same as Services */
.careers-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(138, 43, 226, 0.1) 50%, transparent 51%);
  z-index: 1;
}

.careers-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-45deg, transparent 49%, rgba(138, 43, 226, 0.05) 50%, transparent 51%);
  z-index: 1;
}

.careers-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 10;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: hero-entrance 1.5s ease-out 0.5s forwards;
}

.careers-hero-title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.0;
  letter-spacing: -0.02em;
  position: relative;
}

.dusk-highlight {
  background: linear-gradient(135deg, 
              #FF7A1C 0%, 
              #FFB84D 25%, 
              #FF9A3C 50%, 
              #FF7A1C 75%, 
              #E65A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 122, 28, 0.4);
  filter: drop-shadow(0 4px 20px rgba(255, 122, 28, 0.3));
  animation: glow-pulse 3s ease-in-out infinite;
}

.careers-hero-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, 
              rgba(138, 43, 226, 0.2) 0%, 
              rgba(154, 75, 237, 0.2) 50%, 
              rgba(138, 43, 226, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
  transform: translate(2px, 2px);
  filter: blur(1px);
}

.careers-hero-subtitle {
  font-size: clamp(1.25rem, 3.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.careers-hero-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 122, 28, 0.7);
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  animation-delay: calc(var(--delay, 0) * 1ms);
}

.brain-icon {
  top: 20%;
  left: 15%;
  --delay: 0;
}

.rocket-icon {
  top: 30%;
  right: 20%;
  --delay: 1000;
}

.globe-icon {
  bottom: 25%;
  left: 10%;
  --delay: 2000;
}

.team-icon {
  bottom: 30%;
  right: 15%;
  --delay: 1500;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10%, 90% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.8;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 4px 20px rgba(255, 122, 28, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 30px rgba(255, 122, 28, 0.6));
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.8s ease-out forwards;
}

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

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-section {
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

.careers-section .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Status Indicator within Combined Section */
.status-indicator {
  background: rgba(255, 68, 68, 0.2);
  border: 2px solid #FF4444;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
  animation: status-glow 3s ease-in-out infinite;
}

@keyframes status-glow {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    border-color: #FF4444;
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.5);
    border-color: #FF6666;
  }
}

.status-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.4));
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes title-highlight {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.4));
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  }
  50% { 
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(255, 255, 255, 0.6));
    text-shadow: 0 0 40px rgba(255, 255, 255, 1);
  }
}

.status-description {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* What We Offer */
.offer-section {
  margin-bottom: 60px;
}

.offer-section h3 {
  font-size: 1.8rem;
  color: #f5f5f5;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.offer-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.offer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.offer-item p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

/* Future Section - Flashy Design */
.future-section {
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(255, 122, 28, 0.08), 
    rgba(26, 19, 37, 0.5), 
    rgba(138, 43, 226, 0.06));
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  animation: section-flow 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 8px 32px rgba(255, 122, 28, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.flash-border {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 122, 28, 0.6), 
    rgba(138, 43, 226, 0.4), 
    rgba(255, 122, 28, 0.8), 
    rgba(138, 43, 226, 0.6));
  background-size: 300% 300%;
  border-radius: 20px;
  z-index: -1;
  animation: border-glow 4s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes border-glow {
  0%, 100% { 
    background-position: 0% 50%; 
    opacity: 0.7;
    filter: blur(1px);
  }
  50% { 
    background-position: 100% 50%; 
    opacity: 1;
    filter: blur(0.5px);
  }
}

@keyframes section-flow {
  0%, 100% { 
    transform: scale(1) translateY(0);
    background-position: 0% 50%;
  }
  33% { 
    transform: scale(1.005) translateY(-2px);
    background-position: 50% 25%;
  }
  66% { 
    transform: scale(1.008) translateY(1px);
    background-position: 100% 75%;
  }
}

/* Attention Header */
.attention-header {
  margin-bottom: 2rem;
}

.pulse-icon {
  font-size: 3rem;
  animation: pulse-bounce 2s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes pulse-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.flash-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight-text {
  color: #f5f5f5;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.gradient-text {
  background: linear-gradient(135deg, #FF7A1C, #FFB84D, #FF9A3C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 8px rgba(255, 122, 28, 0.3));
    text-shadow: 0 0 15px rgba(255, 122, 28, 0.2);
  }
  50% { 
    filter: drop-shadow(0 0 12px rgba(255, 122, 28, 0.5));
    text-shadow: 0 0 20px rgba(255, 122, 28, 0.4);
  }
}

.urgency-text {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  animation: urgency-blink 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes urgency-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Value Props */
.value-props {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.prop-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 122, 28, 0.3);
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: prop-float 3s ease-in-out infinite;
}

.prop-item:nth-child(2) { animation-delay: 0.5s; }
.prop-item:nth-child(3) { animation-delay: 1s; }

@keyframes prop-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.prop-item:hover {
  background: rgba(255, 122, 28, 0.2);
  border-color: rgba(255, 122, 28, 0.6);
  transform: scale(1.05);
}

.prop-icon {
  font-size: 1.2rem;
}

/* Premium Form */
.premium-form {
  max-width: 500px;
  margin: 0 auto;
}

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

.input-wrapper {
  position: relative;
}

.input-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 122, 28, 0.3), transparent);
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 122, 28, 0.3);
  border-radius: 8px;
  padding: 1.2rem;
  font-size: 1rem;
  color: #f5f5f5;
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.premium-form input:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: #FF7A1C;
  box-shadow: 0 0 20px rgba(255, 122, 28, 0.4);
}

.premium-form input:focus + .input-glow,
.premium-form textarea:focus + .input-glow {
  opacity: 1;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Premium CTA Button */
.premium-cta {
  width: 100%;
  background: linear-gradient(135deg, #FF7A1C, #FF6B6B, #8A2BE2);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: button-pulse 3s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes button-pulse {
  0%, 100% { 
    background-position: 0% 50%;
    box-shadow: 0 5px 20px rgba(255, 122, 28, 0.4);
  }
  50% { 
    background-position: 100% 50%;
    box-shadow: 0 8px 30px rgba(255, 122, 28, 0.6);
  }
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

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

.premium-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 122, 28, 0.6);
}

.premium-cta:hover .btn-shimmer {
  left: 100%;
}

.btn-icon {
  font-size: 1.3rem;
  animation: icon-bounce 2s ease-in-out infinite;
}

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

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.premium-cta:hover .btn-arrow {
  transform: translateX(5px);
}

/* Trust Line */
.trust-line {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-icon {
  color: #4ECDC4;
}

/* Responsive */
@media (max-width: 768px) {
  .careers-section {
    padding: 60px 15px;
  }
  
  .future-section {
    padding: 2rem 1.5rem;
  }
  
  .flash-title {
    font-size: 2rem;
  }
  
  .value-props {
    flex-direction: column;
    gap: 1rem;
  }
  
  .prop-item {
    justify-content: center;
  }
  
  .urgency-text {
    font-size: 1rem;
  }
  
  .floating-icon {
    display: none;
  }
  
  .careers-hero-accent {
    width: 400px;
    height: 400px;
  }
  
  .premium-cta {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }
}

/* Research & Innovation Page - Clean Loading Animation */
.research-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.research-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF7A1C;
}

.loader-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    /* Convert orange logo to cream color #fbf0e3 for contrast on orange background */
    filter: brightness(0) saturate(100%) invert(95%) sepia(14%) saturate(281%) hue-rotate(14deg) brightness(103%) contrast(94%);
    animation: logoFade 2s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.loader-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbf0e3;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    opacity: 0;
    animation: titleFadeIn 0.8s ease forwards 0.3s;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(251, 240, 227, 0.3);
    border-radius: 1px;
    overflow: hidden;
    opacity: 0;
    animation: progressFadeIn 0.6s ease forwards 0.8s;
}

.progress-line {
    height: 100%;
    background: #fbf0e3;
    border-radius: 1px;
    transform: translateX(-100%);
    animation: progressMove 2s ease-in-out forwards 1s;
}

.loader-subtitle {
    font-size: 1rem;
    color: #fbf0e3;
    margin: 0;
    font-weight: 500;
    opacity: 0;
    animation: subtitleFadeIn 0.6s ease forwards 1.2s;
}


/* Clean Loading Animations */
@keyframes logoFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes titleFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes progressFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes progressMove {
    from { transform: translateX(-100%); }
    to { transform: translateX(0%); }
}

@keyframes subtitleFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}


/* Mobile Optimizations for Loader */
@media (max-width: 768px) {
    .loader-container {
        padding: 1rem;
        max-width: 300px;
    }
    
    .loader-title {
        font-size: 1.8rem;
        white-space: nowrap;
    }
    
    .loader-logo-img {
        height: 60px;
        width: auto;
    }
    
    .loader-progress {
        width: 150px;
    }
}

/* Prefers reduced motion for loader */
@media (prefers-reduced-motion: reduce) {
    .research-loader *,
    .research-loader *::before,
    .research-loader *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loader-title,
    .loader-progress,
    .loader-subtitle {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Research & Innovation Page - New Design */
/* Research page specific overrides */
.research-hero,
.research-in-progress,
.research-insights,
.research-newsletter {
    background-color: #FF7A1C;
    position: relative;
    z-index: 1;
}

/* Override body background for research page only */
body:has(.research-hero) {
    background-color: #FF7A1C !important;
}

/* Hero Section */
.research-hero {
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.research-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 240, 227, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 240, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(251, 240, 227, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.research-hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.research-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fbf0e3;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(251, 240, 227, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.research-hero-subtitle {
    font-size: 1.3rem;
    color: #fbf0e3;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 2px 20px rgba(251, 240, 227, 0.3),
            0 0 30px rgba(251, 240, 227, 0.2);
    }
    100% {
        text-shadow: 
            0 2px 25px rgba(251, 240, 227, 0.5),
            0 0 40px rgba(251, 240, 227, 0.3);
    }
}

/* Floating Research Symbols */
.floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.symbol {
    position: absolute;
    color: #fbf0e3;
    opacity: 0.3;
    animation: symbolFloat 8s ease-in-out infinite;
}

.symbol svg {
    filter: drop-shadow(0 0 10px rgba(251, 240, 227, 0.4));
}

/* Individual symbol positioning and timing */
.symbol-dna {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.symbol-atom {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.symbol-cpu {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.symbol-microscope {
    top: 70%;
    right: 12%;
    animation-delay: 3s;
}

.symbol-beaker {
    top: 35%;
    left: 5%;
    animation-delay: 4s;
}

.symbol-brain {
    top: 45%;
    right: 8%;
    animation-delay: 5s;
}

.symbol-formula {
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 6s;
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Mobile responsive symbols */
@media (max-width: 768px) {
    .floating-symbols {
        display: none;
    }
}

/* DUSK Blog Section */
.dusk-blog {
    padding: 100px 20px;
    background: #FF7A1C;
    position: relative;
    z-index: 1;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fbf0e3;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #fbf0e3;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: rgba(251, 240, 227, 0.2);
    border: 2px solid rgba(251, 240, 227, 0.5);
    color: #fbf0e3;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(251, 240, 227, 0.2);
}

.filter-btn:hover,
.filter-btn.active {
    background: #fbf0e3;
    color: #FF7A1C;
    border-color: #fbf0e3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 240, 227, 0.4);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: rgba(251, 240, 227, 0.12);
    border: 1px solid rgba(251, 240, 227, 0.35);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 240, 227, 0.4);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.blog-image {
    position: relative;
    height: 200px;
    background: rgba(251, 240, 227, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card.featured .blog-image {
    height: auto;
}

.blog-image-placeholder {
    color: #fbf0e3;
    opacity: 0.6;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(251, 240, 227, 0.2);
    color: #fbf0e3;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbf0e3;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card.featured .blog-article-title {
    font-size: 1.8rem;
}

.blog-excerpt {
    color: #fbf0e3;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #fbf0e3;
    opacity: 0.7;
    flex-wrap: wrap;
}

.blog-read-btn {
    background: transparent;
    border: 2px solid #fbf0e3;
    color: #fbf0e3;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.blog-read-btn:hover {
    background: #fbf0e3;
    color: #FF7A1C;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(251, 240, 227, 0.1);
    border: 1px solid rgba(251, 240, 227, 0.3);
    color: #fbf0e3;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #fbf0e3;
    color: #FF7A1C;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: #fbf0e3;
    font-weight: 500;
}

/* Article Modal */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.article-modal.active {
    display: flex;
}

.article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-modal-content {
    position: relative;
    background: #fbf0e3;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1001;
}

.article-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1A1325;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.article-container {
    padding: 3rem;
    max-height: 80vh;
    overflow-y: auto;
    color: #1A1325;
    line-height: 1.7;
}

.article-container h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1A1325;
}

.article-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: #1A1325;
}

.article-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: #FF7A1C;
}

.article-meta {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 19, 37, 0.1);
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.article-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FF7A1C;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 122, 28, 0.1);
    border-left: 4px solid #FF7A1C;
    border-radius: 0 8px 8px 0;
}

.article-container p {
    margin-bottom: 1.5rem;
}

.article-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.article-container li {
    margin-bottom: 0.5rem;
}

.article-container blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 122, 28, 0.05);
    border-left: 4px solid #FF7A1C;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

.article-container pre {
    background: #1A1325;
    color: #fbf0e3;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
}

.article-container code {
    background: rgba(26, 19, 37, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #FF7A1C;
}

.article-container pre code {
    background: none;
    padding: 0;
    color: #fbf0e3;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 122, 28, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 122, 28, 0.2);
}

.result-item h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #FF7A1C;
    margin: 0 0 0.5rem 0;
}

.result-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

.technical-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(26, 19, 37, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.technical-table th,
.technical-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(26, 19, 37, 0.1);
}

.technical-table th {
    background: #FF7A1C;
    color: #fbf0e3;
    font-weight: 600;
}

.technical-table tr:last-child td {
    border-bottom: none;
}

/* Mobile responsive blog */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-container {
        padding: 2rem;
    }
}

/* Container and Card System */
.research-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.research-card-container {
    background: #1A1325;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Headers */
.research-section-header {
    margin-bottom: 2.5rem;
}

.research-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.research-section-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 600px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-card:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.project-content {
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.project-goal {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-exploration {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-prototype {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-pilot {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.project-updated {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.project-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.project-link:hover,
.project-link:focus {
    color: #fff;
}

/* Insights Section */
.research-insights {
    padding: 2rem 0;
}

.insights-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.insight-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.insight-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.insight-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.insight-placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.insight-placeholder-image::before {
    content: '';
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
}

.insight-content {
    padding: 1.5rem;
}

.insight-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.insight-separator {
    opacity: 0.7;
}

.insight-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.2s ease;
}

.insight-link:hover .insight-cta,
.insight-link:focus .insight-cta {
    color: #fff;
}

/* Pagination */
.insights-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Newsletter Section */
.research-newsletter {
    padding: 2rem 0 4rem;
}

.newsletter-card {
    background: #1A1325;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-text {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card,
.insight-card {
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(2) { animation-delay: 0.1s; }
.project-card:nth-child(3) { animation-delay: 0.2s; }
.project-card:nth-child(4) { animation-delay: 0.3s; }
.project-card:nth-child(5) { animation-delay: 0.4s; }
.project-card:nth-child(6) { animation-delay: 0.5s; }

.insight-card:nth-child(2) { animation-delay: 0.1s; }
.insight-card:nth-child(3) { animation-delay: 0.2s; }
.insight-card:nth-child(4) { animation-delay: 0.3s; }
.insight-card:nth-child(5) { animation-delay: 0.4s; }
.insight-card:nth-child(6) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .research-hero {
        padding: 120px 20px 80px;
    }
    
    .research-hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .research-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .research-card-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .research-section-header h2 {
        font-size: 2rem;
    }
    
    .projects-grid,
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .insights-filters {
        gap: 0.5rem;
    }
    
    .filter-pill {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
    
    .insights-pagination {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Free Tools Hero Section - Clean & Organized */
.tools-hero {
    background: #1A1325;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Futuristic Tech Background */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 28, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 35%),
        linear-gradient(135deg, rgba(26, 19, 37, 0.8) 0%, rgba(26, 19, 37, 0.95) 100%);
    pointer-events: none;
    animation: bgPulse 8s ease-in-out infinite;
}

.tools-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255, 122, 28, 0.03) 100px,
            rgba(255, 122, 28, 0.03) 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(138, 43, 226, 0.02) 100px,
            rgba(138, 43, 226, 0.02) 102px
        );
    pointer-events: none;
    z-index: 1;
}

.tools-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(255, 122, 28, 0.05) 45deg,
            transparent 90deg,
            rgba(138, 43, 226, 0.05) 135deg,
            transparent 180deg,
            rgba(255, 215, 0, 0.05) 225deg,
            transparent 270deg,
            rgba(255, 122, 28, 0.05) 315deg,
            transparent 360deg
        );
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Futuristic Tech Particles */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent);
    animation: techFloat 6s ease-in-out infinite;
}

.tech-orb-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 15%;
    background: radial-gradient(circle, rgba(255, 122, 28, 0.8), transparent);
    animation-delay: 0s;
}

.tech-orb-2 {
    width: 6px;
    height: 6px;
    top: 70%;
    right: 20%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6), transparent);
    animation-delay: 2s;
}

.tech-orb-3 {
    width: 3px;
    height: 3px;
    top: 40%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.7), transparent);
    animation-delay: 4s;
}

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 28, 0.3), transparent);
    height: 1px;
    animation: techPulse 4s ease-in-out infinite;
}

.tech-line-1 {
    width: 200px;
    top: 25%;
    left: 10%;
    animation-delay: 1s;
}

.tech-line-2 {
    width: 150px;
    top: 75%;
    right: 15%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    animation-delay: 3s;
}

.tech-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: techBlink 3s ease-in-out infinite;
}

.tech-dot-1 {
    top: 30%;
    left: 80%;
    animation-delay: 0.5s;
}

.tech-dot-2 {
    top: 60%;
    left: 25%;
    background: rgba(255, 122, 28, 0.9);
    animation-delay: 1.5s;
}

.tech-dot-3 {
    top: 80%;
    left: 60%;
    background: rgba(138, 43, 226, 0.7);
    animation-delay: 2.5s;
}

/* Main Content */
.tools-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Premium Tools Section */
.tools-section {
    background: #1A1325;
    padding: 4rem 0;
    position: relative;
}

/* Premium Search Bar */
.tools-search-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.tools-search {
    width: 100%;
    background: rgba(26, 19, 37, 0.8);
    border: 2px solid rgba(255, 122, 28, 0.3);
    border-radius: 50px;
    padding: 1.25rem 1.75rem 1.25rem 3.5rem;
    font-size: 1.1rem;
    color: #fff;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(255, 122, 28, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tools-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tools-search:focus {
    border-color: #FF7A1C;
    box-shadow: 
        0 0 0 4px rgba(255, 122, 28, 0.2),
        0 8px 32px rgba(255, 122, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 122, 28, 0.7);
    pointer-events: none;
    z-index: 2;
}

.search-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(45deg, transparent, rgba(255, 122, 28, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tools-search:focus + .search-glow {
    opacity: 1;
}

/* Premium Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Tool Cards */
.tool-card.premium-card {
    background: rgba(26, 19, 37, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.tool-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 122, 28, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tool-card.premium-card:hover::before {
    opacity: 1;
}

.tool-card.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 122, 28, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 122, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tool-card.premium-card .tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 122, 28, 0.2), 
        rgba(255, 149, 0, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 122, 28, 0.3);
}

.tool-card.premium-card:hover .tool-icon {
    background: linear-gradient(135deg, 
        rgba(255, 122, 28, 0.4), 
        rgba(255, 149, 0, 0.4));
    border-color: #FF7A1C;
    box-shadow: 0 8px 20px rgba(255, 122, 28, 0.4);
    transform: rotateY(10deg) scale(1.1);
}

.tool-card.premium-card .tool-icon svg {
    color: #FF7A1C;
    transition: all 0.3s ease;
}

.tool-card.premium-card:hover .tool-icon svg {
    color: #FFF;
    filter: drop-shadow(0 0 8px rgba(255, 122, 28, 0.8));
}

.tool-card.premium-card .tool-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
    transition: all 0.3s ease;
}

.tool-card.premium-card:hover .tool-name {
    color: #FF7A1C;
    text-shadow: 0 0 10px rgba(255, 122, 28, 0.6);
}

.tool-card.premium-card .tool-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0 0 1.5rem;
    transition: all 0.3s ease;
}

.tool-card.premium-card:hover .tool-description {
    color: rgba(255, 255, 255, 0.9);
}

.tool-card.premium-card .tool-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF7A1C, #ff9500);
    color: #1A1325;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tool-card.premium-card .tool-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tool-card.premium-card:hover .tool-button::before {
    left: 100%;
}

.tool-card.premium-card:hover .tool-button {
    background: linear-gradient(135deg, #ff9500, #FF7A1C);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 122, 28, 0.4);
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .tool-card.premium-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tools-search-container {
        padding: 0 1rem;
    }
    
    .tools-search {
        font-size: 1rem;
        padding: 1rem 1.5rem 1rem 3rem;
    }
    
    .search-icon {
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .tool-card.premium-card {
        padding: 1.25rem;
    }

    .tools-section {
        padding: 2rem 0;
    }

    .tools-search-container {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .tools-header {
        padding: 0 1rem;
    }

    .tools-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Free Badge */
.free-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2), 
        rgba(0, 255, 136, 0.1),
        rgba(0, 255, 136, 0.15)
    );
    border: 2px solid #00ff88;
    border-radius: 50px;
    color: #00ff88;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.4),
        0 6px 24px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(0, 255, 136, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.free-text {
    font-weight: 700;
    color: #00ff88;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.free-separator {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.free-subtext {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.5),
            0 8px 32px rgba(0, 255, 136, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 60px rgba(0, 255, 136, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 255, 136, 0.7),
            0 8px 32px rgba(0, 255, 136, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 80px rgba(0, 255, 136, 0.3);
        transform: scale(1.02);
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 122, 28, 0.5),
            0 0 40px rgba(255, 122, 28, 0.3),
            0 5px 15px rgba(0, 0, 0, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 122, 28, 0.8),
            0 0 60px rgba(255, 122, 28, 0.5),
            0 5px 20px rgba(0, 0, 0, 0.9);
        transform: scale(1.02);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bgPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes techPulse {
    0%, 100% {
        opacity: 0.3;
        width: 100%;
    }
    50% {
        opacity: 0.8;
        width: 120%;
    }
}

@keyframes techBlink {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Hero Title */
.tools-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1rem;
    text-shadow: 
        0 0 20px rgba(255, 122, 28, 0.5),
        0 0 40px rgba(255, 122, 28, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.8);
    animation: titlePulse 4s ease-in-out infinite;
    position: relative;
}

.gradient-text {
    color: #FF7A1C;
    text-shadow: 
        0 0 20px rgba(255, 122, 28, 0.8),
        0 0 40px rgba(255, 122, 28, 0.4);
}

/* Hero Subtitle */
.tools-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    background: linear-gradient(135deg, #FF7A1C, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.1rem;
}

.feature-item span:not(.feature-icon) {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Scroll Arrow */
.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #FF7A1C;
    transition: all 0.3s ease;
    animation: gentle-bounce 3s ease-in-out infinite;
}

.scroll-arrow:hover {
    color: #ff9500;
    transform: translateY(-2px);
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow:hover .scroll-text {
    color: rgba(255, 255, 255, 0.9);
}

.premium-scroll .arrow-circle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 122, 28, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 122, 28, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-scroll .arrow-circle svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.premium-scroll:hover .arrow-circle {
    border-color: #FF7A1C;
    background: rgba(255, 122, 28, 0.2);
    box-shadow: 0 8px 32px rgba(255, 122, 28, 0.3);
    transform: scale(1.1);
}

.premium-scroll:hover .arrow-circle svg {
    transform: translateY(3px);
}

/* Social Proof Text */
.social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: -8px;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 { 
    background: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=64&h=64&fit=crop&crop=face') no-repeat center/cover;
}
.avatar-2 { 
    background: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=64&h=64&fit=crop&crop=face') no-repeat center/cover;
}
.avatar-3 { 
    background: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=64&h=64&fit=crop&crop=face') no-repeat center/cover;
}

.avatar-more {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Simple Animation */
@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .tools-hero {
        padding: 8rem 1rem 4rem;
        min-height: 80vh;
    }

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

    .tools-hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature-item {
        padding: 0.625rem 1.25rem;
    }

    .feature-item span:not(.feature-icon) {
        font-size: 0.85rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tools-hero {
        min-height: 70vh;
        padding: 8rem 1rem 3rem;
    }

    .tools-hero-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }

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

    .tools-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .feature-item {
        width: auto;
        min-width: 200px;
        justify-content: center;
    }
}

/* Tools Header and Filters */
.tools-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tools-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tools-filters .filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.tools-filters .filter-btn:hover,
.tools-filters .filter-btn.active {
    background: #FF7A1C;
    color: #1A1325;
    border-color: #FF7A1C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.2);
}

/* Responsive Design for Tools Hero */
@media (max-width: 768px) {
    .tools-hero-title {
        font-size: 2.5rem;
    }
    
    .tools-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .tools-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tools-filters {
        gap: 0.75rem;
    }
    
    .tools-filters .filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .tools-hero {
        min-height: 80vh;
        padding: 1.5rem 1rem;
    }
    
    .tools-hero-title {
        font-size: 2rem;
    }
    
    .tools-hero-subtitle {
        font-size: 1rem;
    }
    
    .tools-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-filters .filter-btn {
        width: 200px;
    }
}

/* Free Tools Page Styles */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tool-card:hover {
    transform: translateY(-0.25rem);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 28, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: #FF7A1C;
}

.tool-icon svg {
    width: 24px;
    height: 24px;
}

.tool-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tool-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.tool-button {
    background: linear-gradient(135deg, #FF7A1C 0%, #ff9500 100%);
    color: #1A1325;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    align-self: stretch;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-button:hover {
    background: linear-gradient(135deg, #ff9500 0%, #FF7A1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.3);
}

.tool-button:active {
    transform: translateY(0);
}

/* Free Tools Filter Animation */
.tool-card[data-category]:not([data-category="all"]) {
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1A1325 0%, #2D1B47 50%, #1A1325 100%);
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-dots .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FF7A1C, #8A2BE2);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatDots 4s ease-in-out infinite;
    animation-delay: var(--delay);
    left: var(--x);
    top: var(--y);
}

@keyframes floatDots {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 0 2rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-highlight {
    background: linear-gradient(135deg, #FF7A1C 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.contact-main {
    padding: 5rem 0;
    background: #1A1325;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: rgba(45, 27, 71, 0.3);
    border: 1px solid rgba(255, 122, 28, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF7A1C, transparent);
    opacity: 0.5;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

.problem-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group input,
.input-group textarea,
.input-group select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #1A1325;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #FF7A1C;
    box-shadow: 0 0 0 3px rgba(255, 122, 28, 0.1);
}

.input-group label {
    position: static;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    background: none;
    padding: 0;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(26, 19, 37, 0.5);
    font-size: 1rem;
}

.select-label {
    position: static !important;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    background: none !important;
    padding: 0 !important;
    display: block;
}

.input-group select {
    appearance: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    padding-right: 4rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(255, 122, 28, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.input-group select:focus {
    border-color: #FF7A1C;
    box-shadow: 0 0 0 4px rgba(255, 122, 28, 0.15), 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.input-group select:hover {
    border-color: rgba(255, 122, 28, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FF7A1C;
    pointer-events: none;
    margin-top: 0.75rem;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.input-group select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.input-group select option {
    padding: 1rem;
    font-size: 1rem;
    color: #1A1325;
    background: #FFFFFF;
    border: none;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF7A1C, #8A2BE2);
    transition: width 0.3s ease;
}

.input-group input:focus ~ .input-focus-line,
.input-group textarea:focus ~ .input-focus-line {
    width: 100%;
}

.message-group {
    grid-column: 1 / -1;
}

.message-group textarea {
    resize: vertical;
    min-height: 120px;
}

.textarea-hint {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.problem-submit-btn {
    background: linear-gradient(135deg, #FF7A1C 0%, #8A2BE2 100%);
    border: none;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.3);
}

.problem-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 28, 0.4);
}

.problem-submit-btn:active {
    transform: translateY(0);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.problem-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

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

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

.contact-alternatives {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.alternatives-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.alternatives-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 27, 71, 0.3);
    border: 1px solid rgba(255, 122, 28, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 122, 28, 0.1) 25%,
        rgba(255, 122, 28, 0.2) 50%,
        rgba(255, 122, 28, 0.1) 75%,
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.contact-method::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 122, 28, 0.4) 0%, 
        rgba(255, 122, 28, 0.6) 50%, 
        rgba(255, 122, 28, 0.4) 100%
    );
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-method:hover {
    border-color: rgba(255, 122, 28, 0.8);
    transform: translateY(-8px) scale(1.02);
    background: rgba(45, 27, 71, 0.6);
    box-shadow: 
        0 20px 40px rgba(255, 122, 28, 0.3),
        0 0 30px rgba(255, 122, 28, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    filter: brightness(1.1);
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover::after {
    opacity: 1;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotateY(5deg);
    box-shadow: 
        0 8px 25px rgba(255, 122, 28, 0.4),
        0 0 20px rgba(255, 122, 28, 0.3);
}

.method-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-method:hover .method-content {
    transform: translateX(4px);
}

.method-title {
    transition: all 0.3s ease;
}

.contact-method:hover .method-title {
    color: #FF7A1C;
    text-shadow: 0 0 10px rgba(255, 122, 28, 0.5);
}

.method-description {
    transition: all 0.3s ease;
}

.contact-method:hover .method-description {
    color: #FFF;
    font-weight: 500;
}

.email-icon {
    background: linear-gradient(135deg, #FF7A1C, #FF6B0A);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.chat-icon {
    background: linear-gradient(135deg, #FF7A1C, #8A2BE2);
}

.method-icon svg {
    color: #FFFFFF;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.method-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.response-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 122, 28, 0.1);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 12px;
    margin-top: 1rem;
}

.guarantee-icon {
    width: 24px;
    height: 24px;
    background: #FF7A1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.guarantee-icon svg {
    color: #FFFFFF;
    width: 16px;
    height: 16px;
}

.response-guarantee p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.response-guarantee strong {
    color: #FF7A1C;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
}

.tool-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Responsive Design for Tools */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .tool-card {
        padding: 1.25rem;
    }
    
    .tool-name {
        font-size: 1rem;
    }
    
    .tool-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .tool-button {
        padding: 0.675rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tool-card {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .tool-icon {
        width: 40px;
        height: 40px;
    }
    
    .tool-name {
        font-size: 0.95rem;
    }
    
    .tool-description {
        font-size: 0.85rem;
    }
    
    .tool-button {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .project-card,
    .insight-card,
    .tool-card {
        animation: none;
    }
    
    .project-card:hover,
    .insight-card:hover,
    .tool-card:hover {
        transform: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Article Modal Styles */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.article-modal-container {
    background: #1A1325;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 122, 28, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.article-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 122, 28, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.article-close-btn:hover {
    background: rgba(255, 122, 28, 0.4);
    transform: scale(1.1);
}

.article-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 122, 28, 0.2);
}

.article-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 122, 28, 0.2);
    color: #FF7A1C;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-share {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.share-btn {
    background: rgba(255, 122, 28, 0.2);
    border: 1px solid rgba(255, 122, 28, 0.3);
    color: #FF7A1C;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 122, 28, 0.3);
    transform: translateY(-2px);
}

.article-content {
    padding: 2rem;
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: "Host Grotesk", sans-serif;
}

/* Reset all typography within article content */
.article-content * {
    font-family: "Host Grotesk", sans-serif !important;
}

.article-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF7A1C;
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.3;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF7A1C;
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFB84D;
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.4;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.2rem 0 0.6rem 0;
    line-height: 1.4;
}

.article-content h5,
.article-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.4;
}

.article-content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.article-content li {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: #FFB84D;
}

.article-content em,
.article-content i {
    font-style: italic;
    font-weight: 400;
}

.article-content blockquote {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFB84D;
    border-left: 4px solid #FF7A1C;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    line-height: 1.6;
}

.article-comments {
    padding: 2rem;
    border-top: 1px solid rgba(255, 122, 28, 0.2);
}

.article-comments h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-name-input,
.comment-email-input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comment-name-input:focus,
.comment-email-input:focus {
    outline: none;
    border-color: #FF7A1C;
    box-shadow: 0 0 0 2px rgba(255, 122, 28, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.comment-text-input {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.comment-text-input:focus {
    outline: none;
    border-color: #FF7A1C;
    box-shadow: 0 0 0 2px rgba(255, 122, 28, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.submit-comment-btn {
    background: linear-gradient(135deg, #FF7A1C, #FF9F4A);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 28, 0.4);
}

.comment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 122, 28, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.8rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comment-info {
    flex: 1;
}

.comment-author {
    color: #ffffff;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.comment-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.comment-content {
    color: #ffffff;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .article-modal {
        padding: 1rem;
    }
    
    .article-modal-container {
        max-height: 95vh;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-header,
    .article-content,
    .article-comments {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-share {
        flex-wrap: wrap;
    }
    
    .comment-form-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .comment-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 28, 0.2);
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 40px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Host Grotesk", sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 122, 28, 0.1);
    border-color: #FF7A1C;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    color: #666;
}

.pagination-btn svg {
    transition: transform 0.3s ease;
}

.pagination-prev:hover:not(:disabled) svg {
    transform: translateX(-2px);
}

.pagination-next:hover:not(:disabled) svg {
    transform: translateX(2px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Host Grotesk", sans-serif;
}

.pagination-number:hover {
    background: rgba(255, 122, 28, 0.1);
    border-color: #FF7A1C;
    transform: scale(1.1);
}

.pagination-number.active {
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    border-color: #FF7A1C;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.4);
}

.pagination-dots {
    color: #666;
    font-weight: bold;
    padding: 0 0.5rem;
    font-size: 1.2rem;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
}

.pagination-info span {
    color: #FF7A1C;
    font-weight: 600;
}

/* Mobile responsive pagination */
@media (max-width: 768px) {
    .pagination-container {
        margin-top: 3rem;
        gap: 1rem;
    }
    
    .pagination {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .pagination-btn {
        flex: 1;
        min-width: 80px;
        justify-content: center;
    }
}

/* Hide testimonials on mobile devices - FORCE HIDE */
@media screen and (max-width: 768px) {
    body section.testimonials,
    body .testimonials,
    body #testimonials,
    section[id="testimonials"],
    .testimonials-container,
    .testimonials-carousel-wrapper,
    .testimonials-track,
    .testimonial-card {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Reduce About Us title size significantly on mobile */
    .about-header h1 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.2rem !important;
    }
    
    /* Reduce About Us description text size significantly on mobile */
    .about-description {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .about-tagline-new {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin: 0.8rem 0 0 0 !important;
    }
    
    /* Move "Problem Solvers" to separate line */
    .about-tagline-new .highlight::before {
        content: "\A" !important;
        white-space: pre !important;
    }
    
    /* Shrink metrics cards for mobile */
    .metrics-container {
        padding: 0 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .metrics-header {
        margin-bottom: 0.8rem !important;
    }
    
    /* Put "Proven Impact" and "Real Results" on separate lines for mobile */
    .metrics-title {
        font-size: 0 !important;
        line-height: 1.2 !important;
    }
    
    .metrics-title::after {
        content: "Proven Impact\AReal Results" !important;
        font-size: clamp(2rem, 4vw, 3rem) !important;
        font-weight: 700 !important;
        color: #FF7A1C !important;
        white-space: pre !important;
        display: block !important;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 0.6rem !important;
        max-width: 100% !important;
    }
    
    .metric-card {
        padding: 0.8rem 1.5rem !important;
        margin: 0 0.5rem !important;
        border-radius: 0.8rem !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        width: calc(100% - 1rem) !important;
    }
    
    .metric-number {
        font-size: 2rem !important;
    }
    
    .metric-label {
        font-size: 0.75rem !important;
        margin-bottom: 0.2rem !important;
        font-weight: 500 !important;
    }
    
    .metric-description {
        font-size: 0.65rem !important;
        margin-top: 0.2rem !important;
        line-height: 1.3 !important;
    }
    
    /* Mobile scroll reveal animation for metric cards */
    .metric-card {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        pointer-events: none !important;
    }
    
    .metric-card.reveal {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger animation delays for each card */
    .metric-card:nth-child(1).reveal { transition-delay: 0.1s; }
    .metric-card:nth-child(2).reveal { transition-delay: 0.2s; }
    .metric-card:nth-child(3).reveal { transition-delay: 0.3s; }
    .metric-card:nth-child(4).reveal { transition-delay: 0.4s; }
    .metric-card:nth-child(5).reveal { transition-delay: 0.5s; }
    .metric-card:nth-child(6).reveal { transition-delay: 0.6s; }
    
    .metric-card:hover,
    .metric-card:active,
    .metric-card:focus {
        transform: none !important;
        background: inherit !important;
        border-color: inherit !important;
        box-shadow: none !important;
    }
    
    /* Change 55,000 to 55K+ for mobile */
    .metric-number[data-target="55000"] {
        font-size: 0 !important;
    }
    
    .metric-number[data-target="55000"]::after {
        content: "55K+" !important;
        font-size: 2rem !important;
        font-weight: 900 !important;
        background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 50%, #FF9A3C 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    /* Change 20,000 to 20K+ for mobile */
    .metric-number[data-target="20000"] {
        font-size: 0 !important;
    }
    
    .metric-number[data-target="20000"]::after {
        content: "20K+" !important;
        font-size: 2rem !important;
        font-weight: 900 !important;
        background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 50%, #FF9A3C 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    /* Add margin spacing after metrics section on mobile */
    .metrics {
        margin-bottom: 5rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Add top margin to Key Services section on mobile */
    .key-services {
        margin-top: 3rem !important;
        padding-top: 4rem !important;
    }
    
    /* Hide top-ranking apps section on mobile */
    .top-apps,
    #top-apps,
    section.top-apps {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix problem CTA container for mobile - prevent clipping */
    .problem-solving-cta {
        padding: 0 !important;
        margin: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .problem-cta-container {
        padding: 0 1rem !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .problem-cta-content {
        padding: 0 0.5rem !important;
        max-width: calc(100vw - 3rem) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Change "Got a Problem?" to "Ready to Take the Next Step?" for mobile */
    .problem-cta-title {
        font-size: 0 !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    .problem-cta-title::after {
        content: "Ready to Take the Next Step?\AStart Your Journey With Us." !important;
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        color: #f5f5f5 !important;
        white-space: pre !important;
        display: block !important;
        line-height: 1.1 !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
        margin: 0 auto !important;
        max-width: calc(100vw - 4rem) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .problem-cta-title .solve-it-orange {
        display: none !important;
    }
    
    /* Change the problem CTA description for mobile */
    .problem-cta-description {
        font-size: 0 !important;
        padding: 0 !important;
        margin: 1rem auto !important;
    }
    
    .problem-cta-description::after {
        content: "We build intelligent websites, powerful AI chatbots, and custom tools that transform businesses. Now it's your turn — share your biggest challenge, and we'll craft the solution to move you forward." !important;
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        color: #f5f5f5 !important;
        opacity: 0.8 !important;
        display: block !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
        margin: 0 auto !important;
        max-width: calc(100vw - 4rem) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Hide "Explore Services" CTA button on mobile */
    .problem-cta-secondary {
        display: none !important;
    }
    
    /* Change CTA button text for mobile */
    .problem-cta-button .button-text {
        font-size: 0 !important;
    }
    
    .problem-cta-button .button-text::after {
        content: "Message Us Now" !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: white !important;
        display: inline-block !important;
    }
    
    /* Reduce Key Services title and subtitle size on mobile */
    .key-services-header h2 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .key-services-header .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        color: #c0c0c0 !important;
    }
    
    /* Optimize Key Services performance on mobile */
    .key-services {
        will-change: auto !important;
    }
    
    .service-card {
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        backface-visibility: hidden !important;
        perspective: none !important;
    }
    
    .service-card:hover {
        transform: none !important;
        box-shadow: none !important;
        animation: none !important;
    }
    
    .service-card::before,
    .service-card::after {
        display: none !important;
    }
    
    /* Disable complex animations on mobile */
    .service-card * {
        transition: none !important;
        animation: none !important;
        will-change: auto !important;
    }
    
    /* Increase badge size on mobile */
    .service-badge {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
        top: -8px !important;
        right: 12px !important;
    }
    
    /* Make AI Chatbot and Websites cards stand out on mobile */
    .service-card:nth-child(1),
    .service-card:nth-child(2) {
        background: linear-gradient(135deg, rgba(255, 122, 28, 0.15) 0%, rgba(138, 43, 226, 0.1) 100%) !important;
        border: 2px solid #FF7A1C !important;
        box-shadow: 0 8px 25px rgba(255, 122, 28, 0.3) !important;
        transform: none !important;
    }
    
    .service-card:nth-child(1) h3,
    .service-card:nth-child(2) h3 {
        color: #FF7A1C !important;
        font-size: 1.8rem !important;
        font-weight: 700 !important;
    }
    
    .service-card:nth-child(1) .service-price,
    .service-card:nth-child(2) .service-price {
        background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%) !important;
        color: white !important;
        padding: 0.8rem 1.5rem !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
    }
    
    /* Make only the $25/month text orange-purple gradient */
    .service-card:nth-child(1) .price-highlight,
    .service-card:nth-child(2) .price-highlight {
        background: linear-gradient(135deg, #FF7A1C 0%, #8A2BE2 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
        font-weight: 700 !important;
    }
    
    /* Reduce About Us section size and spacing on mobile */
    body section.about,
    body .about,
    body #about {
        padding: 0.5rem 0 !important;
        margin: 6rem 0 0 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    body .about-header {
        padding: 0 1rem !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    body .about-content {
        gap: 0.3rem !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body .about-heading {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Navigation visibility controls */
.nav-menu .nav-item.mobile-nav {
    display: none;
}

.nav-menu .nav-item.desktop-nav {
    display: block;
}

/* Show mobile CTA buttons on desktop too */
.mobile-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 28, 0.3);
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.4);
    text-decoration: none;
    color: white;
}

.mobile-cta-btn svg {
    stroke: white;
    flex-shrink: 0;
}

/* Desktop/Mobile CTA Text Control */
.mobile-cta {
    display: none;
}

.desktop-cta {
    display: block;
}

/* Hide CTA button wrapper on desktop too */
.problem-cta-button-wrapper {
    display: none;
}

/* Make desktop CTA title smaller */
.problem-cta-title.desktop-cta {
    font-size: 2.5rem;
}

/* Explore Services CTA Button */
.explore-services-cta {
    margin: 2rem 0 1.5rem 0;
    display: flex;
    justify-content: center;
}

.explore-services-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    color: white;
    border: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.3);
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.explore-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 122, 28, 0.4);
    background: linear-gradient(135deg, #e56b17 0%, #f0a83e 100%);
}

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

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

/* Hide Quick Contact Form on desktop */
.quick-contact-form {
    display: none;
}

/* Key Services Section */
.key-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.key-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 122, 28, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.key-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.key-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.key-services-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF7A1C 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 122, 28, 0.6));
    text-shadow: 0 0 30px rgba(255, 122, 28, 0.4);
    animation: title-glow 4s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 122, 28, 0.6));
        text-shadow: 0 0 30px rgba(255, 122, 28, 0.4);
    }
    100% {
        filter: drop-shadow(0 0 35px rgba(255, 122, 28, 0.8));
        text-shadow: 0 0 50px rgba(255, 122, 28, 0.6);
    }
}

/* All services - 4 cards in one row */
.all-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    padding-top: 20px;
}

/* Service Cards - Clean & Compact Design */
.service-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    transition: transform 0.15s ease;
    backdrop-filter: blur(5px);
    overflow: visible;
    min-height: 220px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-self: stretch;
    align-self: stretch;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    gap: 0.75rem;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 28, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Featured Cards (Primary Services) - Enhanced Styling */
.featured-card {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 
        0 0 20px rgba(255, 122, 28, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF7A1C 0%, #8A2BE2 50%, #FF7A1C 100%);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.6;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.04) 0%, rgba(138, 43, 226, 0.04) 100%);
    border-radius: 14px;
    pointer-events: none;
}

.featured-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 0 25px rgba(255, 122, 28, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.3);
}

.featured-card:hover::before {
    opacity: 0.8;
}

/* Secondary Cards - Subtle Styling */
.secondary-service {
    background: rgba(12, 12, 12, 0.9);
    border-color: rgba(255, 255, 255, 0.06);
}

.secondary-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    z-index: 20;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transform: rotate(0deg) translateZ(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.service-badge:hover {
    transform: rotate(0deg) scale(1.08) translateY(-2px) translateZ(10px);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-badge.most-popular {
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 50%, #FF6B35 100%);
    border-color: rgba(255, 122, 28, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 122, 28, 0.6),
        0 0 40px rgba(255, 122, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-badge.best-value {
    background: linear-gradient(135deg, #8A2BE2 0%, #9B59B6 50%, #7B1FA2 100%);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.6),
        0 0 40px rgba(138, 43, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-badge.enterprise {
    background: rgba(60, 60, 60, 0.8);
    border-color: rgba(120, 120, 120, 0.3);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    opacity: 0.8;
}

.service-badge.premium {
    background: rgba(80, 60, 60, 0.8);
    border-color: rgba(140, 120, 120, 0.3);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    opacity: 0.8;
}

/* Service Icon */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 12px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 122, 28, 0.3);
}

.service-icon svg {
    stroke: #FF7A1C;
    fill: none;
    color: #FF7A1C;
    filter: drop-shadow(0 0 12px rgba(255, 122, 28, 0.6));
    width: 32px;
    height: 32px;
    opacity: 1;
    stroke-width: 2.5;
}

.featured-card .service-icon svg {
    stroke: #FF7A1C;
    fill: none;
    color: #FF7A1C;
}

/* Service Title */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 122, 28, 0.2));
    text-align: left;
    flex-shrink: 0;
}

/* Service Description */
.service-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-right: 0.5rem;
    flex-shrink: 0;
}

/* Service Price - Enhanced */
.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-align: left;
    flex-shrink: 0;
}

/* Enhanced pricing for featured services - only for websites card */
.primary-service .service-price.primary-price {
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(255, 122, 28, 0.15);
    backdrop-filter: blur(5px);
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.pricing-divider {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0.2rem 0;
}

.service-price-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.3rem;
    text-align: left;
}

.price-highlight {
    color: #FF7A1C;
    font-weight: 900;
    font-size: 1.5em;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    will-change: auto;
    white-space: nowrap;
}

.price-highlight.text-normal {
    font-size: 1em;
    font-weight: 700;
}


/* Pricing Breakdown */
.pricing-breakdown {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 122, 28, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 122, 28, 0.2);
}

.pricing-option {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.pricing-option:last-child {
    margin-bottom: 0;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #FF7A1C;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(255, 122, 28, 0.3));
}

/* Service CTA */
.service-cta {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    flex-shrink: 0;
}

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

.service-cta:hover::before {
    left: 100%;
}

.service-cta:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.primary-cta {
    background: linear-gradient(135deg, #FF7A1C 0%, #8A2BE2 100%);
    border: 2px solid transparent;
    color: white;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #FF8A2C 0%, #9A3BF2 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 122, 28, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .all-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .service-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .all-services {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .key-services {
        padding: 4rem 0;
    }
    
    .key-services-container {
        padding: 0 1rem;
    }
    
    .key-services-header h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        min-height: 320px;
        padding: 1.5rem;
    }
    
    .service-badge {
        top: -6px;
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    /* Fix hero logo size for mobile */
    .hero-marquee-content {
        font-size: 6.5rem !important;
        gap: 1.5rem;
        padding-right: 1.5rem;
        letter-spacing: 0.1em;
    }

    /* Make hero section logo smaller on mobile */
    .hero-logo-img {
        height: 12vh !important;
        max-height: 100px !important;
        min-height: 50px !important;
    }

    
    /* Revert mobile hero section to match desktop design */
    .hero {
        background-color: inherit !important;
    }
    
    /* Revert mobile dusk logo to original styling */
    .hero-logo-img {
        filter: inherit !important;
    }
    
    
    /* Revert mobile nav bar to original styling */
    .nav-link {
        color: inherit !important;
    }
    
    .nav-logo a {
        color: inherit !important;
    }
    
    .nav-menu .nav-link {
        color: inherit !important;
    }
    
    .nav-item .nav-link {
        color: inherit !important;
    }
    
    /* Mobile navbar glass effect when scrolled past hero */
    .navbar.mobile-scrolled {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar.mobile-scrolled .nav-link {
        color: #ffffff !important;
        transition: color 0.3s ease !important;
    }
    
    .navbar.mobile-scrolled .nav-logo a {
        color: #ffffff !important;
        transition: color 0.3s ease !important;
    }
    
    .navbar.mobile-scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    
    /* Smooth scroll behavior for mobile */
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Hide testimonials/reviews section on mobile */
    section.testimonials,
    .testimonials,
    #testimonials {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Mobile Navigation - Hide desktop nav items */
    .nav-menu .nav-item.desktop-nav {
        display: none !important;
    }
    
    /* Show only mobile navigation items */
    .nav-menu .nav-item.mobile-nav {
        display: block !important;
    }
    
    /* Hide Company section in footer on mobile */
    .footer-section:nth-child(2) {
        display: none !important;
    }
    
    /* Hide Services links in footer on mobile but keep text */
    .footer-section:nth-child(3) .footer-links a {
        pointer-events: none !important;
        text-decoration: none !important;
        color: inherit !important;
        cursor: default !important;
    }
    
    /* Mobile CTA Section Changes */
    .problem-cta-button-wrapper {
        display: none !important;
    }
    
    /* Mobile/Desktop CTA Text Control */
    .desktop-cta {
        display: none !important;
    }
    
    .mobile-cta {
        display: block !important;
    }
    
    /* Explore Services Button on Mobile */
    .explore-services-btn {
        padding: 1rem 2.5rem !important;
        font-size: 1.1rem !important;
        margin: 1.5rem 0 1rem 0 !important;
    }
    
    .mobile-cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    .mobile-cta-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        padding: 0.7rem 1.2rem !important;
        background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%) !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }
    
    .mobile-cta-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(255, 122, 28, 0.4) !important;
    }
    
    .mobile-cta-btn svg {
        stroke: white !important;
    }
    
    /* Quick Contact Form - Mobile Only */
    .quick-contact-form {
        display: block !important;
        padding: 3rem 1rem !important;
        background: #0a0a0a !important;
        margin: 0 !important;
    }
    
    .quick-contact-container {
        max-width: 400px !important;
        margin: 0 auto !important;
        background: transparent !important;
        background-color: transparent !important;
        padding: 2rem !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .quick-contact-container * {
        background-color: transparent !important;
    }
    
    .quick-contact-header {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .quick-contact-header h2 {
        color: #FF7A1C !important;
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        font-weight: 700 !important;
    }
    
    .quick-contact-header p {
        color: #e3e3db !important;
        font-size: 1rem !important;
        opacity: 0.8 !important;
    }
    
    .contact-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .form-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .form-group label {
        color: #e3e3db !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem !important;
        border: 2px solid rgba(255, 122, 28, 0.3) !important;
        border-radius: 8px !important;
        background: rgba(0, 0, 0, 0.4) !important;
        color: #ffffff !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none !important;
        border-color: #FF7A1C !important;
        background: rgba(255, 122, 28, 0.1) !important;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .contact-submit-btn {
        padding: 0.7rem 1.5rem !important;
        background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        margin-top: 0.5rem !important;
    }
    
    .contact-submit-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(255, 122, 28, 0.4) !important;
    }
    
    .contact-submit-btn:disabled {
        opacity: 0.6 !important;
        cursor: not-allowed !important;
        transform: none !important;
    }
    
    /* Change "View Portfolio" to "Get Started" on mobile */
    .service-cta.primary-cta {
        font-size: 0 !important;
    }
    
    .service-cta.primary-cta::after {
        content: "Get Started" !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: white !important;
        display: inline-block !important;
    }
    
    /* Hide custom cursor on mobile */
    .custom-cursor {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Navbar solid background when mobile menu is open */
    .navbar.menu-open {
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(255, 122, 28, 0.3) !important;
    }
    
    .navbar.menu-open .nav-menu {
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Service Card Pricing Toggle Styles - Redesigned to Match Theme */
.service-pricing-container {
    margin-bottom: 1.5rem;
}

.service-pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-toggle-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.25rem;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 200px;
}

.toggle-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    font-family: inherit;
    outline: none;
    flex: 1;
    text-align: center;
}

.toggle-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.toggle-btn.active {
    color: #1a1325;
    font-weight: 700;
}

.toggle-slider-switch {
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
    width: calc(50% - 0.25rem);
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 122, 28, 0.25);
}

.toggle-slider-switch.slide-right {
    left: calc(50% + 0.25rem);
}

/* Default slider position for monthly (left side) */
.toggle-slider-switch {
    /* Already positioned on the left by default */
}

.service-price-dynamic {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.price-option {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5f5f5;
    background: linear-gradient(135deg, rgba(255, 122, 28, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    border: 1px solid rgba(255, 122, 28, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 12px rgba(255, 122, 28, 0.15);
    backdrop-filter: blur(10px);
    margin: 0;
}

.price-option .price-highlight {
    color: #FF7A1C;
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7A1C 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-only {
    display: block;
}

/* Mobile/Desktop Display Logic */
@media (max-width: 768px) {
    .service-pricing-toggle.mobile-only {
        display: flex !important;
    }
    
    .service-price-dynamic.mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .service-pricing-toggle.mobile-only {
        display: none !important;
    }
    
    .service-price-dynamic.mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    /* Show pricing toggle on desktop too */
    .service-pricing-toggle {
        display: flex;
    }
    
    .service-price-dynamic {
        display: block;
    }
}