:root {
    --theme-color: #004C3F;
    --theme-color-2: #008060;
    --theme-color-3: #FBF7ED;
}

* {
    font-family: "Poppins", sans-serif;
    transition: all 0.3s;
}

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lora", serif;
    font-weight: 700;
}


.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: var(--theme-color);
}

.error-toast {
    background-color: #d9534f;
    animation: fadeInOut 10s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}


.secondary-navbar {
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
}

.top-link {
    color: #fff;
    text-decoration: none;
}

.top-link i {
    margin-right: 5px;
}

.social-icon {
    color: #fff;
    font-size: 16px;
}

.social-icon:hover {
    color: var(--theme-color-3);
}

.mobile-none .divider {
    display: block;
    width: 1px;
    background: #e5e7eb;
    height: auto;
}

.pc-none {
    display: none;
}
.auth-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.main-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    color: var(--theme-color);
    font-size: 24px;
}

a.navbar-brand.fw-bold.logo.main-logo {
    width: 200px;
    height: auto;
    font-size: 38px;
    font-family: "'Lora", serif;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    color: #333;
    padding: 10px 15px;
    font-size: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--theme-color);
}

.dropdown-menu {
    border: none;
    border-radius: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 0;
    min-width: 220px;
    border-top: 5px solid var(--theme-color);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
}

.dropdown-item:hover {
    background: var(--theme-color-3);
    color: var(--theme-color);
}

.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.nav-link.active,
.nav-link:hover {
    color: var(--theme-color);
}

.mega-dropdown {
    position: static;
}

.mega-dropdown .mega-menu {
    width: 100%;
    max-width: 1000px;
    left: 50%;
    transform: translateX(-40%);
    padding: 25px;
    border: none;
    border-top: 5px solid var(--theme-color);
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mega-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mega-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mega-subject a {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-color);
    text-decoration: none;
}

.mega-subject a i {
    margin-right: 5px;
}

.mega-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mega-links a {
    padding: 5px 10px;
    background: var(--theme-color-3);
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    transition: 0.3s;
    font-weight: 600;
}

.mega-links a:hover {
    background: var(--theme-color);
    color: #fff;
}

.nav-item.dropdown.mega-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

@media (max-width: 991px) {

    .mega-dropdown .mega-menu {
        width: 100%;
        max-width: 100%;
        position: relative;
        left: 0;
        transform: unset;
    }

    .mega-row {
        grid-template-columns: 1fr;
    }

}

.btn-theme {
    background: var(--theme-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
}

.btn-theme:hover {
    background: var(--theme-color-2);
    color: #fff;
}

/* Footer */
.footer-main {
    background: var(--theme-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 8px;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    position: relative;
}

.footer-links li::before {
    content: "\f280";
    font-family: bootstrap-icons !important;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--theme-color-3);
}

.footer-post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.post-img img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.post-title {
    font-size: 14px;
    margin: 0;
}

.post-date {
    font-size: 12px;
    color: #ccc;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--theme-color-3);
}

/* Banner */
.hero-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    background-image: url(../images/slider_bg.png);
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 200px;
}

