:root {
    --general-theme-color: #48a1af;
    --general-theme-color-light: #5bb1c0;
    --general-theme-color-lighter: #6bc1d0;
    --general-theme-color-dark: #3a8a9a;
    --general-theme-color-darker: #2d6b77;
    --general-theme-color-rgb: 72, 161, 175;
    --general-theme-color-light-rgb: 91, 177, 192;
    --general-theme-color-dark-rgb: 58, 138, 154;
    /*General:*/ 
        --theme-primary-font: 'Poppins', sans-serif;
        --theme-secondary-font: 'Poppins', sans-serif;

        --theme-primary-color:24,25,31;
        --theme-secondary-color:72, 161, 175;
        --theme-light-color:255,255,255;

        --title-primary-color:38,50,56;
        --title-secondary-color:24,25,31;
        --title-light-color:255,255,255;

        --text-primary-color:24,25,31;
        --text-secondary-color:82,82,83;
        --text-light-color:255,255,255;

        --background-primary-color:24,25,31;
        --background-secondary-color:236,172,116;

        --button-text-primary-color:24,25,31;
        --button-text-secondary-color:177,74,41;
        --button-text-light-color:255,255,255;

        --button-background-primary-color:24,25,31;
        --button-background-secondary-color:236,172,116;
        --button-background-light-color:255,255,255;
    /*Header:*/
        --header-primary-font: 'Poppins', sans-serif;
        --header-secondary-font: 'Poppins', sans-serif;

        --header-text-primary-color:82,82,83;
        --header-text-secondary-color:82 82 83;

        --header-background-primary-color:255,255,255;
        --header-background-secondary-color:255,255,255;
    /* Hambuger-header */
        --hamburger-header-background-color:249,246,240;
        --hamburger-header-hover-background-color:87,143,96;
        --hamburger-header-active-background-color:252,182,26;
    /*Footer:*/
        --footer-primary-font: 'Poppins', sans-serif;
        --footer-secondary-font: 'Poppins', sans-serif;

        --footer-text-primary-color:34,52,61;
        --footer-text-secondary-color:217,219,225;

        --footer-background-primary-color:255,255,255;
        --footer-background-secondary--color:255,255,255;
  

}


/* Header Top Design */
.header-top {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    min-height: 3rem;
}
.header-middle{
    border-bottom:1px solid #d6d6d6;
}

.header-top__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 2.5rem;
}

