#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

.Blog-section {
    margin-left: 15px;
    margin-right: 15px;
}

.Blog-title {
    font-weight: 600;
    color: black;
    transition: color 0.2s;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

    .Blog-title:hover {
        color: #e14b25;
    }

.btn-subscribe {
    background-color: #784c87;
    color: white;
    margin-top: 20px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    padding: 0; /* remove default padding */
    transition: all 200ms linear;
}

    .btn-subscribe:hover {
        background-color: #e14b25;
        color: white;
    }

.btn-hero-subscribe {
    padding: 10px 40px;
    font-size: 20px;
    font-weight: normal;
    border-radius: 30px;
    background: white;
    color: black;
    transition: all 200ms linear;
    /*background: linear-gradient(to right, #e14b25 50%, white 50%);*/
    background-position: right bottom;
    background-size: 200% 100%;
}

    .btn-hero-subscribe:hover {
        background-color: #e14b25;
        background-position: left bottom;
        color: white;
        font-weight: bold;
    }

.text-primary {
    color: #e14d28 !important;
}

.text-secondary {
    color: #979797 !important;
}

.left-subscribe-section {
    padding: 15px 40px;
}

@media (max-width: 767.98px) {
    h1.display-2 {
        text-align: center !important;
    }
}

.blog-type-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffffffcc; /* semi-transparent white */
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

    .blog-type-icon i {
        font-size: 16px;
        color: #7a4e89;
        transition: color 0.3s ease;
        cursor: pointer;
    }

.blog-card {
    transition: all 0.3s ease;
}

    .blog-card:hover .blog-type-icon {
        background-color: #7a4e89;
    }

        .blog-card:hover .blog-type-icon i {
            color: #fff;
        }


    .blog-card:hover {
        transform: translateY(-5px);
        transition: 0.3s;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }




.read-more-text {
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

    .read-more-text:hover {
        color: #e14b25 !important;
    }

    .read-more-text i {
        transition: transform 0.3s ease;
        z-index: 2;
    }

    .read-more-text:hover i {
        transform: translateX(5px); /* Slide icon to right */
    }


.pdf-download-link {
    font-weight: 600;
    text-decoration: none;
    color: black;
    margin: 20px 0;
    display: inline-block;
    transition: color 0.3s ease;
    position: relative;
}

    .pdf-download-link i {
        color: #e14b25; /* greenish shade */
        font-size: 16px;
        margin-right: 6px;
    }

    .pdf-download-link:hover {
        /*text-decoration: underline;*/
        color: #e14b25;
    }

        .pdf-download-link:hover::after {
            width: 100%;
        }

    .pdf-download-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 1px;
        background-color: #000;
        transition: width 0.3s ease;
    }

.search-section {
    display: flex;
    align-items: center;
    gap: 8px; /* spacing between text and dropdown */
    flex-wrap: wrap; /* fallback for smaller widths */
}

.select-head {
    white-space: nowrap; /* prevent 'Show' from breaking to next line */
    font-weight: 500;
}


.blog1 h1 {
    padding: 15px 0px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 38px;
    /*font-weight: 900;*/
}

.blog1 p {
    font-family: 'Titillium Web', sans-serif;
    line-height: 1.6;
    font-size: 18px;
    color: #626666;
}

.left-subscribe-section-custom {
    padding: 10px;
}

/* Align category, date, and dots in one line */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Category + date block */
.category-date h3,
.category-date p {
    margin: 0;
}

/* 3-dots icon */
.mobile-menu-toggle {
    font-size: 20px;
    cursor: pointer;
    display: none; /* Hide by default */
}

/* Hidden by default */
.mobile-options {
    display: none;
}

/* Show on mobile */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-options.active {
        display: block;
        margin-top: 10px;
    }

    .pdf-download-link {
        display: block;
        margin: 25px 0;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .pdf-download-link:hover {
            text-decoration: underline;
        }

    .btn-subscribe {
        margin-top: 10px;
    }
}

/* Desktop view — show everything by default */
@media (min-width: 768px) {
    .mobile-options {
        display: block !important;
    }

    .mobile-menu-toggle {
        display: none;
    }
}


.blog2 h1 {
    padding: 20px;
    font-family: times new roman;
    font-size: 35px;
    font-weight: 900;
}

.blog2 h4 {
    font-family: times new roman;
    font-size: 20px;
    font-weight: 600;
}

.blog2 p {
    font-family: times new roman;
    line-height: 2;
    font-size: 21px;
    color: #626666;
    text-align: justify;
}

#contact {
    background: #fffefc;
    /* padding: 25px; */
    margin: 44px 0;
}

    #contact h3 {
        display: block;
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    #contact h4 {
        margin: 7px 0 27px;
        display: block;
        /* font-size: 13px; */
        font-weight: 400;
        border-bottom: 1px solid #898f8f;
        padding-bottom: 5px;
    }

fieldset {
    border: medium none !important;
    margin: 0 0 10px !important;
    min-width: 100%;
    padding: 0;
    width: 100%;
    text-align: center;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    margin: 0 0 5px;
    padding: 10px;
}

    #contact input[type="text"]:hover,
    #contact input[type="email"]:hover,
    #contact input[type="tel"]:hover,
    #contact input[type="url"]:hover,
    #contact textarea:hover {
        -webkit-transition: border-color 0.3s ease-in-out;
        -moz-transition: border-color 0.3s ease-in-out;
        transition: border-color 0.3s ease-in-out;
        border: 1px solid #aaa;
    }

#contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    background-color: #fffefc;
    color: #7b4983;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
    border: 1px solid;
    font-weight: 700;
}

    #contact button[type="submit"]:hover {
        background: #7b4983;
        color: #fff;
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        transition: background-color 0.3s ease-in-out;
    }

    #contact button[type="submit"]:active {
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    }

.copyright {
    text-align: center;
}

#contact input:focus,
#contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

::-webkit-input-placeholder {
    color: #888;
}

:-moz-placeholder {
    color: #888;
}

::-moz-placeholder {
    color: #888;
}

:-ms-input-placeholder {
    color: #888;
}

.com-soon {
    background-image: url(img/top.jpg);
    background-size: cover;
    background-position: center;
    background-position-x: left;
    background-position-y: center;
    padding-top: 6rem;
}

@media (min-width: 701px) and (max-width: 1024px) {
    #contact button[type="submit"] {
        max-width: 25%;
        border-radius: 5px;
    }
}

@media (min-width: 1025px) {
    #contact button[type="submit"] {
        max-width: 25%;
        border-radius: 5px;
    }

    .fieldset {
        text-align: center;
    }

    .botm-back {
        width: 70%;
    }
}