.hero-content h1.title {
    font-size: 70px;
    font-weight: 600;
    color: var(--theme-color);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.highlight {
    font-size: inherit;
    font-family: inherit;
}

h1.title .highlight {
    position: relative;
    z-index: 1;
}

h1.title .highlight::after {
    bottom: 18px;
    height: 12px;
    width: 100%;
    content: "";
    position: absolute;
    display: inline-block;
    background: #00806057;
    left: 0;
    z-index: -1;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions .btn-theme {
    padding: 12px 25px;
}

.hero-contact i {
    font-size: 28px;
    color: var(--theme-color);
}

.hero-contact span {
    color: #777;
}

.hero-contact h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

.hero-image::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, #fff, transparent);
    z-index: 2;
}

/* Feature Section */
.feature-section {
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #fff;
    height: 100%;
    border-radius: 5px;
    padding: 35px;
    transition: all 0.3s ease 0s;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

img.feature-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.feature-header h4.feature-title {
    margin: 0;
    font-size: 25px;
    color: var(--theme-color);
}

.feature-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    color: var(--theme-color);
    font-weight: 700;
    text-decoration: none;
    font-family: "Lora", serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more i {
    line-height: normal;
    margin-top: 5px;
}

.read-more:hover {
    color: var(--theme-color-2);
}

/* About Section */
.sub-title {
    color: var(--theme-color);
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 18px;
}

.title {
    font-size: 50px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--theme-color);
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 18px;
}

.about-list ul {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 12px;
}

.about-list i {
    color: var(--theme-color);
    margin-right: 8px;
}

.about-actions .btn-theme {
    padding: 10px 25px;
}

.award-box i {
    color: #fff;
    font-size: 40px;
    position: absolute;
    background: var(--theme-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    left: -30px;
}

.about-images {
    position: relative;
}

.about-badge {
    background: var(--theme-color-2);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

img.abt-imgs {
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
}

img.abt-imgs.abt-img-1 {
    margin-top: 40%;
}

.top-img img.abt-imgs.abt-img-2 {
    margin-bottom: 20px;
}

.award-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f1ea;
    padding: 10px 15px;
    border-radius: 6px;
    position: relative;
    margin-left: 50px;
    padding-left: 40px;
}

.abt-bdg-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-badge-content h3 {
    font-size: 44px;
}


.services-section {
    background: url('../images/services-bg.png');
    color: #fff;
}

.service-card {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.service-card .icon {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon img.service-card-icon {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 5px;
}

.service-card .icon {
    margin-top: -75px;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    opacity: 0.7;
    margin-bottom: 1em;
}

.service-card a {
    color: #fff;
}

.text-center .read-more {
    justify-content: center;
}

.text-white .read-more:hover {
    color: #fff;
}

.text-white .sub-title,
.text-white h2.title {
    color: #fff;
}



.quick-box {
    background: var(--theme-color-3);
    padding: 60px;
    border-radius: 0px 5px 5px 0px;
    margin-right: -150px;
    position: relative;
    z-index: 1;
}

.quick-item {
    border: 2px solid #044c0a29;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 500;
    color: var(--theme-color);
}

.quick-item:hover {
    background: #e8f5e9;
}

.quick-item i {
    font-size: 18px;
    color: #1f3d2b;
}

.quick-image img {
    border-radius: 10px;
}



/* video Banner */
.video-section {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-image: url(../images/cta_bg.png);
    background-position: center;
    background-size: cover;
}

.video-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-btn {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color-2));
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    text-decoration: none;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 76, 63, 0.35);
    transition: all 0.4s ease;
}

.video-btn i {
    position: relative;
    z-index: 3;
    margin-left: 4px;
}

.video-btn:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 76, 63, 0.45);
}

.video-btn::before,
.video-btn::after,
.video-btn span::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 128, 96, 0.18);
    z-index: 1;
    animation: videoWave 3s linear infinite;
}

.video-btn::after {
    animation-delay: 1s;
}

.video-btn span::before {
    animation-delay: 2s;
}

@keyframes videoWave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* section 5 */

.info-tab-section {
    padding: 100px 0;
    background: var(--theme-color-3);
}

.tab-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.tab-content-wrapper {
    margin-left: -150px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 60px;
}

.custom-tabs {
    gap: 15px;
    margin-bottom: 35px;
    border: none;
}

.custom-tabs .nav-link {
    border: none;
    background: var(--theme-color-3);
    color: #222;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    font-family: "Lora", serif;
}

.custom-tabs .nav-link.active {
    background: var(--theme-color);
    color: #fff;
}

.custom-tabs .nav-link:hover {
    background: var(--theme-color);
    color: #fff;
}

.tab-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* Gallery */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s;
    border-radius: 12px;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover::after {
    opacity: 1;
}

/* enquiry Form */

.enquiry-wrapper {
    background-image: url(../images/inner_b2.jpg);
    background-size: cover;
    background-position: top center;
    border-radius: 20px;
    overflow: hidden;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}

.enquiry-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--theme-color-2), transparent);
    z-index: -1;
}

.enquiry-form-box {
    background: rgba(0, 76, 63, 0.9);
    padding: 40px;
    border-radius: 15px;
}

.custom-form-control {
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
}

.enquiry-form-box .custom-form-control {
    background: transparent;
    color: #fff;
}

.enquiry-form-box .custom-form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.enquiry-form-box .custom-form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
}

.custom-form-control:focus {
    box-shadow: none;
    border-color: var(--theme-color);
    background: transparent;
    color: #fff;
}

.form-select.custom-form-control {
    color: rgba(255, 255, 255, 0.8);
}

.form-select.custom-form-control option {
    color: #222;
}

.enquiry-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 10px;
    background: var(--theme-color-2);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
}