.header-top__content-left-item-box-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.header-top__content-right-item-box {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-top-btn {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-top-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobil responsive */
@media (max-width: 768px) {
    .header-top__content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-top__content-right-item-box {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-top-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Sticky header top */
.header-top.is-sticky {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Location Section Styles */
.location-contact-section {
    background: #f8fafc;
    margin-bottom: 0px;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.location-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-title {
    color: #18191f;
    margin-bottom: 0.5rem;
}

.location-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.location-map-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
}

.location-map-card:hover {
    box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.12);
    transform: translateY(-2px);
    border-color: var(--general-theme-color);
}

.location-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.location-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #e8f0fe;
    color: #6b7280;
}

.location-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.08);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.location-info-card:hover {
    box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.12);
    transform: translateY(-2px);
    border-color: var(--general-theme-color);
}

.location-info-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-description {
    color: #6b7280;
    font-size: 0.925rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.location-details {
    flex-grow: 1;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #18191f;
}

.detail-item i {
    margin-top: 0.25rem;
    width: 20px;
    color: var(--general-theme-color);
}

.phone-numbers, .email-link, .working-hours {
    margin-left: 0rem;
    margin-top: 0rem;
}

.phone-link {
    color: var(--general-theme-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--general-theme-color-dark);
    text-decoration: none;
}

.working-hours {
    color: #6b7280;
    font-size: 0.98rem;
    line-height: 1.5;
    white-space: pre-line;
}

.location-actions {
    margin-top: auto;
    padding-top: 1.5rem;
}

.location-actions .btn {
    background: var(--general-theme-color);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.15);
}

.location-actions .btn:hover {
    background: var(--general-theme-color-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--general-theme-color-rgb), 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .location-info-content {
        margin-top: 2rem;
    }
    
    .location-map-wrapper iframe {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .location-title {
        font-size: 1.75rem;
    }
    
    .location-info-content {
        padding: 1.5rem;
    }
    
    .location-map-wrapper iframe {
        min-height: 250px;
    }
    
    .location-actions .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .location-contact-section {
        margin-bottom: 16px;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .location-subtitle {
        font-size: 1rem;
    }
    
    .location-info-content {
        padding: 1rem;
    }
    
    .location-map-wrapper iframe {
        min-height: 200px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .phone-numbers, .email-link, .working-hours {
        margin-left: 0;
        margin-top: 0.25rem;
    }
}


.display-4 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
}

/* Counter Section Styles */
.counter-section {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color-lighter) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.counter-header {
    position: relative;
    z-index: 2;
}

.counter-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.counter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0;
}

.counter-cards {
    position: relative;
    z-index: 2;
}

.counter-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.counter-card:hover::before {
    left: 100%;
}

.counter-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.counter-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.counter-number.animate {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.counter-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.counter-card.animate .counter-label {
    opacity: 1;
    transform: translateY(0);
}

.counter-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}

.counter-card.animate .counter-description {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Responsive */
@media (max-width: 991px) {
    .counter-title {
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 3rem 0;
    }
    
    .counter-title {
        font-size: 1.75rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 1.1rem;
    }
    
    .counter-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {
    .counter-title {
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 1rem;
    }
    
    .counter-description {
        font-size: 0.9rem;
    }
}

/* Bootstrap Button Overrides */
.btn-primary {
    background-color: var(--general-theme-color) !important;
    border-color: var(--general-theme-color) !important;
    color: white !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--general-theme-color-dark) !important;
    border-color: var(--general-theme-color-dark) !important;
    color: white !important;
}

.btn-outline-primary {
    color: white !important;
    border-color: var(--general-theme-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--general-theme-color-dark) !important;
    border-color: var(--general-theme-color-dark) !important;
    color: white !important;
}

.simple-btn{
  color: var(--general-theme-color) !important;
  text-decoration: none !important;
  font-size: 1.25rem;
}
.simple-btn:hover,
.simple-btn:focus,
.simple-btn:active {
   color: var(--general-theme-color-dark) !important;
}

/* Hero szekció stílusok */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    margin-top: 0px;
    margin-bottom: 0;
    overflow: hidden;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section .display-4 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.hero-section .lead {
    color: #f3f6fa;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero-section .btn-primary {
    background: var(--general-theme-color);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.10);
    transition: background 0.2s;
}
.hero-section .btn-primary:hover {
    background: var(--general-theme-color-dark);
}
.hero-section .btn-outline-light {
    background: #fff;
    color: var(--general-theme-color);
    border: 1.5px solid #e5e7eb;
    font-weight: 600;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s;
}
.hero-section .btn-outline-light:hover {
    background: var(--general-theme-color);
    color: #fff;
    border-color: var(--general-theme-color);
}
.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg,rgba(0,0,0,0.18) 0%,rgba(0,0,0,0.10) 100%);
    z-index: 1;
}
@media (max-width: 991px) {
    .hero-section {
        min-height: 320px;
        border-radius: 10px;
    }
    .hero-section .display-4 {
        font-size: 2rem;
    }
}
@media (max-width: 575px) {
    .hero-section {
        min-height: 220px;
        border-radius: 0;
        margin-top: 12px;
    }
    .hero-section .display-4 {
        font-size: 1.3rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .hero-section .btn-primary, .hero-section .btn-outline-light {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }
}

/* Szolgáltatás kártyák (tiles) stílus */
.index-services-cards {
    margin-bottom: 32px;
    padding-bottom: 32px;
    margin-top: -70px;
    z-index: 9;
    position: relative;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.08);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 2rem 1rem;
}
.service-card:hover {
    box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.12);
    transform: translateY(-4px);
}
.service-card__icon svg,
.service-card__icon img {
    display: block;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    transition: all 0.3s ease;
}
.service-card:hover .service-card__icon svg,
.service-card:hover .service-card__icon img {
    transform: scale(1.05);
}
.service-card__title {
    color: #18191f;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}
.service-card__desc {
    color: #6b7280;
    font-size: 0.98rem;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .service-card {
        min-height: 180px;
        border-radius: 16px;
        padding: 1.5rem 0.8rem;
    }
    .service-card__icon svg,
    .service-card__icon img {
        width: 56px;
        height: 56px;
    }
}
@media (max-width: 575px) {
    .index-services-cards {
        border-radius: 0;
        margin-top: 0;
        padding-bottom: 12px;
    }
    .service-card {
        min-height: 160px;
        border-radius: 12px;
        padding: 1rem 0.5rem;
    }
    .service-card__icon svg,
    .service-card__icon img {
        width: 48px;
        height: 48px;
    }
    .service-card__title {
        font-size: 1rem;
    }
    .service-card__desc {
        font-size: 0.85rem;
    }
}

/* About (Rólunk) szekció stílus */
.index-about-section {
    background: none;
    margin-bottom: 32px;
}
.about-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(37,99,235,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 140px;
}
.about-card__title {
    color: #18191f;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}
.about-card__desc {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.about-card__action .btn-primary {
    font-size: 1.1rem;
    padding: 0.75rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
}
@media (max-width: 991px) {
    .about-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.2rem;
        gap: 1.2rem;
    }
    .about-card__title {
        font-size: 1.3rem;
    }
}
@media (max-width: 575px) {
    .about-card {
        border-radius: 8px;
        padding: 1.2rem 0.5rem;
        min-height: 80px;
    }
    .about-card__title {
        font-size: 1.1rem;
    }
    .about-card__desc {
        font-size: 0.98rem;
    }
    .about-card__action .btn-primary {
        font-size: 0.98rem;
        padding: 0.5rem 1.2rem;
    }
}

.card-about {
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.card-about-content {
  flex: 2;
}

.card-about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-about-desc {
  color: #6c6c6c;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.card-about-subtitle {
  color: #181818;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-bottom: 12px;
}

.card-about-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-about-btn a {
  background: var(--general-theme-color);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.12);
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  border: none;
  outline: none;
}

.card-about-btn a:hover {
  background: var(--general-theme-color-dark);
  box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.18);
}
@media (max-width: 700px) {
  .card-about {
    flex-direction: column;
    padding: 24px 12px;
    gap: 24px;
  }
  .card-about-btn {
    width: 100%;
    justify-content: flex-start;
  }
}

/* News Section Styles */
.news-section {
    background: #ffffff;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
   background: linear-gradient(90deg, transparent 0%, #c9d6e3 50%, transparent 100%);
}


.news-header {
    position: relative;
}

.news-title {
    color: #2c3e50 !important;
    position: relative;
    display: inline-block;
}



.news-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.12);
    border-color: var(--general-theme-color);
}

