/* =======================================
   INNOVATION & IPR PAGE COMPONENT STYLES
======================================= */

.ipr-hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, #fdf8ee 0%, #ffffff 50%, #faf9f6 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(224, 112, 0, 0.05);
}

.ipr-hero-left {
  flex: 1.2;
}

.ipr-hero-tag {
  display: inline-block;
  background: rgba(224, 112, 0, 0.08);
  color: #e07000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.ipr-hero-left h1 {
  font-size: 52px;
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.ipr-hero-left h1 span {
  color: #e07000;
}

.ipr-hero-desc {
  font-size: 16.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
}

.ipr-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ipr-hero-right img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(224, 112, 0, 0.08);
  border: 1px solid rgba(224, 112, 0, 0.03);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.4s ease;
}

.ipr-hero-right img:hover {
  transform: translateY(-5px);
}

/* =======================================
   IPR AWARENESS GRID
======================================= */

.ipr-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #111111;
  margin-top: 20px;
  margin-bottom: 45px;
  position: relative;
}

.ipr-section-title span {
  color: #e07000;
}

.ipr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.ipr-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ipr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(224, 112, 0, 0.08);
}

.ipr-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(224, 112, 0, 0.08);
  color: #e07000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.ipr-card:nth-child(even) .ipr-card-icon {
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
}

.ipr-card:hover .ipr-card-icon {
  background: #e07000;
  color: #fff;
  transform: scale(1.08);
}

.ipr-card:nth-child(even):hover .ipr-card-icon {
  background: #111111;
  color: #fff;
  transform: scale(1.08);
}

.ipr-card h3 {
  font-size: 18px;
  color: #111111;
  margin-bottom: 10px;
  font-weight: 750;
}

.ipr-card p {
  color: #555;
  line-height: 1.6;
  font-size: 13.5px;
}

/* =======================================
   STARTUPS & AI PANELS
======================================= */

.ipr-panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.ipr-panel-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 5px solid #111111;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ipr-panel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.ipr-panel-card:nth-child(2) {
  border-top-color: #e07000;
}

.ipr-panel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.ipr-panel-card:nth-child(2) .ipr-panel-icon {
  background: #fff3e0;
  color: #e07000;
}

.ipr-panel-card:hover .ipr-panel-icon {
  background: #111111;
  color: #fff;
}

.ipr-panel-card:nth-child(2):hover .ipr-panel-icon {
  background: #e07000;
  color: #fff;
}

.ipr-panel-card h3 {
  font-size: 20px;
  color: #111111;
  margin-bottom: 14px;
  font-weight: 800;
}

.ipr-panel-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
}

/* =======================================
   IPR CONNECT CALLOUT
======================================= */

.ipr-connect-box {
  background: linear-gradient(135deg, #1f1c18 0%, #0c0b0a 100%);
  color: #fff;
  border-radius: 22px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ipr-connect-box::after {
  content: "\f0a1"; /* Bullhorn or announcement icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -40px;
  right: 20px;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.ipr-connect-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #e07000;
  margin-bottom: 16px;
}

.ipr-connect-box p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #c4d1df;
}

.btn-ipr-connect {
  display: inline-block;
  background: #e07000;
  color: #fff !important;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 112, 0, 0.3);
}

.btn-ipr-connect:hover {
  background: #ff840a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 112, 0, 0.4);
}

/* =======================================
   RESPONSIVE — INNOVATION PAGE
======================================= */

@media(max-width: 1000px) {
  .ipr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 900px) {
  .ipr-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    gap: 30px;
  }
  
  .ipr-hero-left, .ipr-hero-right {
    width: 100%;
  }

  .ipr-hero-left h1 {
    font-size: 38px;
  }

  .ipr-hero-right img {
    max-width: 380px;
  }

  .ipr-section-title {
    font-size: 28px;
  }

  .ipr-panels-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media(max-width: 600px) {
  .ipr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media(max-width: 480px) {
  .ipr-grid {
    grid-template-columns: 1fr;
  }
  
  .ipr-connect-box {
    padding: 35px 20px;
  }
}

/* =======================================
   ENHANCED MICRO-ANIMATIONS (innovation-ipr page)
======================================= */

.ipr-hero-left h1 {
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.ipr-hero-desc {
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}
.ipr-hero-tag {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* IPR card hover */
.ipr-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.ipr-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.14);
}
.ipr-card i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ipr-card:hover i {
  transform: rotate(18deg) scale(1.2);
}

/* IPR panel card hover */
.ipr-panel-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.ipr-panel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.12);
}

/* Connect-box glow */
.ipr-connect-box {
  animation: iprGlow 3.5s ease-in-out infinite;
}
@keyframes iprGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,0.1), 0 12px 40px rgba(17,17,17,0.07); }
  50%       { box-shadow: 0 0 0 10px rgba(234,88,12,0), 0 12px 40px rgba(234,88,12,0.08); }
}

/* Section title animated underline */
.ipr-section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea580c, #111111);
  border-radius: 2px;
  margin: 10px auto 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ipr-section-title.visible::after {
  width: 80px;
}