.enquiry-btn i {
    margin-left: 10px;
}

.enquiry-btn:hover {
    background: #fff;
    color: var(--theme-color);
}

.enquiry-image img {
    width: 100%;
    object-fit: cover;
}

/* blogs */
.section-heading {
    margin-bottom: 60px;
}

.blog-card {
    background: #f4f1e8;
    overflow: hidden;
    transition: 0.4s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--theme-color-2);
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 14px;
    color: #666;
}

.blog-meta i {
    color: var(--theme-color);
    margin-right: 5px;
}

.blog-content h4 {
    margin-bottom: 25px;
    color: var(--theme-color);
}

section .highlight {
    position: relative;
    z-index: 1;
    display: inline;
    background-image: linear-gradient(#00806057, #00806057);
    background-repeat: no-repeat;
    background-size: 100% 12px;
    background-position: 0 85%;
    padding: 0 5px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

section .text-white .highlight {
    background-image: linear-gradient(#bafbeb57, #50ffd357);
}

.page-title-section {
    text-align: center;
}

ol.breadcrumb {
    justify-content: center;
}

ol.breadcrumb li.breadcrumb-item {
    font-family: "Lora", serif !important;
    font-weight: 600;
    font-size: 18px;
}

.page-tittle h1 {
    font-size: 58px;
    margin-bottom: 15px;
}

section.banner-breadcrumb {
    background-image: url(../images/bdrc-bg.png);
}


.counter-section {
    background: var(--theme-color-3);
}

.counter-heading h2 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--theme-color);
}

.counter-box h3 {
    font-size: 58px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

span.counter {
    font-family: inherit;
}


/* FAQ */

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.custom-accordion .accordion-button {
    background: #fff;
    color: #111;
    font-size: 20px;
    font-weight: 600;
    padding: 25px 30px;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: #fff;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "\f280";
    font-family: bootstrap-icons !important;
    font-size: 20px;
    transform: rotate(0deg);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
    color: var(--theme-color-2);
}

.custom-accordion .accordion-body {
    padding: 30px;
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    background: var(--theme-color-3);
}

img.faq-imgs {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 7px;
}

.experience-box {
    background: var(--theme-color);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    gap: 10px;
    font-family: "Lora", serif;
    align-items: center;
}

.experience-box h3 {
    font-size: 55px;
}

img.faq-imgs.faq-img-1 {
    margin-bottom: 20px;
    height: 378px;

}

img.faq-imgs.faq-img-3 {
    height: 378px;
    margin-top: 20px;
}

.testimonial-area {
    background-image: url(../images/testimonial-bg.png);
    padding: 40px;
    border-radius: 1rem;
    overflow: hidden;
    background-position: top right;
    background-size: cover;
}

.testimonial-items {
    position: relative;
    background-color: #fff;
    padding: 30px;
    margin: 0 15px 15px;
    border-radius: 10px;
    border: 1px solid #E3E3E3;
    z-index: 1;
}

.testimonial-items::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(../images/icons/test-icon-01.png);
    z-index: -1;
    bottom: 10px;
    right: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonial-items.testimonial-card-2::before {
    background-image: url(../images/icons/test-icon-02.png);
}

.testimonial-card-icon i {
    color: var(--theme-color-2);
    font-size: 70px;
}

.testimonial-content p {
    opacity: 0.7;
    font-size: 16px;
    margin-bottom: 2em;
}

h4.tst-user-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tst-user-position {
    opacity: 0.7;
    font-size: 14px;
}

.newsletter-form {
    position: relative;
    max-width: 600px;
}

.newsletter-form .form-control {
    height: 65px;
    border-radius: 8px;
    padding: 15px 180px 15px 20px;
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 15px;
}

.newsletter-form .form-control:focus {
    border-color: var(--theme-color);
}

.newsletter-form .submit-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    height: 53px;
    border: none;
    padding: 0 25px;
    border-radius: 6px;
    background: var(--theme-color);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.newsletter-form .submit-btn:hover {
    background: var(--theme-color-2);
}

.newsletter-area p {
    margin-bottom: 1em;
}

.newsletter-area {
    background: #F8DC95;
    padding: 40px;
    border-radius: 10px;
}

section.contact-page .custom-form-control {
    color: #000;
    border: none;
    background-color: var(--theme-color-3);
}

section.contact-page .custom-form-control::placeholder {
    color: rgba(0, 0, 0, 0.300);
}

img.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    border: 2px solid var(--theme-color-3);
    border-radius: 5px;
    height: 100%;
}

.contact-card:hover {
    background-color: var(--theme-color-3);
}

.contact-icon i {
    background: var(--theme-color);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    border-radius: 5px;
    margin-bottom: 20px;
}

h4.contact-title {
    font-size: 24px;
    color: var(--theme-color);
    margin-bottom: 15px;
}


.school-reg-form .form-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.role-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.role-options .form-check {
    margin-bottom: 0;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
}

.submit-btn {
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    background: var(--theme-color);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--theme-color-2);
}



