.fear-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 20px 70px 20px ;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
    background-color: white;
  }
  .fear-wrapper-img{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-controls button{
    border: none;
  }
  .fear-title p {
    font-size: 30px;
    font-family: "Nasalization" !important;
    font-weight: 500;
    color: #1D5472;
    text-align: center;
    padding: 40px 0px;
    line-height: normal;

  }
  
  .fear-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  /* Left Side - Features */
  .fear-left {
    flex: 1 ;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    border: 1px dashed #d5ff59;
    border-radius: 20px;
    padding: 1.5rem;
    background-color: #ffffff;
  }
  
  .fear-left > div {
    background-color: #F2F5F9;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .fear-left > div:hover {
    transform: translateY(-5px);
    background-color: #a0e7688f;

  }
  
  .fear-left img {
    width: 70px;
    margin-bottom: 0.5rem;
    object-fit: contain;
    height: 50px;
  }
  
  .fear-left p {
    font-weight: 600;
    color: #1f3c6b;
    margin: 0;
  }
  
  /* Right Side */
  .fear-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .fear-box {
    display: flex;
    background: #f1f7fc;
    border-radius: 16px;
    padding: 10px 10px 0px 10px;
    gap: 20px;
    align-items: center;
  }
  .fear-tags{
    background-color: white;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 30px 30px 0px 0px;
  }
  
  .fear-text-box h3 {
    margin: 0;
    color: #1f3c6b;
    font-size: 1.2rem;
  }
  .fear-icon-box{
    flex:0.5;
  }
  .fear-icon-box .border-white{
    border-radius: 50%;
    background-color: white;
    width: 102px;
    height: 100px;
    display: grid;
    place-items: center;
  }
  .fear-icon-box img{
    width: 70px;
  }
  .fear-text-box{
    flex:2;
  }
  .fear-text-box p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 14px;
  }

  
  .fear-tags span {
    color: #1f3c6b;
    font-weight: 600;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
  }
  
  /* Image */
  .fear-image img {
    width: 100%;
    object-fit: contain;
    height: auto;
  }
  .fear-image {
    position: relative;
    width: 450px;
    height: 300px;
    margin: auto;
  }
  
  .fear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .nav-controls {
    position: absolute;
    bottom: -60px;
    z-index: 99;
    left: 0px;
 
  }
  
  .nav-button {
    background-color: transparent;
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
  }
   
  .nav-button img{
    width: 50px;
  }
  .nav-button:hover {
    transform: scale(1.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
 
    .fear-tags{
      flex-direction: column;
    }
    .fear-image img {
      max-height: 260px;
    }
    .fear-image{
      width: 100%;
      height: 100%;
    }
    .fear-box{
      flex-direction: column;
    }
    .fear-title p {
      font-size: 20px;

  }
  .fear-content{
    flex-direction: column;

  }}
  @media (max-width: 500px) {
    .fear-left {
      grid-template-columns: repeat(1, 1fr);
      padding: 10px;
  }
  }