﻿
body {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
}

/* Header */
.navbar {
   /* background: #0d6efd;*/
 /*   padding: 15px;*/
}

.navbar-brand,
.nav-link {
   /* color: #fff !important;*/
    font-weight: 500;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* HERO */
/*.hero {
    color: white;
    padding: 130px 0;
}*/
.hero {
    color: white;
    padding: 40px 0;
    min-height: 390px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 55%;
}

    .hero-text h1 {
        font-size: 25px;
        color: black!important;
        /*   margin-bottom: 15px;*/
    }

    .hero-text p {
        margin-bottom: 20px;
        color: black!important;
    }
/* BUTTONS */
.btn {
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.green {
    background: #28a745;
    color: white;
}

.white {
    background: white;
    color: #0b5ed7;
}

.blue {
    background: #0b5ed7;
    color: white;
}

.orange {
    background: #ff6b21;
    color: white;
}

.section {
    padding: 20px 0!important;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}
.btn:hover {
    color: black!important;
   background-color:white;
}
/* Cards */
.exam-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .exam-card:hover {
        transform: translateY(-6px);
    }

/* Why Choose */
.feature {
    text-align: center;
    padding: 25px;
}

    .feature h5 {
        margin-top: 15px;
        font-weight: 600;
    }




/* Footer */
footer {
    background: #1b1f27;
    color: #bbb;
    padding: 25px;
    text-align: center;
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

    .section-title::before,
    .section-title::after {
        content: "";
        /*flex: 1;*/
        width: 100px;
        height: 2px;
        background-color: #dcdcdc;
    }

    .section-title::before {
        margin-right:10px; 
    }

    .section-title::after {
        margin-left: 10px; 
    }

/*---------user review ---------------*/

.testimonial-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider {
    width: 85%;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex !important;
    gap: 15px;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.stars {
    color: #f4c150;
    font-size: 14px;
}

.author {
    font-weight: 600;
    font-size: 14px;
}


.nav-btn {
    position: absolute;
    width: 30px;
    height: 40px;
    border: 2px solid black;
    background: #fff;
    color: black;
    font-size: 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}
/**/
.prev-btn {
    left:0px!important;
}

.next-btn {
    right: 0px !important;
}

@media (max-width: 768px) {
    .btngr {
       /* display: flex;
        justify-content: center;
        margin-bottom: 10px;*/
        padding: 12px 12px;
    }
    .hero-text {
        width: unset;
    }
}