.registration-fee-content {
    margin-top: 40px;
}

.info-card {
    background: var(--theme-color);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    margin-bottom: 40px;
}

.info-card h4 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.9;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.contact-item i {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.content-box p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.content-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--theme-color);
}

.payment-list {
    padding-left: 20px;
}

.payment-list li {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.qr-card {
    text-align: center;
    margin: 35px 0;
}

.reg-fee-qr-code {
    max-width: 260px;
    width: 100%;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
}

.bank-table-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.bank-table {
    margin-bottom: 0;
    vertical-align: middle;
}

.bank-table thead th {
    background: var(--theme-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 18px;
    border: none;
}

.bank-table tbody td {
    padding: 18px;
    border: 1px solid #eee;
    color: #555;
}

.bank-table tbody td:nth-child(odd) {
    font-weight: 600;
    color: #222;
    background: #f8f8f2;
}

.sidebar-card {
    padding: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid #e1e1e1;
    background: #fcfaf8;
}

input.form-control.search-input {
    background: #f5f5f5;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.input-group-append button.btn-theme {
    border-radius: 0;
}

h4.sidebar-header {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    position: relative;
    color: #06070B;
}


h4.sidebar-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 70px;
    height: 2px;
    background: var(--theme-color-2);
}

.sidebar-social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sidebar-social-links .social-link {
    width: 52px;
    height: 52px;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 18px;
    background: #fff;
    transition: 0.4s ease;
}

.sidebar-social-links .social-link:hover {
    background: var(--theme-color-2);
    border-color: var(--theme-color-2);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 76, 63, 0.15);
}

.blog-details-card {
    background: #fcfaf8;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.blog-details-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-details-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.blog-meta span {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta span i {
    color: var(--theme-color-2);
}

.blog-details-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
}

.blog-inner-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-inner-gallery {
    margin: 35px 0;
}

.blog-quote-box {
    background: #111827;
    padding: 50px 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-quote-box .quote-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-quote-box .quote-icon i {
    color: var(--theme-color-2);
    font-size: 32px;
}

.blog-quote-box h5 {
    color: #7cf0b2;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-quote-box h3 {
    color: #fff;
    font-size: 34px;
    line-height: 1.5;
    margin: 0;
}

.comment-form-box {
    padding: 35px;
}

.comment-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--theme-color);
}

.comment-note {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #8ed9a8;
    font-size: 16px;
    z-index: 5;
}

.comment-form-box .form-control.custom-form-control {
    border-radius: 0;
}

.comments-area {
    margin-top: 70px;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--theme-color);
}

.single-comment {
    background: #fcfaf8;
    border: 1px solid #ececec;
    padding: 30px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.single-comment:hover {
    border-color: var(--theme-color-2);
    transform: translateY(-3px);
}

.comment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-user-info h5 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #111;
}

.comment-date {
    font-size: 14px;
    color: #777;
}

.comment-message p {
    margin: 0;
    color: #555;
    line-height: 1.9;
    font-size: 15px;
}

.delete-comment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 18px;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.delete-comment-btn:hover {
    background: #dc3545;
    color: #fff;
}

/* ===========================
       LOGIN PAGE STYLES
    =========================== */

.login-section {
    background: var(--theme-color-3);
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.login-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.login-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--theme-color);
    top: -150px;
    left: -150px;
}

.login-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--theme-color-2);
    bottom: -100px;
    right: -100px;
}

.min-vh-login {
    min-height: calc(100vh - 120px);
}

/* ===========================
       LEFT PANEL
    =========================== */