.news-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.news-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.02);
    filter: grayscale(20%) brightness(1.05);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-card-overlay-content {
    color: white;
    font-size: 1.2rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-overlay-content {
    transform: translateY(0);
}

.news-card-body {
    padding: 1.5rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-card-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.news-card-title {
    line-height: 1.4;
    margin-bottom: 1rem;
}

.news-card-title a {
    color: #2c3e50;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: var(--general-theme-color);
}

.news-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1rem;
}

.news-card-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.news-card-footer .btn {
    background: var(--general-theme-color);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.news-card-footer .btn:hover {
    background: var(--general-theme-color-dark);
    color: white;
    text-decoration: none;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(var(--general-theme-color-rgb), 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-title {
        font-size: 2rem;
    }
    
    .news-card-body {
        padding: 1.25rem;
    }
    
    .news-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .news-section {
        padding: 3rem 0;
    }
    
    .news-title {
        font-size: 1.75rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-card {
        margin-bottom: 1.5rem;
    }
}

/* Animation for cards on load */
.news-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section Styles */

.about-header {
    position: relative;
}

.about-title {
    color: #2c3e50 !important;
    position: relative;
    display: inline-block;
}

.about-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    padding: 2rem;
    min-height: 350px;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.12);
    border-color: var(--general-theme-color);
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.about-action .btn {
    background: var(--general-theme-color);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.about-action .btn:hover {
    background: var(--general-theme-color-dark);
    color: white;
    text-decoration: none;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(var(--general-theme-color-rgb), 0.3);
}

.about-image-absolute {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 300px;
    height: 300px;
    z-index: 1;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.about-card:hover .about-image-absolute {
    opacity: 0.3;
}

.about-image-absolute img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(30%);
}

.about-sidebar {
    height: 100%;
}

.about-sidebar-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.08);
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-sidebar-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(var(--general-theme-color-rgb), 0.12);
    border-color: var(--general-theme-color);
}

.about-sidebar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--general-theme-color), var(--general-theme-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(var(--general-theme-color-rgb), 0.3);
}

.about-sidebar-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-sidebar-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for about section */
@media (max-width: 992px) {
    .about-content {
        max-width: 100%;
    }
    
    .about-image-absolute {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 200px;
        opacity: 0.3;
        margin-top: 2rem;
    }
    
    .about-sidebar-content {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-card {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-action .btn {
        padding: 0.6rem 1.25rem;
        font-size: 1rem;
    }
    
    
    .about-sidebar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.25rem;
        min-height: 250px;
    }
    
  
    
    .about-sidebar-content {
        padding: 1.5rem;
    }
}


.section_group_2_3{
    background: linear-gradient(180deg, #f8f9fa 0%, #f2f9ff 100%);
}
/* Location Contact Section Styles */
.location-contact-section {
    background: linear-gradient(0deg, #f8f9fa 0%, #f2f9ff 100%);
    position: relative;
}

.location-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c9d6e3 50%, transparent 100%);
}

.location-header {
    position: relative;
}

.location-title {
    color: #2c3e50 !important;
    position: relative;
    display: inline-block;
}

.location-map-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.location-map-card:hover {
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.location-map-wrapper {
    position: relative;
    overflow: hidden;
}

.location-map-wrapper iframe {
    border-radius: 16px;
}

.location-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.location-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.location-info-content {
    padding: 2rem;
}

.location-info-title {
    color: #2c3e50;
    line-height: 1.3;
}

.location-rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.location-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.95rem;
}

.detail-item i {
    margin-top: 2px;
    min-width: 16px;
}

.phone-numbers {
    margin-left: 0rem;
    margin-top: 0rem;
}

.phone-link {
    color: var(--general-theme-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--general-theme-color-dark);
    text-decoration: underline;
}

.location-actions {
    margin-top: 1.5rem;
}

.location-actions .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-actions .btn-primary {
    background: linear-gradient(135deg, var(--general-theme-color), var(--general-theme-color-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(var(--general-theme-color-rgb), 0.3);
}

.location-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--general-theme-color-rgb), 0.4);
    background: linear-gradient(135deg, var(--general-theme-color-dark), var(--general-theme-color-darker));
}

.location-actions .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--general-theme-color-rgb), 0.3);
}

