body{
    margin:0;
    background:#f5f7fb;
    color:#222;
    direction:rtl;
}

.blog-container{
    width:1140px;
    max-width:95%;
    margin:auto;
}

.blog-layout{
    display:flex;
    gap:30px;
    align-items:flex-start;
    margin-top:40px;
    flex-direction:row-reverse;
}


.blog-layout li{
    font-size: 14px;
}
.sidebar{
    width:300px;
    position:sticky;
    top:30px;
}

.content-area{
    flex:1;
    order: 1;
}

.card{
    background:#fff;
    border-radius:28px;
    box-shadow: 0 .125px 10px 0 rgba(60.00000000000001, 72.00000000000001, 88, .15);
    border:1px solid #edf0f2;
}

.hero-box{
    position:relative;
    overflow:hidden;
    height:430px;
    border-radius:32px;
    margin-bottom:30px;
}

.hero-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to left, rgba(0,0,0,.7), rgba(0,0,0,.3));
}

.hero-content{
    position:absolute;
    z-index:2;
    bottom:50px;
    right:50px;
    color:#fff;
    width:60%;
}

.hero-content h1{
    font-size:54px;
    line-height:1.6;
    margin:0 0 20px;
    font-weight:800;
}

.hero-meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    font-size:14px;
}

.sidebar-widget{
    padding:28px;
    margin-bottom:25px;
}

.sidebar-title{
    font-size:18px;
    margin-bottom:20px;
    font-weight:700;
}


.author-box img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin-bottom:15px;
}

.author-box p{
    line-height:2;
    color:#666;
}

.related-post-item{
    display:flex;
    gap:14px;
    margin-bottom:18px;
    align-items:center;
}

.related-post-item img{
    width:100px;
    /*height:80px;*/
    object-fit:cover;
    border-radius:18px;
}

.related-post-item span{
    font-size:12px;
    line-height:1.8;
    margin:0;
}

.related-post-item a{
    text-decoration:none;
    color:#222;
}

.category-list a,
.toc-list a{
    display:flex;
    justify-content:space-between;
    text-decoration:none;
    color:#444;
    padding:12px 0;
    border-bottom:1px solid #f0f0f0;
    font-size: 14px;
}

.category-list a:hover,
.toc-list a:hover{
    color:#0f9d58;
}

.intro-box{
    padding:35px;
    margin-bottom:30px;
}

.intro-box p{
    line-height:2.3;
    color:#555;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:35px;
}

.feature-item{
    padding:14px;
    text-align:center;
}

.feature-item h3{
    margin-top:10px;
}

.main-toc{
    padding:35px;
    margin-bottom:35px;
}

.main-toc ul {
    margin-top: 15px;
    padding: 0;
    list-style: none;
}

.main-toc li{
    margin-bottom:14px;
}

.main-toc a{
    text-decoration:none;
    color:#444;
	font-size: 14px;
}

.content-text{
/*     background:#fff; */
/*     padding:40px; */
    border-radius:28px;
    margin-bottom:35px;
    line-height:2.4;
}

.content-text h2{
/*     margin-top:50px; */
    margin-bottom:20px;
    font-size:20px;
}
	
	.content-text h3{
    margin-top:50px;
    margin-bottom:20px;
    font-size:18px;
}

	.content-text h4{
    margin-top:10px;
    margin-bottom:10px;
    font-size:16p !important;
}

.course-card p {
    margin-bottom: 15px !important;
}

.institutes-section{
    margin-top:50px;
}

.institute-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    margin-bottom:25px;
    border:1px solid #edf0f2;
    box-shadow:0 10px 40px rgba(0,0,0,.04);
}

.institute-top{
    /*display:flex;*/
    gap:30px;
    align-items:center;
}


.institute-logo img.camp-logo {
    width:110px;
    height:110px;
    object-fit:contain;
    border-radius:24px;
    background:#fafafa;
    padding:12px;
}

