

        /* top section */

        .aboutscholarships-top{
           background: linear-gradient(90deg, #FFFFFF 0%, #F9F9FF 100%);
            border:1px solid #00000012;
            border-radius:10px;
            padding:25px;
            display:flex;
            align-items:center;
            gap:50px;
            margin-bottom:20px;
        }

        /* features */

        .aboutscholarships-features{
            flex-shrink:0;
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:14px;
            max-width:500px;

        }
        .aboutscholarships-features .blog-card{
         box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        /* cancel hover effect */

  .aboutscholarships-features .blog-card:hover{
    background:#FEFEFE;
    transform:none;
    box-shadow:none;
}

  .aboutscholarships-features .blog-card:hover .blog-title{
     color:#0F5BC3;

}
  .aboutscholarships-features .blog-card:hover .blog-count{
     color:#7C8493;

}


  .aboutscholarships-features .blog-card:hover .blog-icon{
    background:transparent;
    color:initial;
}

  .aboutscholarships-features .blog-card:hover .blog-svg{
    color:#3872E5;
}
        .aboutscholarships-feature-item{
            background:#fff;
            border:1px solid #00000010;
            border-radius:10px;
            padding:18px 14px;
            text-align:center;
        }

        .aboutscholarships-feature-icon{
            width:44px;
            height:44px;
            border-radius:10px;
            background:#edf3ff;

            display:flex;
            align-items:center;
            justify-content:center;

            margin:auto auto 12px;
        }

        .aboutscholarships-feature-icon svg{
            width:24px;
            height:24px;
            fill:#2f6ad9;
        }

        .aboutscholarships-feature-item h3{
            font-size:15px;
            font-weight:700;
            color:#2f6ad9;
            margin-bottom:8px;
        }

        .aboutscholarships-feature-item p{
            font-size:12px;
            line-height:1.7;
            color:#8d8d8d;
        }

        /* content */

        .aboutscholarships-content{
            flex:1;
        }

        .aboutscholarships-content h2{
            font-size:clamp(24px,1.4vw,28px);
            font-weight:500;
            color:#000000;
            margin-bottom:18px;
        }

        .aboutscholarships-content p{
            font-size:clamp(16px,1.4vw,20px);
            line-height:2;
        }

        /* bottom section */

        .aboutscholarships-bottom{
            background:#fff;
            border:1px solid #00000012;
            border-radius:10px;
            padding:24px;
            margin:20px 0;
        }

        .aboutscholarships-bottom h2{
            font-size:clamp(24px,1.4vw,28px);
            font-weight:700;
            color:#111;
            margin-bottom:18px;
        }

        .aboutscholarships-bottom p{
            font-size:clamp(16px,1.4vw,20px);
            line-height:1.6;
            color:#00000091;
        }

        /* tablet */

        @media(max-width:991px){

            .aboutscholarships-top{
                flex-direction:column;
                align-items:stretch;
            }

            .aboutscholarships-features{
                width:100%;
            }

         
        }

        /* mobile */

        @media(max-width:600px){

      
            .aboutscholarships-top,
            .aboutscholarships-bottom{
                padding:18px;
            }

            .aboutscholarships-features{
            grid-template-columns:repeat(2,1fr);
                gap:10px;
            }

            .aboutscholarships-feature-item{
                padding:14px 10px;
            }

            .aboutscholarships-feature-item h3{
                font-size:13px;
            }

            .aboutscholarships-feature-item p{
                font-size:11px;
            }

            .aboutscholarships-content h2,
            .aboutscholarships-bottom h2{
                font-size:22px;
                margin-bottom:12px;
            }

            .aboutscholarships-content p,
            .aboutscholarships-bottom p{
                font-size:14px;
                line-height:1.5;
            }

        }
    
    .aboutcard-container{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
      margin:20px 0;
    }

    .aboutcard-item{
      background:#fff;
      border:1px solid #e8e8e8;
      border-radius:10px;
      padding:28px 26px;
      min-height:200px;
      transition:0.3s ease;
    }

    .aboutcard-item:hover{
      transform:translateY(-4px);
      box-shadow:0 4px 15px rgba(0,0,0,0.05);
    }

.aboutcard-list{
  padding-right:20px;
}


.aboutcard-list li{
  list-style-type:disc;
}
  .aboutcard-icon{
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  margin-bottom:18px;
  width:100%;
}

.aboutcard-icon .circle{
  flex-shrink:0;
  width:90px;
  height:90px;
  margin:0;
}




    .aboutcard-title{
            font-size:clamp(24px,1.4vw,28px);
      font-weight:500;
      color:#000000;
      margin-bottom:10px;
      line-height:1.4;
    }

    .aboutcard-text{
            font-size:clamp(16px,1.4vw,20px);
      line-height:1.6;
      color:#00000091;
    }


    @media (max-width:768px){

      .aboutcard-container{
        grid-template-columns:1fr;
      }

      .aboutcard-item{
        min-height:auto;
      }

    }

  