/* Responsive adjustments for location section */
@media (max-width: 992px) {
    .location-info-content {
        padding: 1.5rem;
    }
    
    .location-map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .location-title {
        font-size: 2rem;
    }
    
    .location-info-content {
        padding: 1.25rem;
    }
    
    .location-map-wrapper iframe {
        height: 300px;
    }
    
    .location-actions .btn {
        padding: 0.6rem 1.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .location-contact-section {
        padding: 3rem 0;
    }
    
    .location-title {
        font-size: 1.75rem;
    }
    
    .location-info-content {
        padding: 1rem;
    }
    
    .location-map-wrapper iframe {
        height: 250px;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    .phone-link {
        font-size: 0.9rem;
    }
}

/* Menu Dropdown Styles - Checkbox based */
/* Cascading Menu System - Complete Override */
.menu input[type="checkbox"] {
    display: none !important;
}

.menu .menu-dropdown {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 0px 4px  4px 0px !important;
    box-shadow:none !important;
    min-width: 200px !important;
    z-index: 1000 !important;
    padding: 0 !important;
    margin-top: 2px !important;
}

.menu input[type="checkbox"]:checked ~ .menu-dropdown {
    display: block !important;
}

.menu .menu-sub {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.menu .menu-item {
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

.menu .menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 15px !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    white-space: normal !important;
}

.menu .menu-main>.menu-item{
    padding: 15px 5px !important;
}
.menu .menu-item.active > .clearfix > a > span {
    color: #48a1af !important;
    font-weight: 700 !important;
}

/* Arrow indicators - only for items with children */
.menu .has-children .menu-link::after {
    content: '▶' !important;
    font-size: 8px !important;
    color: #666 !important;
    margin-left: 8px !important;
    transition: color 0.2s ease !important;
}

.menu .has-children .menu-link:hover::after {
    color: white !important;
}

.menu .has-children .menu-link.active::after {
    color: white !important;
}

/* Hide arrows for items without children */
.menu .menu-item:not(.has-children) .menu-link::after {
    display: none !important;
}

/* First level dropdown - goes down below parent */
.menu .menu-item .menu-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 0px !important;
    display: none !important;
    background: #fff !important;
    border: 0px solid #ddd !important;
    border-radius: 0px 4px 4px 0px !important;
    box-shadow:none;
    min-width: 200px !important;
    z-index: 1001 !important;
    padding: 0 !important;
    border-top: 0px !important;
}

/* Show first level dropdown on hover */
.menu .menu-item:hover > .menu-dropdown,
.menu .menu-item.menu-hover > .menu-dropdown {
    display: block !important;
}

/* Keep parent menu visible */
.menu .menu-item:hover,
.menu .menu-item.menu-hover {
    color: #48a1af !important;
}

/* Only apply hover color to the currently hovered menu item, not all submenus */
.menu .menu-item:hover>.clearfix>a>span {
    color: #48a1af !important;
}

.menu .menu-item.menu-hover > .menu-link > span {
    color: #48a1af !important;
}

.menu .menu-item:hover > .menu-link,
.menu .menu-item.menu-hover > .menu-link {
    background: #48a1af !important;
    color: white !important;
}

/* Second level and deeper - cascading to the right */
.menu .menu-item .menu-dropdown .menu-item .menu-dropdown {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    margin-left: 0 !important;
    display: none !important;
    background: #fff !important;
    border: 0px;
    border-radius: 0px !important;
    box-shadow:none !important;
    min-width: 200px !important;
    z-index: 1002 !important;
    padding: 0 !important;
}

.menu .menu-item .menu-dropdown .menu-item:hover > .menu-dropdown {
    display: block !important;
}

/* Prevent menu closing - keep dropdowns visible */
.menu .menu-item .menu-dropdown:hover {
    display: block !important;
}

.menu .menu-item:hover .menu-dropdown {
    display: block !important;
}

/* Keep dropdown visible when hovering over it */
.menu .menu-dropdown:hover {
    display: block !important;
}

/* Ensure dropdown stays visible when moving from parent to dropdown */
.menu .menu-item:hover .menu-dropdown,
.menu .menu-item.menu-hover .menu-dropdown {
    display: block !important;
}

/* Prevent menu closing */
.menu .menu-item .menu-dropdown:hover {
    display: block !important;
}

.menu .menu-item:hover .menu-dropdown {
    display: block !important;
}

/* Drop icon styling */
.menu .drop-icon {
    margin-left: 8px !important;
    font-size: 12px !important;
    color: #48a1af !important;
    cursor: pointer !important;
}

.menu .drop-icon ._up {
    display: none !important;
}

.menu input[type="checkbox"]:checked ~ .clearfix .drop-icon ._down {
    display: none !important;
}

.menu input[type="checkbox"]:checked ~ .clearfix .drop-icon ._up {
    display: inline !important;
}



/* Drop icon styling */
.menu .drop-icon {
    margin-left: 8px;
    font-size: 12px;
    color: #d32f2f;
    cursor: pointer;
}

.menu .drop-icon ._up {
    display: none;
}

.menu input[type="checkbox"]:checked ~ .clearfix .drop-icon ._down {
    display: none;
}

.menu input[type="checkbox"]:checked ~ .clearfix .drop-icon ._up {
    display: inline;
}

/* Programari Online Section Styles */
.programari-online-section {
    background: #f8fafc;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.programari-online-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--general-theme-color-rgb), 0.2) 50%, transparent 100%);
}

.programari-content {
    padding: 2rem 0;
}

.programari-subtitle {
    color: var(--general-theme-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.programari-title {
    color: var(--general-theme-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.programari-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--general-theme-color), var(--general-theme-color-light));
    border-radius: 2px;
}

.programari-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.programari-action {
    margin-top: 2rem;
}

.programari-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.programari-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.programari-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    color: white;
    text-decoration: none;
}

.programari-btn:hover::before {
    left: 100%;
}

.programari-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.programari-illustration svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(var(--general-theme-color-rgb), 0.1));
}

