/* ==============================
   BREADCRUMB SECTION
============================== */

.tz-breadcrumb {
    padding: 180px 0 120px;
    background: 
        linear-gradient(rgba(10, 15, 26, 0.8), rgba(10, 15, 26, 0.9)),
        url('../images/blog-details/blog-details-inner-banner.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

/* Content */
.tz-breadcrumb__content {
    position: relative;
    z-index: 2;
}

/* Title */
.tz-breadcrumb__title {
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Breadcrumb List */
.tz-breadcrumb__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Breadcrumb Item */
.tz-breadcrumb__item {
    color: #fff;
    list-style: none;
}

.tz-breadcrumb__item a {
    text-decoration: none;
    color: #fff;
}

.tz-breadcrumb__item.active {
    color: #85c815;
}

/* Overlay */
.tz-breadcrumb__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 1;
}

/* Responsive Title Size */
.tz-display-4 {
    font-family: "Teko", serif;
    font-weight: 700;
    font-size: 20px;
}

@media (min-width:576px) { .tz-display-4 { font-size: 24px; } }
@media (min-width:768px) { .tz-display-4 { font-size: 32px; } }
@media (min-width:992px) { .tz-display-4 { font-size: 40px; } }
@media (min-width:1200px){ .tz-display-4 { font-size: 48px; } }
@media (min-width:1680px){ .tz-display-4 { font-size: 56px; } }


/* ==============================
   GLOBAL SECTIONS
============================== */

.section-white {
    background: #ffffff;
    color: #111;
    padding: 100px 0;
}

.section-dark {
    background: #0f172a;
    color: #e0e0e0;
    padding: 100px 0;
}


/* ==============================
   HERO SECTION
============================== */
/* Hero Image Fix */
.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.tz-services-hero {
    background: #ffffff;
    overflow: visible;
    padding: 50px 0;
    position: relative;
    color: #111;
}

.tz-services-hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tz-services-hero h1 span {
    color: #91d904;
    position: relative;
}

.tz-services-hero h1 span::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.tz-services-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 650px;
}


/* Badge */

.badge-custom {
    background: #91d904;
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(59,130,246,0.4);
    margin-bottom: 20px;
}


/* ==============================
   SECTION TITLES
============================== */

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Dark Title */
.section-title.dark h2 {
    color: #fff;
    background: linear-gradient(45deg,#fff,#999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.h2, h2 {
    font-family: "Teko", serif;
}
.h3, h3 {
    font-family: "Teko", serif;
}
.h4, h4 {
    font-family: "Teko", serif;
    font-weight: 700;
}
/* Light Title */
.section-title.light h2 {
    color: #111;
}

.section-title p {
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 1.1rem;
    text-align: center !important;
}

.section-title.dark p { color: #aaa; }
.section-title.light p { color: #555; }


/* ==============================
   SERVICE CARDS
============================== */

.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card */
.service-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    min-height: 440px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px);
    border-color: #91d904;
    box-shadow:
    0 0 20px rgba(132, 204, 22, 0.6),
    0 0 40px rgba(132, 204, 22, 0.4),
    0 0 60px rgba(132, 204, 22, 0.2);

}

/* Icon */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #91d904;
}

/* Title */
.service-card h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* List */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.service-card ul li::before {
    content: "•";
    color: #91d904;
    font-weight: bold;
    position: absolute;
    left: 0;
}


/* ==============================
   FEATURE CARDS
============================== */

.feature-card-modern {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    height: 100%;

    transition: all 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: #91d904;
    box-shadow:
    0 0 20px rgba(132, 204, 22, 0.6),
    0 0 40px rgba(132, 204, 22, 0.4),
    0 0 60px rgba(132, 204, 22, 0.2);

}

.feature-card-modern i {
    font-size: 2.2rem;
    color: #91d904;
    margin-bottom: 15px;
}

.feature-card-modern h4 {
    color: #111;
    margin-bottom: 12px;
}

.feature-card-modern p {
    color: #555;
    font-size: 0.95rem;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 992px) {

    .tz-services-hero h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .service-card,
    .feature-card-modern {
        padding: 25px;
        min-height: auto;
    }
}

/* Tablet Fix */
@media (min-width: 992px) and (max-width: 1024px) {

    .service-card {
        min-height: 540px;
        padding: 30px;
    }

}
/* ==============================
   GLOBAL TEXT JUSTIFY
============================== */

/* Paragraphs */
p {
    text-align: justify;
    text-justify: inter-word;
}

/* Service & Feature Lists */
.service-card ul li,
.feature-card-modern p {
    text-align: justify;
    text-justify: inter-word;
}

/* Section Descriptions */
.section-title p {
    text-align: justify;
    text-justify: inter-word;
}

/* Hero Text */
.tz-services-hero p {
    text-align: justify;
    text-justify: inter-word;
}

/* General Content (Optional Global) */
.container p,
.container li {
    text-align: justify;
    text-justify: inter-word;
}
@media (max-width: 576px) {
    p,
    .service-card ul li,
    .feature-card-modern p,
    .section-title p {
        text-align: left;
    }
}
/* ==============================
   SERVICE CARD FIX
============================== */

.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Service Card */
.service-card {
    min-height: 437.71px; /* previously ~407.99px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
     box-shadow:
    0 0 20px rgba(132, 204, 22, 0.6),
    0 0 40px rgba(132, 204, 22, 0.4),
    0 0 60px rgba(132, 204, 22, 0.2);

}

/* Tablet / Small Desktop Fix */
@media (min-width: 992px) and (max-width: 1024px) {

    .service-card {
        min-height: 538.51px;
        padding: 30px;
    }

}
