﻿.about-section {
    background: #fff;
}

.about-image {
    overflow: hidden;
    border-radius: 20px;
}

    .about-image img {
        width: 100%;
        transition: .5s;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.about-tag {
    color: #396bb3;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.about-text {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
    text-align: justify;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: .3s;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .feature-box i {
        width: 55px;
        height: 55px;
        background: #396bb3;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .feature-box h6 {
        margin: 0;
        font-weight: 600;
    }

    .feature-box span {
        color: #777;
        font-size: 14px;
    }

.btn-primary {
    background: #396bb3;
    border: none;
    border-radius: 50px;
}

    .btn-primary:hover {
        background: #e45d00;
    }

@media(max-width:991px) {

    .about-title {
        font-size: 30px;
        margin-top: 15px;
    }

    .about-text {
        font-size: 15px;
    }
}


/*=========================
 Mission Vision Values
==========================*/

.mission-section {
    background: #f8fafc;
}

.section-tag {
    color: #396bb3;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    transition: .35s;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.value-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #396bb3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.value-card p {
    color: #666;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .value-list li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #555;
        font-weight: 500;
    }

        .value-list li:last-child {
            border: none;
        }

        .value-list li::before {
            content: "✔";
            color: #396bb3;
            margin-right: 10px;
            font-weight: bold;
        }

@media(max-width:991px) {

    .section-title {
        font-size: 30px;
    }

    .value-card {
        padding: 30px 25px;
    }
}
/*=========================
 Contact Cards
==========================*/

.contact-info-section {
    background: #f8fafc;
}

.section-tag {
    color: #396bb3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: .35s;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #396bb3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.contact-card a {
    display: block;
    text-decoration: none;
    color: #555;
    font-size: 17px;
    margin-bottom: 12px;
    transition: .3s;
}

    .contact-card a:hover {
        color: #396bb3;
    }

.contact-card small {
    display: block;
    color: #888;
    margin-top: 15px;
}

@media(max-width:991px) {

    .section-title {
        font-size: 30px;
    }

    .contact-card {
        padding: 30px 25px;
    }
}

/*==============================
 Contact Form Section
===============================*/

.contact-form-section {
    background: #f8fafc;
}

.map-box {
    height: 100%;
    min-height: 620px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .map-box iframe {
        width: 100%;
        height: 100%;
    }

.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
}

.section-tag {
    color: #396bb3;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-box h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.contact-form-box label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.contact-form-box .form-control {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: none;
    transition: .3s;
}

    .contact-form-box .form-control:focus {
        border-color: #396bb3;
        box-shadow: 0 0 0 .2rem rgba(255,107,0,.15);
    }

.btn-send {
    display: inline-block;
    background: #396bb3;
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

    .btn-send:hover {
        background: #396bb3;
        transform: translateY(-3px);
        color: #fff !important;
    }

@media(max-width:991px) {

    .map-box {
        min-height: 350px;
    }

    .contact-form-box {
        padding: 30px;
    }

        .contact-form-box h2 {
            font-size: 28px;
        }
}

/*=========================
 Blog Section
=========================*/

.blog-section {
    background: #f8f9fc;
}

.blog-tag {
    color: #396bb3;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-heading {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.blog-subtitle {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

.blog-img {
    overflow: hidden;
}

    .blog-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: .5s;
    }

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #396bb3;
    font-weight: 600;
}

    .blog-meta i {
        margin-right: 5px;
    }

.blog-content h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #222;
    margin-bottom: 15px;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    background: #396bb3;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 40px;
    transition: .3s;
    font-weight: 600;
}

    .blog-btn:hover {
        background: #2c5897;
        color: #fff;
        transform: translateX(5px);
    }

@media(max-width:991px) {

    .blog-heading {
        font-size: 30px;
    }

    .blog-img img {
        height: 220px;
    }

    .blog-content h4 {
        font-size: 20px;
    }
}

@media(max-width:767px) {

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-img img {
        height: 200px;
    }
}

.blog-details-section {
    padding: 70px 0;
    background: #f8f9fb;
}

.blog-main {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .blog-main img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

.blog-body {
    padding: 35px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #396bb3;
    font-weight: 600;
    font-size: 15px;
}

.blog-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 2;
    text-align: justify;
    margin-bottom: 20px;
}

/* Sidebar */

.sidebar-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    border-left: 4px solid #396bb3;
    padding-left: 12px;
}

.latest-blog {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: .3s;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

    .latest-blog:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .latest-blog:hover {
        transform: translateX(5px);
    }

    .latest-blog img {
        width: 95px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
    }

.latest-content h6 {
    color: #222;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
    transition: .3s;
}

.latest-blog:hover h6 {
    color: #396bb3;
}

.latest-content span {
    color: #888;
    font-size: 13px;
}

@media(max-width:991px) {

    .blog-main img {
        height: 280px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-body {
        padding: 25px;
    }

    .sidebar-card {
        margin-top: 30px;
    }
}

@media(max-width:576px) {

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-title {
        font-size: 24px;
    }
}
.signup-section {
    background: #f8f9fb;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.signup-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

    .signup-card h2 {
        font-weight: 700;
        color: #396bb3;
    }

    .signup-card p {
        color: #666;
    }

    .signup-card label {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .signup-card .form-control {
        height: 52px;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: none;
    }

        .signup-card .form-control:focus {
            border-color: #396bb3;
            box-shadow: 0 0 0 .2rem rgba(57,107,179,.15);
        }

.signup-btn {
    background: #396bb3;
    color: #fff !important;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

    .signup-btn:hover {
        background: #2e5895;
        color: #fff !important;
    }

.signin-link {
    text-align: center;
    font-size: 15px;
    color: #666;
}

    .signin-link a {
        color: #396bb3;
        text-decoration: none;
        font-weight: 600;
    }

        .signin-link a:hover {
            text-decoration: underline;
        }

@media(max-width:768px) {

    .signup-card {
        padding: 30px 20px;
    }
}

.login-section {
    background: #f8f9fb;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

    .login-card h2 {
        font-weight: 700;
        color: #396bb3;
    }

    .login-card p {
        color: #666;
    }

    .login-card label {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .login-card .form-control {
        height: 52px;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: none;
    }

        .login-card .form-control:focus {
            border-color: #396bb3;
            box-shadow: 0 0 0 .2rem rgba(57,107,179,.15);
        }

.login-btn {
    background: #396bb3;
    color: #fff !important;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

    .login-btn:hover {
        background: #2d5a99;
        color: #fff !important;
    }

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

    .signup-link a {
        color: #396bb3;
        font-weight: 600;
        text-decoration: none;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

.error-msg {
    display: block;
    text-align: center;
    color: red;
    font-size: 15px;
    margin-top: 15px;
}

@media(max-width:768px) {

    .login-card {
        padding: 30px 20px;
    }
}