.login-left-panel {
    background: var(--theme-color);
    border-radius: 20px 0 0 20px;
    padding: 55px 45px;
    height: 100%;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-left-panel::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.login-left-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.login-logo {
    height: 55px;
    object-fit: contain;
}

.login-panel-title {
    font-family: "Lora", serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 15px;
}

.login-highlight {
    color: #8ed9a8;
    font-family: "Lora", serif;
}

.login-panel-text {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 30px;
}

/* Trust Badges */
.login-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.login-badge i {
    font-size: 20px;
    color: #8ed9a8;
    flex-shrink: 0;
}

.login-illus-img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
    opacity: 0.9;
}

/* ===========================
       RIGHT PANEL (FORM)
    =========================== */
.login-form-wrapper {
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 55px 50px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 76, 63, 0.10);
}

.login-form-header {
    margin-bottom: 32px;
}

.login-form-title {
    font-family: "Lora", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 6px;
}

.login-form-subtitle {
    color: #777;
    font-size: 14px;
    margin: 0;
}

/* Alert */
.login-alert {
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* Form Label */
.login-form-wrapper .form-label {
    font-weight: 600;
    color: #222;
    font-size: 13.5px;
    margin-bottom: 8px;
}

/* Input Group */
.login-input-group {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 15px;
    top: 25px;
    transform: translateY(-50%);
    color: var(--theme-color-2);
    font-size: 16px;
    z-index: 5;
    pointer-events: none;
}

.login-input {
    padding-left: 44px;
    padding-right: 44px;
    height: 50px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: all 0.3s;
    box-shadow: none !important;
    width: 100%;
}

.login-input:focus {
    border-color: var(--theme-color-2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.10) !important;
}

.login-input.is-invalid {
    border-color: #dc3545;
    background: #fff8f8;
}

.login-input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.10) !important;
}

.invalid-feedback {
    font-size: 12.5px;
    margin-top: 6px;
}

/* Eye Toggle */
.login-eye-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #aaa;
    font-size: 16px;
    z-index: 5;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.login-eye-btn:hover {
    color: var(--theme-color);
}

/* Remember + Forgot */
.login-remember .form-check-input {
    border-color: #ccc;
    cursor: pointer;
}

.login-remember .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.login-remember .form-check-label {
    font-size: 13.5px;
    color: #555;
    cursor: pointer;
}

.login-forgot-link {
    font-size: 13.5px;
    color: var(--theme-color-2);
    font-weight: 600;
    text-decoration: none;
}

.login-forgot-link:hover {
    color: var(--theme-color);
    text-decoration: underline;
}

/* Submit Button */
.login-submit-btn {
    background: var(--theme-color);
    color: #fff;
    border: none;
    height: 52px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.login-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color-2);
    opacity: 0;
    transition: opacity 0.3s;
}

.login-submit-btn:hover::before {
    opacity: 1;
}

.login-submit-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 76, 63, 0.25);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-btn-text,
.login-btn-loader {
    position: relative;
    z-index: 1;
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 28px 0 20px;
    color: #bbb;
    font-size: 13px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

/* Register */
.login-register-text {
    font-size: 14px;
    color: #666;
}

.login-register-link {
    color: var(--theme-color);
    font-weight: 700;
    text-decoration: none;
}

.login-register-link:hover {
    color: var(--theme-color-2);
    text-decoration: underline;
}

/* ===========================
       RESPONSIVE
    =========================== */
@media (max-width: 991.98px) {
    .login-form-wrapper {
        border-radius: 16px;
        padding: 40px 30px;
        min-height: auto;
    }

    .login-section {
        padding: 40px 0;
    }
}

@media (max-width: 575.98px) {
    .login-form-wrapper {
        padding: 35px 22px;
        border-radius: 14px;
    }

    .login-form-title {
        font-size: 26px;
    }
}

.min-vh-login {
    min-height: calc(100vh - 120px);
    align-items: stretch !important;
    /* was: align-items-center on the row */
}


.login-form-wrapper {
    height: 100%;
}

/* ===========================
       BLOG CREATE PAGE
    =========================== */
.bc-section {
    background: var(--theme-color-3);
    min-height: 100vh;
}

/* Page Header */
.bc-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.bc-back-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    color: #555;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.bc-back-btn:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background: #fff;
}

/* Card */
.bc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 76, 63, 0.07);
    border: 1px solid #efefef;
}

.bc-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafaf9;
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--theme-color);
}

.bc-card-icon {
    font-size: 16px;
    color: var(--theme-color-2);
    flex-shrink: 0;
}

.bc-card-body {
    padding: 24px;
}