/* Responsive adjustments for programari section */
@media (max-width: 991px) {
    .programari-title {
        font-size: 2rem;
    }
    
    .programari-description {
        font-size: 1rem;
    }
    
    .programari-illustration {
        padding: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .programari-online-section {
        padding: 3rem 0;
    }
    
    .programari-title {
        font-size: 1.75rem;
    }
    
    .programari-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .programari-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .programari-description {
        margin: 0 auto 2rem auto;
    }
    
    .programari-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .programari-online-section {
        padding: 2rem 0;
    }
    
    .programari-title {
        font-size: 1.5rem;
    }
    
    .programari-subtitle {
        font-size: 0.9rem;
    }
    
    .programari-description {
        font-size: 0.95rem;
    }
    
    .programari-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .programari-illustration svg {
        width: 350px;
        height: 280px;
    }
}

.section_category_hireink .items_box_holder img{
    max-height: 500px;
    object-fit: cover;
}
.section_category_hireink .post_banner_title{
    color:#fff;
    font-weight: 600;
    font-size: 2.25rem;
}
 .section_category_hireink .post_banner_content{
    color:#fff;
}
.post_banner_button{
    color:#fff;
}

/* ===== RESPONSIVE FIXES FOR INDEX PAGE ===== */

/* General container fixes */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .section {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Location section responsive fixes */
@media (max-width: 768px) {
    .location-contact-section {
        padding: 2rem 0 !important;
    }
    
    .location-contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .location-contact-section .col-12,
    .location-contact-section .col-md-6,
    .location-contact-section .col-lg-8,
    .location-contact-section .col-lg-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 1rem;
    }
    
    .location-map-card,
    .location-info-card {
        margin-bottom: 1rem;
    }
    
    .location-map-wrapper iframe {
        min-height: 300px !important;
    }
}

@media (max-width: 576px) {
    .location-contact-section {
        padding: 1.5rem 0 !important;
    }
    
    .location-map-wrapper iframe {
        min-height: 250px !important;
    }
    
    .location-info-card {
        padding: 1.5rem !important;
    }
}

/* Counter section responsive fixes */
@media (max-width: 768px) {
    .counter-section {
        padding: 2rem 0 !important;
    }
    
    .counter-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .counter-section .col-12,
    .counter-section .col-md-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 1rem;
    }
    
    .counter-card {
        margin-bottom: 1rem;
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 1.5rem 0 !important;
    }
    
    .counter-card {
        padding: 1rem !important;
    }
    
    .counter-number {
        font-size: 2rem !important;
    }
    
    .counter-label {
        font-size: 1rem !important;
    }
}

/* Programari Online section responsive fixes */
@media (max-width: 768px) {
    .programari-online-section {
        padding: 2rem 0 !important;
    }
    
    .programari-online-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .programari-online-section .col-12,
    .programari-online-section .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 1rem;
    }
    
    .programari-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .programari-illustration {
        text-align: center;
    }
    
    .programari-illustration svg {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .programari-online-section {
        padding: 1.5rem 0 !important;
    }
    
    .programari-illustration svg {
        width: 280px !important;
        height: 224px !important;
    }
}

/* News section responsive fixes */
@media (max-width: 768px) {
    .news-section {
        padding: 2rem 0 !important;
    }
    
    .news-card {
        margin-bottom: 1rem;
    }
}

/* About section responsive fixes */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0 !important;
    }
    
    
    .about-card {
        margin-bottom: 1rem;
    }
}

/* Tiles section responsive fixes */
@media (max-width: 768px) {
    .tiles {
        padding: 1rem 0 !important;
    }
    
    
    .service-card {
        margin-bottom: 0rem;
    }
    .index-services-cards {
    padding-bottom: 0px;
    margin-bottom: 0px;

}
}
/* Banner section responsive fixes */
@media (max-width: 768px) {
    .banner {
        padding: 0 !important;
    }
    
}

