/* About Us Started */
.about-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}
.about-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 45px 50px;
    border: 1px solid #f0f0f0;
}
.about-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}
.about-content .subhead {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    border-left: 4px solid #4361ee;
    padding-left: 18px;
}
.about-content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2d2d2d;
    font-weight: 600;
}
.about-content h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #333;
    font-weight: 600;
}
.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 16px;
}
.about-content .highlight {
    background: #f8f9ff;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #4361ee;
}
.about-content .highlight p:last-child {
    margin-bottom: 0;
}
.about-list {
    margin-top: 5px;
    padding-left: 20px;
}
.about-list li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}
.about-list li strong {
    color: #333;
}
/* Image within text layout */
.float-image {
    float: right;
    width: 280px;
    margin: 5px 0 20px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.float-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}
.float-image-caption {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}
.founder-signature {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    clear: both; /* Ensures signature stays below floated image */
}
.founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eef2ff;
}
.founder-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 600;
}
.founder-info p {
    margin-bottom: 5px;
    color: #666;
    font-size: 15px;
}
.contact-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4361ee;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.contact-badge:hover {
    background: #4361ee;
    color: #fff;
}
.stats-badge {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
    clear: both;
}
.stat-item {
    background: #f0f4ff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #4361ee;
    border: 1px solid #dde4ff;
}
/* Clearfix for floating */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
@media (max-width: 768px) {
    .about-box {
        padding: 30px 25px;
    }
    .float-image {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
}
/* About Us Ended */

/* Contact Us Started */
.contact-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
@media (max-width: 900px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
}
.contact-form {
    padding: 35px;
}
.contact-form h1 {
    font-size: 30px;
    margin-bottom: 10px;
}
.contact-form p {
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.contact-form textarea {
    min-height: 120px;
}
.contact-form button {
    margin-top: 10px;
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}
.contact-form button:hover {
    background: #4338ca;
}
.contact-info {
    padding: 35px;
    background: #f6f7ff;
}
.contact-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.contact-info p {
    color: #555;
    margin-bottom: 15px;
}
.contact-info ul {
    padding: 0;
    list-style: none;
    line-height: 1.9;
    color: #555;
    font-size: 14px;
}
.contact-info a {
    color: #4f46e5;
    text-decoration: none;
}
.map-box {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}
/* Contact Us Ended */

/* Blog Category Started */

/* ===== Page Surface ===== */
.blog-surface {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border-radius: 28px;
    /* padding:40px 30px;    */
}

/* ===== Hero Header ===== */
.blog-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.blog-hero h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.3px;
}

.blog-divider {
    width: 70px;
    height: 4px;
    background: #2563eb;
    margin: 18px auto 18px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.blog-hero p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Grid ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Card ===== */
.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

/* image */
.blog-img-wrap {
    position: relative;
}
.blog-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}
.blog-card:hover img {
    transform: scale(1.06);
}

.blog-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

/* badge */
.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

/* content */
.blog-card-content {
    padding: 22px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* read row */
.blog-read {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
}

.blog-read i {
    transition: 0.3s;
}
.blog-card:hover .blog-read i {
    transform: translateX(6px);
}

.blog-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* ===== Blog Search ===== */
.blog-search-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.blog-search {
    display: flex;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.blog-search:focus-within {
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
    border-color: #2563eb;
}

.blog-search input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 14px;
    outline: none;
    color: #111827;
}

.blog-search input::placeholder {
    color: #9ca3af;
}

.blog-search button {
    border: none;
    background: #2563eb;
    color: #fff;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.blog-search button:hover {
    background: #1d4ed8;
}

.blog-search button i {
    font-size: 16px;
}

/* Blog Category Ended */
