/*-------------------------------------------------------------------------------------------*/
/* 1. GLOBAL ELEMENTS (Buttons & Buttons Hover) */
/*-------------------------------------------------------------------------------------------*/
.btn {
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    color: #fff !important;
    background: #0056b3; /* Main Blue */
    font-size: 15px;
    font-weight: 700;
    padding: 12px 35px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.btn:hover {
    background: #fcfa05; /* Yellow on hover */
    color: #000 !important;
    box-shadow: 0px 8px 20px rgba(0, 86, 179, 0.2);
    transform: translateY(-2px);
}

/*-------------------------------------------------------------------------------------------*/
/* 2. ABOUT US SECTION */
/*-------------------------------------------------------------------------------------------*/
#about_us {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.icon-lf {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #fcfa05; /* Yellow */
    text-align: center;
    border-radius: 50%; /* Rounded for modern look */
    display: inline-block;
}

.icon-lf i {
    color: #0056b3 !important;
    font-size: 28px;
}

.right-txt h3 {
    font-weight: 700;
    color: #0056b3;
    font-size: 16px;
    margin-bottom: 5px;
}

/*-------------------------------------------------------------------------------------------*/
/* 3. COUNTER SECTION (Facts) */
/*-------------------------------------------------------------------------------------------*/
.fact-counter-wrapper {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 45, 95, 0.9)), url('../images/slider2.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.single-fact span {
    font-size: 45px;
    font-weight: 800;
    color: #fcfa05 !important; /* Yellow numbers */
}

.single-fact p {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

/*-------------------------------------------------------------------------------------------*/
/* 4. HIGH VALUES (Service Cards) */
/*-------------------------------------------------------------------------------------------*/
.maine_box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    transition: 0.4s;
}

.box_detail {
    width: 100%;
    background: rgba(0, 86, 179, 0.9); /* Blue transparent overlay */
    color: #fff;
    position: absolute;
    bottom: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    max-height: 70px;
}

.box_detail h3 {
    color: #fcfa05; /* Yellow Titles */
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.maine_box:hover .box_detail {
    max-height: 100%; /* Smooth slide up */
    background: rgba(0, 86, 179, 0.95);
}

.use_detail .event_detail {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background: #fcfa05;
    color: #0056b3;
    line-height: 55px;
    text-align: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*-------------------------------------------------------------------------------------------*/
/* 5. TESTIMONIALS (Member Says) */
/*-------------------------------------------------------------------------------------------*/
.single_carousel > p {
    background: #f8f9fa;
    border-left: 5px solid #fcfa05; /* Yellow accent line */
    padding: 30px;
    border-radius: 10px;
    color: #444;
    font-style: italic;
}

.single_carousel > p::after {
    background: #0056b3;
    color: #fff;
    content: "\f10d";
    font-family: fontawesome;
}

.author_tablecell__block > p {
    color: #0056b3;
    font-weight: 800;
}

/*-------------------------------------------------------------------------------------------*/
/* 6. BLOG SECTION */
/*-------------------------------------------------------------------------------------------*/
.blog .post-content a.blog_tital {
    color: #0056b3;
    transition: 0.3s;
}

.blog .post-content a.blog_tital:hover {
    color: #fcfa05;
}

.blog .post-content a.read_more {
    color: #0056b3;
    border-bottom: 2px solid #fcfa05;
    padding-bottom: 2px;
}