/* 
  Main Stylesheet for Incubation Plus Hub
  Color Scheme: Deep Black, Yellow, and White
  Features: Professional animations, responsive design, high contrast
*/

/* ============= GLOBAL STYLES ============= */
:root {
  --primary-black: #111111;
  --secondary-black: #1a1a1a;
  --primary-yellow: #ffc107;
  --secondary-yellow: #ffb100;
  --accent-yellow: #e8e848;
  --text-white: #ffffff;
  --text-light: #f5f5f5;
  --gray-light: #aaaaaa;
  --transition-fast: 0.3s;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s;

  /* ======== */
  --primary-black: #121212;
  --secondary-black: #1a1a1a;
  --transparent-black: #1c1b1bb2;
  --primary-yellow: #ffc107;
  --secondary-yellow: #ffb100;
 
  
 
  --text-gray: #bbbbbb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-black);
  color: var(--text-white);
  overflow-x: hidden;
}

.body {
  background-color: var(--primary-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all var(--transition-fast) ease;
}

a:hover {
  color: var(--accent-yellow);
}

.btn {
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast) ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--primary-black);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary-yellow);
  border-color: var(--secondary-yellow);
  color: var(--primary-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

.btn-primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--transition-fast) ease-out;
}

.btn-primary:hover::after {
  transform: scaleX(1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-yellow);
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
}

/* ============= HEADER STYLES ============= */
.about-header {
  padding: 9rem 0 5rem;
  background-color: var(--secondary-black);
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 50%
  );
  z-index: 0;
}

.about-header .container {
  position: relative;
  z-index: 1;
}

.about-header h1 {
  background: linear-gradient(to right, #ffffff, var(--primary-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.about-header .lead {
  animation: fadeInUp 1.2s ease-out;
}

.about-header img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: fadeInRight 1.5s ease-out;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all var(--transition-medium) ease;
}

.about-header img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* ============= COMPANY PROFILE STYLES ============= */
.icon-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--secondary-black);
  border-radius: 10px;
  transition: all var(--transition-fast) ease;
  border-left: 3px solid var(--primary-yellow);
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.icon-box i {
  color: var(--primary-yellow);
  font-size: 1.5rem;
}

.stats-box {
  padding: 2rem;
  background-color: var(--secondary-black);
  border-radius: 10px;
  text-align: center;
  transition: all var(--transition-fast) ease;
  position: relative;
  overflow: hidden;
}

.stats-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-yellow);
  transition: all var(--transition-fast) ease;
  transform: scaleX(0.3);
  transform-origin: 0 50%;
}

.stats-box:hover::before {
  transform: scaleX(1);
}

.stats-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-yellow);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

/* ============= FEATURE CARD STYLES ============= */
.feature-card {
  padding: 2rem;
  background-color: var(--secondary-black);
  border-radius: 15px;
  transition: all var(--transition-medium) ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-medium) ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast) ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-yellow);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  transition: all var(--transition-fast) ease;
}

.feature-card:hover .feature-icon i {
  color: var(--primary-black);
}

.feature-card h4 {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.feature-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-yellow);
  transition: width var(--transition-fast) ease;
}

.feature-card:hover h4::after {
  width: 60px;
}

/* ============= MEMBERSHIP STYLES ============= */
.membership-logo {
  background-color: var(--secondary-black);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  transition: all var(--transition-fast) ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.membership-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-yellow);
}

/* ============= EXPERTISE AREA STYLES ============= */
.expertise-area {
  padding: 5rem 0;
  background-color: var(--secondary-black);
  position: relative;
  overflow: hidden;
}

.expertise-area::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--primary-yellow) 0%,
    transparent 70%
  );
  opacity: 0.05;
  bottom: -150px;
  left: -150px;
}

.expertise-area img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-medium) ease;
  transform: perspective(1000px) rotateY(5deg);
}

.expertise-area img:hover {
  transform: perspective(1000px) rotateY(0);
}

.value-card {
  background-color: var(--primary-black);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all var(--transition-fast) ease;
  height: 100%;
  border-left: 3px solid var(--primary-yellow);
}

.value-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.value-card h5 {
  color: var(--primary-yellow);
}

.value-card i {
  margin-right: 0.5rem;
}

/* ============= TESTIMONIAL STYLES ============= */
.testimonial-section {
  padding: 5rem 0;
  background-color: var(--primary-black);
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 193, 7, 0.05), transparent);
  z-index: 0;
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-section h6 {
  color: var(--primary-black);
}

.testimonial-section .bg-white {
  transition: all var(--transition-medium) ease;
  border-bottom: 3px solid transparent;
}

.testimonial-section .bg-white:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--primary-yellow);
}

.testimonial-section .fa-quote-left {
  color: var(--primary-yellow);
  opacity: 0.3;
}

.testimonial-section img {
  border: 2px solid var(--primary-yellow);
}

/* ============= CTA STYLES ============= */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(
    to right,
    var(--primary-black),
    var(--secondary-black)
  );
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.05;
  top: -100px;
  right: -100px;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -75px;
  left: 10%;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px) perspective(1000px) rotateY(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) perspective(1000px) rotateY(-5deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Custom AOS animations */
[data-aos="custom-fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform var(--transition-medium) ease,
    opacity var(--transition-medium) ease;
}

[data-aos="custom-fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Additional hover effects */
.img-hover-zoom {
  overflow: hidden;
  border-radius: 10px;
}

.img-hover-zoom img {
  transition: transform var(--transition-medium) ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* ============= RESPONSIVE STYLING ============= */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .navbar-brand img {
    max-height: 40px;
  }

  .about-header {
    padding: 7rem 0 4rem;
  }

  .about-header h1 {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }

  .about-header {
    padding: 6rem 0 3rem;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .feature-card,
  .value-card,
  .icon-box,
  .stats-box {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}



.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-yellow);
  color: var(--primary-black);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-black);
  color: var(--text-white);
}

/* Animation for elements with AOS */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Glow effect for buttons and important elements */
.glow-on-hover {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.glow-on-hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.4) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--transition-medium) ease;
  z-index: -1;
  transform: scale(0.5);
  pointer-events: none;
}

.glow-on-hover:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Specialized animations for specific elements */
.btn-primary {
  animation: pulse 4s infinite;
}

.feature-icon {
  animation: pulse 3s infinite;
}

/* Background animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.05;
  pointer-events: none;
}

.bg-animation span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-yellow), 0 0 20px var(--primary-yellow);
}

.bg-animation span:nth-child(1) {
  top: 20%;
  left: 20%;
  animation: move 15s linear infinite;
}

.bg-animation span:nth-child(2) {
  top: 60%;
  left: 80%;
  animation: move 25s linear infinite;
}

.bg-animation span:nth-child(3) {
  top: 40%;
  left: 40%;
  animation: move 20s linear infinite;
}

.bg-animation span:nth-child(4) {
  top: 85%;
  left: 15%;
  animation: move 22s linear infinite;
}

.bg-animation span:nth-child(5) {
  top: 10%;
  left: 90%;
  animation: move 18s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  25% {
    transform: translate(100px, 50px) scale(1.2);
  }
  50% {
    transform: translate(50px, 100px) scale(1);
  }
  75% {
    transform: translate(-50px, 50px) scale(0.8);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

/* Adding life to navigation and buttons with hover effects */
