/* ========== IT SECURITY & INFRASTRUCTURE (prefix 'its-', 'is-') ========== */

/* Full Screen Sections */
.its-section-full,
.is-section-full {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  background:var(--bg-color);
  position: relative;
  overflow: hidden;
}

/* Alternating background */
.is-section-full:nth-child(even) {
  background: var(--grey-soft);
}

/* Full Width Containers */
.its-container-full,
.container-full {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* ITS Hero Section */
.its-section-full {
  background: linear-gradient(145deg,var(--bg-color), var(--bg-blue-soft));
}

.its-badge-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.its-badge {
  background: var(--primary-navy);
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.6rem 2.5rem;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 5px 15px var(--primary-navy-10);
}

.its-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.its-heading-main {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.its-content-full {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.its-paragraph-full {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
}

.its-quote-box-full {
  background: var(--primary-navy);
  color: var(--white-color);
  border-radius: 60px;
  padding: 1.2rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}

.its-quote-box-full i {
  font-size: 1.5rem;
  opacity: 0.5;
}

.its-quote-box-full p {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-style: italic;
}

.its-dots-full {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary-navy) 2px, transparent 2px);
  background-size: 25px 25px;
  opacity: 0.03;
  z-index: 1;
}

/* IS Section Styles - Following sections */
.is-header-full {
  text-align: center;
  margin-bottom: 2rem;
}

.is-icon-full {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  color: var(--primary-navy) ;
}

.is-title-full {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.is-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.is-grid-3col-full {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}

.is-item-full {
  background: var(--white-color);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px -10px var(--primary-navy-soft);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s ease;
  height: 100%;
}

.is-item-full:hover {
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -15px var(--darkest-navy);
}

.is-item-full i {
  color: var(--primary-navy);
  font-size: 1.2rem;
  min-width: 1.5rem;
  text-align: center;
}

.is-item-full span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-medium);
  flex: 1;
}

.is-item-span-full {
  grid-column: span 3;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
  padding: 1.2rem 2rem;
  background: var(--of-white);
  border-color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 1200px) {
  .its-heading-main {
    font-size: 3rem;
  }
  
  .is-title-full {
    font-size: 2rem;
  }
  
  .is-grid-3col-full {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .is-item-span-full {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .its-heading-main {
    font-size: 2.5rem;
  }
  
  .is-grid-full {
    grid-template-columns: 1fr;
  }
  
  .is-grid-3col-full {
    grid-template-columns: 1fr;
  }
  
  .is-item-span-full {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .its-container-full,
  .container-full {
    padding: 0 1.5rem;
  }
  
  .its-heading-main {
    font-size: 2rem;
  }
  
  .its-paragraph-full {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .its-quote-box-full {
    padding: 1rem 1.5rem;
    flex-direction: row;
  }
  
  .is-title-full {
    font-size: 1.8rem;
  }
  
  .is-icon-full {
    font-size: 2.5rem;
  }
  
  .is-item-full {
    padding: 1rem;
  }
  
  .is-item-full i {
    font-size: 1.1rem;
    min-width: 1.3rem;
  }
  
  .is-item-full span {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes isFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-item-full {
  animation: isFadeIn 0.4s ease-out;
  animation-fill-mode: both;
}

.is-item-full:nth-child(1) { animation-delay: 0.05s; }
.is-item-full:nth-child(2) { animation-delay: 0.1s; }
.is-item-full:nth-child(3) { animation-delay: 0.15s; }
.is-item-full:nth-child(4) { animation-delay: 0.2s; }
.is-item-full:nth-child(5) { animation-delay: 0.25s; }
.is-item-full:nth-child(6) { animation-delay: 0.3s; }
.is-item-full:nth-child(7) { animation-delay: 0.35s; }
.is-item-full:nth-child(8) { animation-delay: 0.4s; }
.is-item-full:nth-child(9) { animation-delay: 0.45s; }
.is-item-full:nth-child(10) { animation-delay: 0.5s; }
.is-item-full:nth-child(11) { animation-delay: 0.55s; }
.is-item-full:nth-child(12) { animation-delay: 0.6s; }
.is-item-full:nth-child(13) { animation-delay: 0.65s; }
.is-item-full:nth-child(14) { animation-delay: 0.7s; }
.is-item-full:nth-child(15) { animation-delay: 0.75s; }
.is-item-full:nth-child(16) { animation-delay: 0.8s; }