/* Upload Zone */
.bc-upload-zone {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px dashed #d0e8e2;
    background: #f5faf8;
    cursor: pointer;
    aspect-ratio: 16/9;
    transition: border-color 0.3s;
}

.bc-upload-zone:hover {
    border-color: var(--theme-color-2);
}

.bc-upload-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-upload-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 76, 63, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.bc-upload-overlay i {
    font-size: 30px;
}

.bc-upload-zone:hover .bc-upload-overlay {
    opacity: 1;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.bc-upload-info {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
}

.bc-upload-name {
    text-align: center;
    font-size: 12.5px;
    color: #555;
    margin-top: 8px;
    font-weight: 500;
}

/* Select */
.bc-select-wrap {
    position: relative;
}

.bc-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 13px;
    pointer-events: none;
}

.form-select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: all 0.3s;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--theme-color-2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.10);
}

/* Publish Card */
.bc-publish-note {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 18px;
}

.bc-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.bc-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color-2);
    opacity: 0;
    transition: opacity 0.3s;
}

.bc-submit-btn:hover::before {
    opacity: 1;
}

.bc-submit-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 76, 63, 0.22);
}

.bc-btn-text,
.bc-btn-loader {
    position: relative;
    z-index: 1;
}

.bc-cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    background: transparent;
    color: #888;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.bc-cancel-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: #fff8f8;
}

/* Input / Textarea */
.bc-field-group {
    margin-bottom: 22px;
}

.bc-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 8px;
}

.bc-required {
    color: #dc3545;
}

.bc-optional {
    color: #aaa;
    font-weight: 400;
    font-size: 12px;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--theme-color-2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.10);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background: #fff8f8;
}

textarea.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    outline: none;
    resize: vertical;
    transition: all 0.3s;
    line-height: 1.7;
    min-height: 110px;
}

textarea.form-input:focus {
    border-color: var(--theme-color-2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.10);
}

textarea.form-input.is-invalid {
    border-color: #dc3545;
}

.bc-char-count {
    font-size: 11.5px;
    color: #bbb;
    text-align: right;
    margin-top: 5px;
}

.bc-field-error {
    font-size: 12.5px;
    color: #dc3545;
    margin-top: 6px;
}

/* Add Sub button */
.add-sub-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--theme-color-3);
    border: 1.5px solid var(--theme-color-2);
    border-radius: 7px;
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-sub-btn:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

/* Sub Section Block */
.bc-sub-section {
    border: 1.5px solid #eeeeee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafaf9;
    transition: border-color 0.3s;
}

.bc-sub-section:last-child {
    margin-bottom: 0;
}

.bc-sub-section:hover {
    border-color: #d0e8e2;
}

.bc-sub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.bc-sub-number {
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--theme-color);
    background: #e8f4f0;
    padding: 4px 14px;
    border-radius: 20px;
}

.bc-remove-sub {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border: 1.5px solid #f5c6cb;
    border-radius: 7px;
    background: #fff5f5;
    color: #dc3545;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.bc-remove-sub:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

/* Sub image upload */
.sub-img-upload {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px dashed #d0e8e2;
    border-radius: 8px;
    background: #f5faf8;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s;
    color: #888;
    font-size: 13.5px;
    font-weight: 500;
}

.sub-img-upload:hover {
    border-color: var(--theme-color-2);
    color: var(--theme-color);
}

.sub-img-upload .file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.bc-sub-img-name {
    font-size: 12.5px;
    color: #555;
    margin-top: 8px;
    font-weight: 500;
}

.blog-main-title {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--theme-color);
}

.blog-overview-content {
    margin-bottom: 40px;
}

.blog-overview-content p,
.blog-section-content p,
.blog-overview-content,
.blog-section-content {
    font-size: 16px;
    line-height: 1.95;
    color: #555;
}

.blog-section-block {
    margin-bottom: 50px;
}

.blog-sub-title {
    font-size: 30px;
    margin-bottom: 15px;
    color: #111827;
}

.blog-inner-image {
    margin-bottom: 30px;
}

.blog-inner-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.blog-tags-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ececec;
}

.blog-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-tags a {
    padding: 10px 18px;
    background: #f5f5f5;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: 0.3s;
}

.blog-tags a:hover {
    background: var(--theme-color);
    color: #fff;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share a {
    width: 45px;
    height: 45px;
    background: #f4f4f4;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.blog-share a:hover {
    background: var(--theme-color);
    color: #fff;
}