@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- ROOT VARIABLES ---------- */
:root {
  --it-gold: #bfa14a;
  --it-dark: #0a0a0a;
  --it-light: #ffffff;
  --it-gray: #f5f5f5;
  --it-font: 'Poppins', sans-serif;
  --transition: 0.6s ease;
}

/* ---------- RESET ---------- */
.it-hero, .it-section, .it-cta {
  display: block;
  width: 100%;
  font-family: var(--it-font);
  color: var(--it-dark);
}


/* ---------- GLOBAL CONTAINER ---------- */
.it-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  
}

/* ---------- HERO SECTION ---------- */
.it-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--it-light);
  background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)),
              url('/img/procurement/it.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  animation: heroFade 2s ease forwards;
}

/* Smooth slow zoom effect */
.it-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/img/procurement/it.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  z-index: 0;
  animation: heroZoom 10s ease-out forwards;
  filter: brightness(0.6);
}


/* Overlay to make text pop */
.it-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

/* Hero Content */
.it-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: textFadeUp 1.5s ease forwards 0.8s;
}

.it-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--it-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(191, 161, 74, 0.3);
}

.it-hero p {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ---------- BUTTONS ---------- */
.it-hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.it-btn-primary,
.it-btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.it-btn-primary {
  background: var(--it-gold);
  color: var(--it-dark);
}

.it-btn-primary:hover {
  background: #d2b65c;
  box-shadow: 0 0 15px rgba(191, 161, 74, 0.4);
  transform: translateY(-3px);
}

.it-btn-outline {
  border: 2px solid var(--it-gold);
  color: var(--it-light);
}

.it-btn-outline:hover {
  background: var(--it-gold);
  color: var(--it-dark);
  transform: translateY(-3px);
}

/* ---------- SECTION ---------- */
.it-section {
  background: var(--it-light);
  padding: 100px 0;
  margin-top: 60px; /* G A P after hero */
  opacity: 1;
  transform: translateY(60px);
  transition: all 1s ease;
}

.it-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.it-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.it-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
  color: var(--it-dark);
  position: relative;
  display: inline-block;
}

.it-section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 70px;
  height: 3px;
  background: var(--it-gold);
  transform: translateX(-50%);
  border-radius: 3px;
}

.it-section-head p {
  color: #555;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

/* ---------- GRID ---------- */
.it-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.it-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.it-card i {
  font-size: 2.5rem;
  color: var(--it-gold);
  margin-bottom: 18px;
  transition: 0.6s ease;
}

.it-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.it-card:hover i {
  transform: scale(1.15);
}

/* ---------- CTA SECTION ---------- */
.it-cta {
  background: linear-gradient(135deg, var(--it-gold), #a58c3c);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  margin-top: 80px;
}

.it-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 15px;
  font-weight: 600;
}

.it-cta p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

.it-btn-light {
  background: #fff;
  color: var(--it-gold);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.it-btn-light:hover {
  background: #f7f5f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

/* ---------- ANIMATIONS ---------- */
@keyframes heroFade {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroZoom {
  from { transform: scale(1.2); }
  to { transform: scale(1); }
}

@keyframes textFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .it-hero { min-height: 70vh; }
  .it-hero h1 { font-size: 2.4rem; }
  .it-hero p { font-size: 1rem; }
}

@media (max-width: 600px) {
  .it-hero-inner { padding: 0 15px; }
  .it-btn-primary, .it-btn-outline { width: 100%; text-align: center; }
  .it-section { padding: 70px 0; margin-top: 40px; }
  .it-cta { padding: 70px 15px; }
}
