  /* Header background transition */
    #site-header {
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    #site-header.bg-transparent { background-color: transparent; }
    #site-header.scrolled {
      background-color: rgba(255,255,255,0.95);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }


    /* Mobile nav */
    #mobile-nav { transition: max-height 0.3s ease; }

    /* Hero */
    #hero { background-color: white; padding-top: 5rem; padding-bottom: 5rem; }
    #hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.2; }
    #hero p { font-size: 1.25rem; color: #64748b; max-width: 36rem; margin: 1rem auto; }

    /* Contact section background */
    /* #contact { background: linear-gradient(to bottom right, #e09696, #6095db); } */
#contact {
    background: linear-gradient(to bottom right, #e09696, #6095db);
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .text-gradient {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .form-container {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    transition: all 0.3s;
  }

  .form-input:focus,
  .form-textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  }

  .submit-button {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.15);
  }

  .animate-pulse {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
    /* Footer gradient text */
   
.text-gradient {
  @apply bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent;
}
    /* Word count text */
    #word-count { font-size: 0.875rem; color: #64748b; }
	
	
	   /* Logo sizing */
    .site-logo {
      height: 2rem;   /* 32px */
      width: auto;
      margin-right: 1.75rem;
	   margin-right: 1.75rem;
    }
	
	/* for services */
	

@keyframes flowCards {
  0% { transform: translateY(0%); }
  100% { transform: translateY(-50%); }
}
.animate-flow-cards {
  animation: flowCards 30s linear infinite;
}


/* for logo design */

    .circle-rotate {
      animation: rotate 10s linear infinite;
      transform-origin: center;
    }

    @keyframes rotate {
      100% {
        transform: rotate(360deg);
      }
    }
		svg text {
		  fill: black;
		  font-size: 17px;
		  letter-spacing: 2px;
		  font-weight: bold; /* Makes the text bold */
		}   

/* from index.html */
/* test  */
.text-panel {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1a1a1a;
  padding: 40px 0;         /* Remove side padding for full width */
  max-width: none;         /* Remove max-width restriction */
  width: 100vw;            /* Span the full viewport width */
  margin: 0;               /* Remove any margin */
  box-sizing: border-box;  /* Ensure padding doesn't cause overflow */
  align-self: stretch;     /* Stretch if inside flex */
}

.text-panel p {
  margin-bottom: 1.8rem;
}

.pause-on-hover:hover {
  animation-play-state: paused;
}
/* hero-heading */
.hero-heading {
  font-size: 2rem;
  margin-bottom: 3.2rem;
  margin-top: -4rem;
  text-align: center;
  color: #000;
  font-weight: 900;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 1.5rem;
    margin-top: 1rem; /* Remove negative margin on mobile */
    margin-bottom: 2rem;
  }
}
.company-name {
  color: #0070f3;
  font-weight: bold;
  font-size: 1.3rem;
  background: linear-gradient(to right, #0915ec, #8a2997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}