.institute-logo{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

/*.institute-info{*/
/*    flex:1;*/
/*}*/

.institute-info h3{
    font-size:22px;
    margin:0 0 12px;
}

.rating{
    display:inline-block;
    background:#fff5d9;
    color:#d79d00;
    padding:6px 16px;
    border-radius:16px;
    margin-bottom:15px;
    display: flex !important;
    align-items: center !important;
}


.rating svg{
    width: 18px !important;
    margin-left: 5px;
}

.rating span{
    font-size: 12px;
}

/*.institute-info p{*/
/*    line-height:2.2;*/
/*    color:#666;*/
/*}*/

/*.institute-meta{*/
/*    display:flex;*/
    /*grid-template-columns:repeat(4,1fr);*/
/*    gap:20px;*/
/*    border-top:1px solid #eee;*/
/*    border-bottom:1px solid #eee;*/
/*    padding:25px 0;*/
/*    margin-top:25px;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/



.institute-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}


@media (max-width: 767px) {
    .institute-meta {
        grid-template-columns: 1fr;
    }
}
.info-card{
    display:flex;
    align-items:flex-start;
    flex-direction: column;
    gap:6px;
    padding:15px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    transition:.3s;
}

.info-card br{
    display: none;
}

.phone-list{
    padding-right: 15px;
}

.info-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:#eef9f3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-icon img{
    width:22px;
    height:22px;
}

.info-content{
    flex:1;
}

.info-title{
    display:block;
    font-size:17px;
    font-weight:700;
    color:#222;
}

.phone-list{
    display:flex;
    flex-direction:column;
}

.phone-list li{
    list-style: none !important;
}

.phone-list a,
.site-link{
    color:#e44b6d;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.phone-list a:hover,
.site-link:hover{
    color:#10b981;
}

.info-content p{
    margin:0;
    color:#555;
    line-height:2;
    font-size: 14px;
}


@media screen and (max-width: 987px) {
  .institute-meta {
    flex-direction: column;
}
}

.institute-buttons{
    display:flex;
    gap:15px;
    margin:30px auto;
}
	
.institute-buttons p{
	display: contents !important;
}

.institute-buttons a{
    flex:1;
    text-align:center;
    background:#0f9d58;
    color:#fff;
    padding:5px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

.compare-table{
    background:#fff;
    padding:30px;
    border-radius:28px;
    margin-top:40px;
}

.compare-table table{
    width:100%;
    border-collapse:collapse;
}

.compare-table th{
    background:#effaf3;
    padding:18px;
}

.compare-table td{
    padding:18px;
    border-top:1px solid #eee;
    text-align:center;
}

.site-footer{
    margin-top:70px;
    background:#082d56;
    color:#fff;
    padding:70px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:12px;
    opacity:.8;
}
	
	.table-container {
    width: 100%;
    overflow: hidden;
}
	
	.table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
	
	.custom-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
    text-align: center;
    border: 1px solid #ccc;
}
	
svg.svg-icon {
    color: #28e489;
    width: 20px !important;
}
	
	.custom-info-box{
	align-items: center;
		display: flex;
    gap: 5px;
	}
	
	.address-box, .phone-title{
	    display: flex;
	}
	
@media screen and (min-width: 987px) {
.custom-info-box{
    width: 50%;
}
}
	
	.custom-info-box img, .rating img{
	    width: 20px !important;
	}
	

	
	.author-box {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    /*padding: 20px;*/
    border-radius: 28px;
    /*margin-top: 40px;*/
    direction: rtl;
    flex-direction: column;
    margin-top: 0px;
    text-align:center;
}


p#reply-title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 24px;
}


/*faq*/
.faq-section{
    padding:35px;
    margin-top:40px;
}

.faq-title{
    margin:0 0 25px;
    font-size:32px;
}

.faq-item{
    border-bottom:1px solid #edf0f2;
}

.faq-item:last-child{
    border-bottom:none;
}

.faq-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    cursor:pointer;
    padding:3px 0;
}

.faq-question{
    margin:0;
    font-size:16px !important;
    line-height:1.8;
    font-weight:700;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.faq-icon{
    width:36px;
    height:36px;
    flex-shrink:0;
    border-radius:50%;
    background:#f5f7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    margin:0;
    padding:0 0 25px;
    line-height:2.3;
    color:#666;
    font-size: 14px !important;
}



.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

@media(max-width:767px){

    .faq-section{
        padding:25px;
    }

    .faq-title{
        font-size:26px;
    }

    .faq-question{
        font-size:16px;
    }

}
/**/


@media (max-width: 998px) {
    .table-scroll {
        overflow-x: scroll;
    }
}

@media(max-width:992px){

    .blog-layout{
        flex-direction:column;
        min-width: 0px;
        display: block;
    }

    .sidebar{
        width:100%;
        position:relative;
        top:auto;
    }

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

    .institute-meta{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:767px){

    .hero-content{
        width:85%;
        right:25px;
        bottom:25px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .institute-top{
        flex-direction:column;
        text-align:center;
		gap: 0px !important;
    }

    .institute-meta{
        grid-template-columns:1fr;
    }

    .institute-buttons{
      gap: 4px;
    }
	
	.institute-card {
    padding: 20px;
	}
	
	.institute-buttons a {
    color: #fff;
    padding: 4px;
    font-weight: 600;
    font-size: 14px;
}

    .footer-grid{
        grid-template-columns:1fr;
    }
	
	.content-text h2 {
    font-size: 16px;
    line-height: 32px;
}
	
	.content-text h3 {
    margin-top: 18px;
    font-size: 15px !important;
    line-height: 32px;
}

	.content-text h4 {
    margin-top: 18px;
    font-size: 15px !important;
    line-height: 32px;
}

}