/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animated Background Color */
.heading-section {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: linear-gradient(270deg, #ff6b6b, #1e90ff);
    background-size: 400% 400%;
    animation: backgroundAnimation 5s infinite alternate;
}

/* Background Animation */
@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* PHAD Research Section */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 80%; */
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 70px;
}

/* Adjust Layout for Smaller Screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .image img {
        max-width: 80%;
    }
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    border-radius: 10px;
}

.content {
    flex: 1;
    padding: 20px;
    /* margin-left: 50px; */
}

.content ul {
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 8px;
}

.unlock-potential {
    background: #0b1f40;
    padding: 60px 20px;
    text-align: center;
  }
  
  .unlock-potential h2 {
    font-size: 2.2rem;
    color: #ffcc00;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
  }
  
  .feature-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card i {
    font-size: 2.5rem;
    color:#0b1f40;
    margin-bottom: 15px;
    animation: float 2s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    color: #0b1f40;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .unlock-potential h2 {
      font-size: 1.8rem;
    }
  
    .feature-card i {
      font-size: 2rem;
    }
  }
  /* Medium screens - tablets */
@media (max-width: 992px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Small screens - mobiles */
  @media (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  






  .section {
    padding: 30px;
    margin-bottom: 20px;
    /* background-color: #f9f9f9; */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    width: 90%;
  text-align: center;
  }
  
  .section h2 {
    font-size: 24px;
    color:#0b1f40;
    margin-bottom: 10px;
  }
  
  .section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }

  
.container h2{
  color: #0b1f40;
}


.section b{
  color: #0b1f40;
}