/* General spacing fixes for all sections */
@media (max-width: 768px) {
    .section {
        margin-bottom: 0 !important;
    }
    
    .section:not(:last-child) {
        margin-bottom: 0 !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Additional mobile spacing improvements */
    .section {
        margin-bottom: 0 !important;
    }
    
    .section:not(:last-child) {
        margin-bottom: 0 !important;
    }
    
    /* Ensure proper spacing between sections */
    .location-contact-section,
    .counter-section,
    .programari-online-section,
    .news-section,
    .about-section,
    .tiles {
        margin-bottom: 0 !important;
    }
    
    /* Better touch targets for mobile */
    .service-card,
    .news-card,
    .about-card,
    .counter-card {
        min-height: 120px;
    }
    
    /* Improve button sizes for mobile */
    .btn {
        padding: 0.75rem 1.5rem;
    }
}




/* ===== FOOTER STYLES ===== */
.footer {
    background: #f8f9fa !important;
    color: #333333 !important;
    padding: 3rem 0 !important;
    border-top: 1px solid #e9ecef !important;
}

.footer_title {
    color: var(--general-theme-color) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.footer_text {
    color: #333333 !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0.75rem !important;
    font-weight: 400 !important;
}

.footer_text strong {
    color: var(--general-theme-color) !important;
    font-weight: 600 !important;
    margin-right: 0.5rem !important;
}

.footer_text a {
    color: #333333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer_text a:hover {
    color: var(--general-theme-color) !important;
}

/* Logo styling */
.footer .logo img {
    max-width: 200px !important;
    height: auto !important;
    filter: none !important;
    opacity: 0.9 !important;
}

/* Menu styling */
.footer .menu-footer {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer .menu-footer li {
    margin-bottom: 0.75rem !important;
}

.footer .menu-footer a {
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
}

.footer .menu-footer a:hover {
    color: var(--general-theme-color) !important;
}

/* Contact sections */
.footer .contact_texts {
    padding: 0 1rem !important;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 !important;
        text-align: center !important;
    }
    
    .footer_title {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer_text {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer .contact_texts {
        padding: 0 !important;
        margin-top: 2rem !important;
    }
    
    .footer .logo {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1.5rem 0 !important;
    }
    
    .footer_title {
        font-size: 1rem !important;
    }
    
    .footer_text {
        font-size: 0.85rem !important;
    }
}

/* ===== POST NEWS STYLES ===== */
.post_news {
    background: #ffffff !important;
    padding: 3rem 0 !important;
    border-top: 1px solid #e9ecef !important;
    border-bottom: 1px solid #e9ecef !important;
}

/* Post title styling */
.post_news .content_title {
    margin-bottom: 2.5rem !important;
    text-align: center !important;
    position: relative !important;
}

.post_news .content_title__title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--general-theme-color) !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
    display: inline-block !important;
}

.post_news .content_title__title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: var(--general-theme-color) !important;
    border-radius: 2px !important;
}

.post_news .post__image {
    margin-bottom: 2.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.post_news .post__image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.post_news .post__image:hover img {
    transform: scale(1.01) !important;
}

.post_news .post__intro {
    background: #f8f9fa !important;
    color: #333333 !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    margin-bottom: 2.5rem !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    border-left: 4px solid var(--general-theme-color) !important;
}

.post_news .post__desc {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #333333 !important;
    margin-bottom: 2.5rem !important;
    background: white !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.post_news .post__desc h1,
.post_news .post__desc h2,
.post_news .post__desc h3,
.post_news .post__desc h4,
.post_news .post__desc h5,
.post_news .post__desc h6 {
    color: var(--general-theme-color) !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

.post_news .post__desc h1 {
    font-size: 2rem !important;
    border-bottom: 2px solid var(--general-theme-color) !important;
    padding-bottom: 0.5rem !important;
}

.post_news .post__desc h2 {
    font-size: 1.75rem !important;
    border-bottom: 1px solid var(--general-theme-color) !important;
    padding-bottom: 0.5rem !important;
}

.post_news .post__desc h3 {
    font-size: 1.5rem !important;
}

.post_news .post__desc p {
    margin-bottom: 1.8rem !important;
    text-align: justify !important;
    font-weight: 400 !important;
}

.post_news .post__desc ul,
.post_news .post__desc ol {
    margin-bottom: 1.5rem !important;
    padding-left: 2rem !important;
}

.post_news .post__desc li {
    margin-bottom: 0.5rem !important;
    font-weight: 400 !important;
}

.post_news .post__desc blockquote {
    background: #f8f9fa !important;
    border-left: 4px solid var(--general-theme-color) !important;
    padding: 1.5rem !important;
    margin: 2rem 0 !important;
    font-style: italic !important;
    color: #555555 !important;
    border-radius: 0 8px 8px 0 !important;
}

.post_news .post__desc a {
    color: var(--general-theme-color) !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent !important;
    transition: border-bottom-color 0.3s ease !important;
    font-weight: 500 !important;
}

.post_news .post__desc a:hover {
    border-bottom-color: var(--general-theme-color) !important;
}

/* Gallery styles */
.post_news .img_galery {
    margin-top: 2.5rem !important;
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.post_news .img_galery .item {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.post_news .img_galery .item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.post_news .img_galery .gallery-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    transition: all 0.3s ease !important;
}

.post_news .img_galery .item:hover .gallery-img {
    transform: scale(1.05) !important;
}

/* Related posts section */
.post_news .related__bytag .content_title {
    margin-bottom: 2.5rem !important;
    background: #f8f9fa !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    border-left: 4px solid var(--general-theme-color) !important;
}

.post_news .related__bytag .content_title_title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--general-theme-color) !important;
    margin-bottom: 0.5rem !important;
}

.post_news .related__bytag .content_title_subtitle {
    font-size: 1rem !important;
    color: #666666 !important;
    font-weight: 400 !important;
}

/* Responsive post news */
@media (max-width: 768px) {
    .post_news {
        padding: 2.5rem 0 !important;
    }
    
    .post_news .post__intro {
        padding: 2rem !important;
        font-size: 1.1rem !important;
    }
    
    .post_news .post__desc {
        font-size: 1rem !important;
        padding: 2rem !important;
    }
    
    .post_news .post__desc h1 {
        font-size: 2rem !important;
    }
    
    .post_news .post__desc h2 {
        font-size: 1.75rem !important;
    }
    
    .post_news .post__desc h3 {
        font-size: 1.5rem !important;
    }
    
    .post_news .content_title__title {
        font-size: 2.5rem !important;
    }
    
    .post_news .related__bytag .content_title_title {
        font-size: 1.75rem !important;
    }
    
    .post_news .img_galery .gallery-img {
        height: 180px !important;
    }
}

@media (max-width: 576px) {
    .post_news {
        padding: 2rem 0 !important;
    }
    
    .post_news .post__intro {
        padding: 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .post_news .post__desc {
        font-size: 0.95rem !important;
        padding: 1.5rem !important;
    }
    
    .post_news .post__desc h1 {
        font-size: 1.75rem !important;
    }
    
    .post_news .post__desc h2 {
        font-size: 1.5rem !important;
    }
    
    .post_news .post__desc h3 {
        font-size: 1.25rem !important;
    }
    
    .post_news .content_title__title {
        font-size: 2rem !important;
    }
    
    .post_news .related__bytag .content_title_title {
        font-size: 1.5rem !important;
    }
    
    .post_news .img_galery .gallery-img {
        height: 150px !important;
    }
}

/* ===== ATTACHED DOCUMENTS STYLES ===== */
.post_news .attached_documents {
    margin-top: 2rem !important;
}

.post_news .attached_documents .content_title {
    margin-bottom: 2rem !important;
    text-align: center !important;
}

.post_news .attached_documents .content_title__title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--general-theme-color) !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
    display: inline-block !important;
}

.post_news .attached_documents .content_title__title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: var(--general-theme-color) !important;
    border-radius: 2px !important;
}

.post_news .documents_h {
    background: white !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.post_news .documents_h ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.post_news .documents_h li {
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border-left: 4px solid var(--general-theme-color) !important;
    transition: all 0.3s ease !important;
}

.post_news .documents_h li:hover {
    background: #e9ecef !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.post_news .document_box {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.post_news .document_box_header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 80px !important;
}

.post_news .document_img {
    width: 50px !important;
    height: 50px !important;
    background: var(--general-theme-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.5rem !important;
}

.post_news .document_img i {
    color: white !important;
    font-size: 1.5rem !important;
}

.post_news .document_date {
    font-size: 0.85rem !important;
    color: #666666 !important;
    font-weight: 500 !important;
    text-align: center !important;
}

.post_news .document_box_body {
    flex: 1 !important;
}

.post_news .document_box_title {
    margin-bottom: 0.5rem !important;
}

.post_news .document_box_title a {
    color: var(--general-theme-color) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.post_news .document_box_title a:hover {
    color: #2c3e50 !important;
    text-decoration: underline !important;
}

.post_news .document_box_description {
    color: #666666 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

/* Fix for broken images */
.post_news .post__image img,
.post_news .img_galery .gallery-img {
    min-height: 200px !important;
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
}

.post_news .post__image img[src*="broken"],
.post_news .img_galery .gallery-img[src*="broken"],
.post_news .post__image img:not([src]),
.post_news .img_galery .gallery-img:not([src]) {
    background: #f8f9fa url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><rect width="50" height="50" fill="%23e9ecef"/><text x="25" y="25" text-anchor="middle" dy=".3em" fill="%23999" font-family="Arial" font-size="12">No Image</text></svg>') center no-repeat !important;
    background-size: 50px 50px !important;
}

/* Responsive documents */
@media (max-width: 768px) {
    .post_news .documents_h {
        padding: 1.5rem !important;
    }
    
    .post_news .documents_h li {
        padding: 1rem !important;
    }
    
    .post_news .document_box {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .post_news .document_box_header {
        margin-bottom: 1rem !important;
    }
    
    .post_news .attached_documents .content_title__title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .post_news .documents_h {
        padding: 1rem !important;
    }
    
    .post_news .documents_h li {
        padding: 0.75rem !important;
    }
    
    .post_news .document_img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .post_news .document_img i {
        font-size: 1.25rem !important;
    }
    
    .post_news .attached_documents .content_title__title {
        font-size: 1.25rem !important;
    }
}

/* ===== RELATED POSTS STYLES ===== */
.post_news .related__bytag {
    margin-top: 3rem !important;
}

.post_news .related__bytag .content_title {
    margin-bottom: 2.5rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, var(--general-theme-color) 0%, #5bb1c1 100%) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(72, 161, 175, 0.3) !important;
}

.post_news .related__bytag .content_title_title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.post_news .related__bytag .content_title_subtitle {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
}

.post_news .postbox_posts_bytag_owl {
    background: white !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.post_news .__postnews {
    background: #f8f9fa !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e9ecef !important;
}

.post_news .__postnews:hover {
    background: white !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(72, 161, 175, 0.2) !important;
    border-color: var(--general-theme-color) !important;
}

.post_news .post_box_image {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.post_news .post_box_image img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.post_news .__postnews:hover .post_box_image img {
    transform: scale(1.05) !important;
}

.post_news .post_box_title {
    margin-bottom: 1rem !important;
}

.post_news .post_box_title a {
    color: var(--general-theme-color) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
}

.post_news .post_box_title a:hover {
    color: #2c3e50 !important;
    text-decoration: underline !important;
}

.post_news .post_box_intro {
    color: #666666 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-top: 0.5rem !important;
}

/* Owl Carousel Customization */
.post_news .owl-carousel .owl-nav {
    margin-top: 1rem !important;
}

.post_news .owl-carousel .owl-nav button {
    background: var(--general-theme-color) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 0.5rem !important;
    transition: all 0.3s ease !important;
}

.post_news .owl-carousel .owl-nav button:hover {
    background: #2c3e50 !important;
    transform: scale(1.1) !important;
}

.post_news .owl-carousel .owl-dots {
    margin-top: 1rem !important;
}

.post_news .owl-carousel .owl-dot {
    background: #e9ecef !important;
    border-radius: 50% !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 0.25rem !important;
    transition: all 0.3s ease !important;
}

.post_news .owl-carousel .owl-dot.active {
    background: var(--general-theme-color) !important;
    transform: scale(1.2) !important;
}

/* Responsive related posts */
@media (max-width: 768px) {
    .post_news .related__bytag .content_title {
        padding: 1.5rem !important;
    }
    
    .post_news .related__bytag .content_title_title {
        font-size: 1.75rem !important;
    }
    
    .post_news .postbox_posts_bytag_owl {
        padding: 1.5rem !important;
    }
    
    .post_news .__postnews {
        padding: 1rem !important;
    }
    
    .post_news .post_box_image img {
        height: 150px !important;
    }
}

@media (max-width: 576px) {
    .post_news .related__bytag .content_title {
        padding: 1rem !important;
    }
    
    .post_news .related__bytag .content_title_title {
        font-size: 1.5rem !important;
    }
    
    .post_news .postbox_posts_bytag_owl {
        padding: 1rem !important;
    }
    
    .post_news .__postnews {
        padding: 0.75rem !important;
    }
    
    .post_news .post_box_image img {
        height: 120px !important;
    }
}

/* ===== CATEGORY NEWS STYLES ===== */
.section_category_hireink {
    background: #ffffff !important;
}

/* Hero Banner Section */
.section_category_hireink .post_banner {
    margin-bottom: 2rem !important;
}

.section_category_hireink .items_box_holder {
    position: relative !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    min-height: 300px !important;
}

.section_category_hireink .items_box_holder img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.section_category_hireink .items_box_holder:hover img {
    transform: scale(1.02) !important;
}

.section_category_hireink .banner_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6)) !important;
    z-index: 1 !important;
}

.section_category_hireink .post_banner_box_holder {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2 !important;
    padding: 1.5rem !important;
}

.section_category_hireink .post_banner_title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 0.75rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.3 !important;
}

.section_category_hireink .post_banner_content {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.section_category_hireink .post_banner_button {
    display: inline-block !important;
    background: var(--general-theme-color) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: background-color 0.3s ease !important;
}

.section_category_hireink .post_banner_button:hover {
    background: #2c3e50 !important;
    color: white !important;
}

/* Content Title Section */
.section_category_hireink .content_title {
    margin-bottom: 1.5rem !important;
    text-align: left !important;
}

.section_category_hireink .content_title__title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: var(--general-theme-color) !important;
    margin-bottom: 0 !important;
}

/* News Cards Grid */
.section_category_hireink .post_box_container {
    background: transparent !important;
    padding: 0 !important;
}

.section_category_hireink .__postnews {
    background: white !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    transition: box-shadow 0.3s ease !important;
    border: 1px solid #e9ecef !important;
    height: 100% !important;
}

.section_category_hireink .__postnews:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.section_category_hireink .post_box_image {
    border-radius: 6px !important;
    overflow: hidden !important;
    margin-bottom: 0.75rem !important;
}

.section_category_hireink .post_box_image img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.section_category_hireink .__postnews:hover .post_box_image img {
    transform: scale(1.02) !important;
}

.section_category_hireink .post_box_title {
    margin-bottom: 0.5rem !important;
}

.section_category_hireink .post_box_title a {
    color: var(--general-theme-color) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
    display: block !important;
}

.section_category_hireink .post_box_title a:hover {
    color: #2c3e50 !important;
}

.section_category_hireink .post_box_intro {
    color: #666666 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-top: 0.25rem !important;
}

/* Owl Carousel Customization */
.section_category_hireink .owl-carousel .owl-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    z-index: 3 !important;
}

.section_category_hireink .owl-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.8) !important;
    color: var(--general-theme-color) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 0.5rem !important;
    transition: background-color 0.3s ease !important;
}

.section_category_hireink .owl-carousel .owl-nav button:hover {
    background: var(--general-theme-color) !important;
    color: white !important;
}


/* Pagination */
.section_category_hireink .posts__pagination {
    margin-top: 2rem !important;
}

.section_category_hireink .pagination .page-link {
    color: var(--general-theme-color) !important;
    border-color: #e9ecef !important;
    padding: 0.5rem 0.75rem !important;
    margin: 0 0.2rem !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
}

.section_category_hireink .pagination .page-link:hover {
    background: var(--general-theme-color) !important;
    color: white !important;
    border-color: var(--general-theme-color) !important;
}

.section_category_hireink .pagination .page-item.active .page-link {
    background: var(--general-theme-color) !important;
    border-color: var(--general-theme-color) !important;
    color: white !important;
}

/* Responsive Category News */
@media (max-width: 768px) {
    .section_category_hireink {
        padding: 1.5rem 0 !important;
    }
    
    .section_category_hireink .items_box_holder {
        min-height: 250px !important;
    }
    
    .section_category_hireink .items_box_holder img {
        height: 250px !important;
    }
    
    .section_category_hireink .post_banner_title {
        font-size: 1.25rem !important;
    }
    
    .section_category_hireink .post_banner_content {
        font-size: 0.9rem !important;
    }
    
    .section_category_hireink .content_title__title {
        font-size: 1.5rem !important;
    }
    
    .section_category_hireink .__postnews {
        padding: 0.75rem !important;
    }
    
    .section_category_hireink .post_box_image img {
        height: 150px !important;
    }
    
    .section_category_hireink .owl-carousel .owl-nav button {
        width: 35px !important;
        height: 35px !important;
        margin: 0 0.25rem !important;
    }
}

@media (max-width: 576px) {
    .section_category_hireink {
        padding: 1rem 0 !important;
    }
    
    .section_category_hireink .items_box_holder {
        min-height: 200px !important;
    }
    
    .section_category_hireink .items_box_holder img {
        height: 200px !important;
    }
    
    .section_category_hireink .post_banner_title {
        font-size: 1.1rem !important;
    }
    
    .section_category_hireink .post_banner_content {
        font-size: 0.85rem !important;
    }
    
    .section_category_hireink .content_title__title {
        font-size: 1.25rem !important;
    }
    
    .section_category_hireink .__postnews {
        padding: 0.5rem !important;
    }
    
    .section_category_hireink .post_box_image img {
        height: 120px !important;
    }
    
    .section_category_hireink .owl-carousel .owl-nav button {
        width: 30px !important;
        height: 30px !important;
        margin: 0 0.2rem !important;
    }
}