/* Services Section 
.services-section{
    background: #f4f9ee;
}

.service-card{
    background:#fff;
    border-radius:16px;
    padding:30px 25px;
    height:100%;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.service-icon{
    width:50px;
    height:50px;
    border-radius:12px;
    background:#eef8ea;
    color:#198754;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:20px;
}

.service-card h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
}

.service-card p{
    color:#6c757d;
    font-size:14px;
    margin-bottom:15px;
}

.service-card a{
    color:#198754;
    text-decoration:none;
    font-weight:600;
}

.view-services-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #28a745; /* green border 
  color: #28a745;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.view-services-btn:hover {
  background-color: #28a745; /* green fill 
  color: #fff;
}
 Services Section end*/
html,
body{
    overflow-x: hidden;
}
/* About Section */

.about-img-wrapper{
    overflow: hidden;
    border-radius: 20px;
}

.about-img{
    width: 80%;
    border-radius: 20px;
    transition: all 0.6s ease;
    opacity: 0.9;
}

.about-img:hover{
    transform: scale(1.08);
    opacity: 1;
}

/****************************** courses-section ***************************/
.courses-section{
    background:#f5f5f5;
}

.small-title{
    color:#ff8c00;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.courses-section h2{
    font-size:38px;
    font-weight:700;
    color:#24364f;
}

.courses-section p{
    color:#666;
}

.course-box{
    min-height:240px;
    padding:20px;
    color:#fff;
    position:relative;
}

.course-box h5{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    margin:20px 0;
}

.course-box p{
    color:#fff;
    font-size:14px;
    font-weight: bold;
}
.course-box a:hover {
    background: rgb(114, 112, 112);
    color: #fff;
}
.course-box a{
    display:inline-block;
    margin-top:10px;
    background:#fff;
    color:#222;
    font-size:12px;
    padding:4px 10px;
    text-decoration:none;
}

.blue{
    background:#0d47d9;
}

.green{
    background:#1b8a5b;
}

.yellow{
    background:#f4b400;
}

.red{
    background:#ff2c3b;
}

.expertise-section{
    background:#003ba8;
    padding:80px 0 120px;
    position:relative;
}

.expertise-section h2{
    color:#fff;
    font-size:35px;
    font-weight:700;
}

.expertise-section p{
    color:#fff;
    max-width:800px;
    margin:auto;
}

.btn-group-custom{
    margin-top:25px;
}

.btn-green{
    background:#14c96b;
    color:#fff;
}

.btn-yellow{
    background:#f4b400;
    color:#fff;
}

.stats-box{
    background:#c45138;
    color:#fff;
    max-width:900px;
    margin:50px auto -150px;
    padding:15px 20px;
    display:flex;
    justify-content:space-around;
}

.stats-box h3{
    font-size:42px;
    font-weight:700;
    margin:0;
}

.stats-box span{
    font-size:13px;
}


/***** success-slider ***/
.success-slider{
    background:url('images/banner-bg.jpg') center center/cover;
    padding:40px 0;
    position:relative;
    overflow:hidden;
}

.success-slider::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,50,140,.75);
}

.success-slider .container{
    position:relative;
    z-index:2;
}

.success-slider h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:30px;
}

.marquee{
    width:100%;
    overflow:hidden;
}

.marquee-content{
    display:flex;
    gap:15px;
    width:max-content;
    animation:scrollLeft 20s linear infinite;
}

.slide-item{
    flex-shrink:0;
}

.slide-item img{
    width:170px;
    height:130px;
   /* object-fit:cover;*/
    border:1px solid rgba(255,255,255,.2);
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/****success-slider end**/

/************************start*****/
.testimonial-section{
    background:#f8f9fa;
}

.section-tag{
    color:#ff8c00;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.testimonial-section h2{
    font-size:42px;
    font-weight:700;
    color:#1d2d50;
    margin-top:10px;
}

.testimonial-section p{
    color:#666;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:15px;
}

.client-info{
    display:flex;
    align-items:center;
    margin-top:20px;
}

.client-info img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

.client-info h5{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#1d2d50;
}

.client-info span{
    color:#777;
    font-size:14px;
}

/*********end****/


@media(max-width:992px){

.expertise-section h2 {
  color: #fff;
  font-size: 23px;
  font-weight: 700;
}
.success-slider h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.testimonial-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1d2d50;
  margin-top: 10px;
}
}

/***** why chose us ********/


/* Section background */
#why_choose_section {
    padding: 70px 15px;
}

/* Card design */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid #f1f1f1;
}

/* Icon styling */
.feature-card i {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 12px;
    transition: 0.3s;
}

/* Title */
.feature-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(40,167,69,0.15);
    border-color: #28a745;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: #1e7e34;
}

/* Highlight special card */
.feature-card.highlight {
    background: linear-gradient(135deg, #eafff0, #ffffff);
    border: 2px solid #28a745;
    font-weight: 600;
}

/* Responsive spacing tweak */
@media (max-width: 576px) {
    .feature-card {
        padding: 20px;
    }
}


/***  bottom-tagline  *****/
.bottom-tagline {
    background: linear-gradient(135deg, #3d3a3a, #29036e);
    padding: 60px 15px;
}

.bottom-tagline h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bottom-tagline p {
    opacity: 0.9;
    font-size: 1rem;
}

.testimonial-slider-wrap {
    position: relative;
}

.testimonial-viewport {
    overflow: hidden;
    margin: 0 56px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #198754;
    background: #fff;
    color: #198754;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.testimonial-nav:hover {
    background: #198754;
    color: #fff;
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.94);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

@media (max-width: 576px) {
    .testimonial-viewport {
        margin: 0 44px;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

.testimonial-slide {
flex: 0 0 calc(33.333% - 16px);
min-width: 0;
display: flex;
}

.testimonial-slide .testimonial-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.testimonial-slide .testimonial-card .stars {
    flex: 0 0 auto;
}

.testimonial-slide .testimonial-card p {
    flex: 1 1 auto;
}

.testimonial-slide .testimonial-card .client-info {
    flex: 0 0 auto;
    margin-top: auto;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .testimonial-track {
        gap: 16px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }
}