/* Hero Section */
#hero {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 80vh;
  overflow: hidden;
  background: linear-gradient(-45deg, #0c0f15, #081229, #0f1e40, #1ec6ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

/* Particles Container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff;
  padding: 20px;
}

/* Glitch Effect on Hero Heading */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% { clip: rect(42px, 9999px, 44px, 0); transform: translate(0); }
  10% { clip: rect(85px, 9999px, 90px, 0); transform: translate(-2px, -2px); }
  20% { clip: rect(12px, 9999px, 16px, 0); transform: translate(2px, 2px); }
  30% { clip: rect(55px, 9999px, 60px, 0); transform: translate(-2px, 0); }
  40% { clip: rect(18px, 9999px, 22px, 0); transform: translate(2px, -2px); }
  50% { clip: rect(42px, 9999px, 44px, 0); transform: translate(0); }
  100% { clip: rect(42px, 9999px, 44px, 0); transform: translate(0); }
}

#hero p {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 20px 0 40px;
  line-height: 1.6;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  opacity: 0.8;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  margin: 6px auto;
  animation: scroll 2s infinite;
}

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

/* About Section - Compliance Text */
#about .compliance-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto 0;
  color: #555;
}

/* Microsoft Partner Badge with Pulse */
.partner-badge {
  display: inline-block;
  background-color: #f3f3f3;
  color: #0f1e40;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

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

/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  transform-style: preserve-3d;
}

.service-box:hover {
  transform: translateY(-5px) perspective(1000px) rotateX(3deg) rotateY(3deg);
}

.service-box h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #0f1e40;
  font-weight: 600;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Team Section */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #0f1e40;
  font-weight: 600;
}

.team-member p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #hero h1 { font-size: 2.5rem; }
  #hero p { font-size: 1rem; }
}
