:root {
    --general-theme-color: #0a4c64;
    --general-theme-color-light: #0d5a75;
    --general-theme-color-lighter: #106886;
    --general-theme-color-dark: #083e53;
    --general-theme-color-darker: #063042;
    --general-theme-color-rgb: 10, 76, 100;
    --general-theme-color-light-rgb: 13, 90, 117;
    --general-theme-color-dark-rgb: 8, 62, 83;
    /*General:*/ 
        --theme-primary-font: 'Poppins', sans-serif;
        --theme-secondary-font: 'Poppins', sans-serif;

        --theme-primary-color:24,25,31;
        --theme-secondary-color:10, 76, 100;
        --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;
  

}

section .text-primary{
    color: var(--general-theme-color) !important;
}
/* Header Top Design - Softer, more professional */
.header-top {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    min-height: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.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: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.header-top-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 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 - Softer */
.header-top.is-sticky {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

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

.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;
}

.translate-middle-x{
        transform: translateX(50%);
    left: 50%;
    margin-left: -15px;
    bottom: 20px;
}

/* Modern Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}



/* Hero Title - Softer gradient text */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Content - Softer text */
.hero-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
}

/* Modern Button Styles - More professional */
.hero-btn-primary {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(var(--general-theme-color-rgb), 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

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

.hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--general-theme-color-dark) 0%, var(--general-theme-color) 50%, var(--general-theme-color-dark) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--general-theme-color-rgb), 0.25);
    color: #fff;
    text-decoration: none;
}

.hero-btn-primary .btn-icon {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
}

/* Animated Background Elements - Softer */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    animation: float 8s ease-in-out infinite;
}

.hero-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-content {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
        background-attachment: scroll;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-content {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    .hero-circle-1 {
        width: 150px;
        height: 150px;
    }
    .hero-circle-2 {
        width: 120px;
        height: 120px;
    }
    .hero-circle-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-content {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    .hero-actions {
        gap: 1rem !important;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 50vh;
        margin-top: 0;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-content {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    .hero-circle {
        display: none;
    }
    .hero-scroll-indicator {
        display: none;
    }
}

/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

/* 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;
}
/* Legacy service-card styles for backward compatibility */
.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: linear-gradient(0deg, #ffffff 0%, #fff8eb 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}


.news-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%);
}
.news-header {
    position: relative;
}

.news-title {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(var(--general-theme-color-rgb), 0.05);
}



.news-subtitle {
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--general-theme-color-rgb), 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 4px rgba(var(--general-theme-color-rgb), 0.03),
        0 4px 8px rgba(var(--general-theme-color-rgb), 0.06);
}

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

.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 - Government & Healthcare Professional Design */

.about-section {
    background:transparent;
    position: relative;
    overflow: hidden;
}

.about-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%);
}

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

.about-badge {
    display: inline-block;
}

.about-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(var(--general-theme-color-rgb), 0.2);
}

.about-title {
    color: var(--general-theme-color) !important;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--general-theme-color), var(--general-theme-color-dark));
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: #495057;
    font-weight: 400;
}

.about-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--general-theme-color-rgb), 0.3) 50%, transparent 100%);
    margin-top: 2rem;
}

/* Main Content Card */
.about-main-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(var(--general-theme-color-rgb), 0.06);
    border: 1px solid rgba(var(--general-theme-color-rgb), 0.1);
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
}

.about-main-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(var(--general-theme-color-rgb), 0.08);
    border-color: rgba(var(--general-theme-color-rgb), 0.2);
}

.about-main-content {
    position: relative;
    z-index: 3;
}

.about-text-title {
    color: var(--general-theme-color);
    border-bottom: 2px solid rgba(var(--general-theme-color-rgb), 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Professional Action Buttons */
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.25s ease-out;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-actions .btn-primary {
    background: var(--general-theme-color);
    border-color: var(--general-theme-color);
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.2);
}

.about-actions .btn-primary:hover {
    background: var(--general-theme-color-dark);
    border-color: var(--general-theme-color-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--general-theme-color-rgb), 0.3);
}

.about-actions .btn-outline-primary {
    color: var(--general-theme-color);
    border-color: var(--general-theme-color);
    background: transparent;
}

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

/* Background Image */
.about-bg-image {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 280px;
    height: 280px;
    z-index: 1;
    opacity: 0.08;
    transition: opacity 0.25s ease-out;
}

.about-main-card:hover .about-bg-image {
    opacity: 0.12;
}

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

/* Professional Sidebar */
.about-sidebar {
    height: 100%;
}

.about-sidebar-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(var(--general-theme-color-rgb), 0.06);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(var(--general-theme-color-rgb), 0.1);
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
}

.about-sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(var(--general-theme-color-rgb), 0.08);
    border-color: rgba(var(--general-theme-color-rgb), 0.2);
}

.about-sidebar-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(var(--general-theme-color-rgb), 0.1);
}

.about-sidebar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--general-theme-color), var(--general-theme-color-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(var(--general-theme-color-rgb), 0.25);
    transition: all 0.25s ease-out;
}

.about-sidebar-card:hover .about-sidebar-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--general-theme-color-rgb), 0.35);
}

.about-sidebar-title {
    color: var(--general-theme-color);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.about-sidebar-body {
    margin-bottom: 1.5rem;
}

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

/* Professional Stats */
.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(var(--general-theme-color-rgb), 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--general-theme-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(var(--general-theme-color-rgb), 0.1);
    backdrop-filter: blur(8px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.trust-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Smooth animations for about section */
.about-header {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.about-main-card {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.about-sidebar-card {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.trust-indicators {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* Focus states for accessibility */
.about-main-card:focus,
.about-sidebar-card:focus {
    outline: none;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(var(--general-theme-color-rgb), 0.08),
        0 0 0 2px rgba(var(--general-theme-color-rgb), 0.3);
}

.about-actions .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--general-theme-color-rgb), 0.3);
}

/* Responsive adjustments for about section */
@media (max-width: 992px) {
    .about-main-content {
        max-width: 100%;
    }
    
    .about-bg-image {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 200px;
        opacity: 0.15;
        margin-top: 2rem;
    }
    
    .about-sidebar-card {
        margin-top: 1rem;
    }
    
    .trust-indicators {
        gap: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-main-card {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .about-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .about-sidebar-card {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .about-main-card {
        padding: 1.25rem;
        min-height: 250px;
    }
    
    .about-sidebar-card {
        padding: 1.25rem;
    }
    
    .about-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .trust-indicators {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
}


.section_group_2_3{
    background: linear-gradient(180deg, #ffffff 0%, #fff8eb 100%);
}
/* Location Contact Section Styles */
.location-contact-section {
    background: linear-gradient(0deg, #ffffff 0%, #fff8eb 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: #0a4c64 !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: #0a4c64 !important;
}

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

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

.menu .menu-item:hover > .menu-link,
.menu .menu-item.menu-hover > .menu-link {
    background: #0a4c64 !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: #0a4c64 !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: linear-gradient(180deg, #ffffff 0%, #fff8eb 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.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, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.25);
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

.programari-btn:hover {
    background: linear-gradient(135deg, #654321 0%, #8B4513 50%, #A0522D 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.35);
    color: #fff;
    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;
    }
}

/* ===== MODERN TILES SECTION ===== */
.tiles-section {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.tiles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%230a4c64" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.tiles-title {
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(var(--general-theme-color-rgb), 0.05);
}

.tiles-subtitle {
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.tiles-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.tiles-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--general-theme-color-light) 0%, var(--general-theme-color) 50%, var(--general-theme-color-light) 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tiles-underline:hover::before {
    opacity: 1;
}

.tiles-grid {
    position: relative;
    z-index: 2;
}

.tiles-grid .row {
    gap: 1.5rem;
}

.tiles-grid .col-6,
.tiles-grid .col-md-6,
.tiles-grid .col-lg-3,
.tiles-grid .col-lg-2-5,
.tiles-grid .col-xl-2-5 {
    padding: 0;
}

/* Custom 2.5 column layout for 20% width */
@media (min-width: 992px) {
    .col-lg-2-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-xl-2-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Smooth loading animation for tiles section */
.tiles-grid {
    opacity: 0;
    animation: tilesGridAppear 0.8s ease-out 0.2s forwards;
}

@keyframes tilesGridAppear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tile-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--general-theme-color-rgb), 0.1);
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(var(--general-theme-color-rgb), 0.06),
        0 2px 8px rgba(var(--general-theme-color-rgb), 0.03);
    transition: all 0.25s ease-out;
    min-height: 240px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    animation: tileCardAppear 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(15px) scale(0.99);
}

@keyframes tileCardAppear {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tile-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 6px 20px rgba(var(--general-theme-color-rgb), 0.1),
        0 3px 10px rgba(var(--general-theme-color-rgb), 0.06);
    border-color: rgba(var(--general-theme-color-rgb), 0.15);
    background: rgba(255, 255, 255, 1);
}

.tile-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--general-theme-color-rgb), 0.02) 0%, rgba(var(--general-theme-color-light-rgb), 0.01) 100%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    border-radius: 11px;
}

.tile-card:hover .tile-card-bg {
    opacity: 1;
}

.tile-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--general-theme-color) 0%, var(--general-theme-color-light) 50%, var(--general-theme-color) 100%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    z-index: -1;
}

.tile-card:hover .tile-card-border {
    opacity: 0.05;
}

.tile-card__icon {
    position: relative;
    z-index: 2;
}

.tile-icon-wrapper {
    position: relative;
    display: inline-block;
}

.tile-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--general-theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(var(--general-theme-color-rgb), 0.2),
        0 2px 6px rgba(var(--general-theme-color-rgb), 0.1);
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
}

.tile-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--general-theme-color-light) 0%, var(--general-theme-color) 50%, var(--general-theme-color-light) 100%);
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.tile-card:hover .tile-icon-bg {
    transform: scale(1.03);
    box-shadow: 
        0 5px 14px rgba(var(--general-theme-color-rgb), 0.22),
        0 2px 6px rgba(var(--general-theme-color-rgb), 0.12);
}

.tile-card:hover .tile-icon-bg::before {
    opacity: 1;
}

.tile-icon {
    font-size: 32px;
    color: white;
    transition: all 0.25s ease-out;
    position: relative;
    z-index: 2;
}

.tile-card:hover .tile-icon {
    transform: scale(1.05);
}

.tile-icon-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.25s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tile-card:hover .tile-icon-image {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tile-card__title {
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.25s ease-out;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-shadow: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tile-card:hover .tile-card__title {
    color: var(--general-theme-color);
    transform: translateY(-0.5px);
    text-shadow: none;
    font-weight: 600;
}

.tile-hover-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--general-theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(8px) scale(0.85);
    transition: all 0.25s ease-out;
    box-shadow: 0 2px 8px rgba(var(--general-theme-color-rgb), 0.2);
    z-index: 10;
}

.tile-hover-indicator i {
    color: white;
    font-size: 14px;
    transition: transform 0.25s ease-out;
}

.tile-card:hover .tile-hover-indicator {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.tile-card:hover .tile-hover-indicator i {
    transform: translateX(1px);
}

/* Focus state for accessibility */
.tile-card:focus {
    outline: none;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 4px 18px rgba(var(--general-theme-color-rgb), 0.15),
        0 2px 8px rgba(var(--general-theme-color-rgb), 0.08),
        0 0 0 2px rgba(var(--general-theme-color-rgb), 0.3);
}

.tile-card:focus .tile-card__title {
    color: var(--general-theme-color);
    font-weight: 700;
}

/* Active state for better interaction feedback */
.tile-card:active {
    transform: translateY(0) scale(0.99);
    transition: all 0.1s ease-out;
}


.z-index-1 {
    z-index: 1;
}

/* Tiles section responsive fixes */
@media (max-width: 768px) {
    .tiles-section {
        padding: 2rem 0 !important;
    }
    
    .tiles-title {
        font-size: 2rem;
    }
    
    .tiles-subtitle {
        font-size: 1rem;
    }
    
    .tiles-grid .row {
        gap: 1rem;
    }
    
    .tile-card {
        min-height: 200px;
        margin-bottom: 0;
    }
    
    .tile-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .tile-icon {
        font-size: 28px;
    }
    
    .tile-card__title {
        font-size: 1rem;
    }
    
    .tile-hover-indicator {
        width: 28px;
        height: 28px;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .tile-hover-indicator i {
        font-size: 12px;
    }
    
    .tile-hover-indicator {
        display: none;
    }
    
    /* Smoother animations on tablet */
    .tile-card {
        transition: all 0.2s ease-out;
    }
    
    .tile-card:hover {
        transform: translateY(-1px) scale(1.005);
    }
}

@media (max-width: 576px) {
    .tiles-section {
        padding: 1.5rem 0 !important;
    }
    
    .tiles-title {
        font-size: 1.75rem;
    }
    
    .tiles-subtitle {
        font-size: 0.9rem;
    }
    
    .tiles-grid .row {
        gap: 0.75rem;
    }
    
    .tile-card {
        min-height: 180px;
        padding: 1.25rem 0.75rem !important;
    }
    
    .tile-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .tile-icon {
        font-size: 24px;
    }
    
    .tile-card__title {
        font-size: 0.9rem;
    }
    
    .tile-hover-indicator {
        width: 24px;
        height: 24px;
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .tile-hover-indicator i {
        font-size: 10px;
    }
    
    .tile-hover-indicator {
        display: none;
    }
    
    /* Smoother animations on mobile */
    .tile-card {
        transition: all 0.15s ease-out;
    }
    
    .tile-card:hover {
        transform: translateY(-0.5px) scale(1.002);
    }
}
/* 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: #f8fafc;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e8eaed;
    z-index: 100;
    margin-top: 50px;
}

.footer_title {
    color: var(--general-theme-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(var(--general-theme-color-rgb), 0.05);
}

.footer_text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer_text a {
    color: var(--general-theme-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_text a:hover {
    color: var(--general-theme-color-light);
    text-decoration: underline;
}

/* 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;
    }
}

.section_specialization .examination-toggle-header{
     background-color: rgba(10, 76, 100, 0.05);
    border-radius: 8px;
    padding: 10px;
}
.section_specialization .examination-toggle-header:hover {
    background-color: rgba(10, 76, 100, 0.05);
    border-radius: 8px;
}

.section_specialization .toggle-arrow {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.section_specialization .examination-content {
    padding: 10px;
    padding-left:15px;
    padding-right:0px;
    background-color: transparent;
    border-radius: 0px;
    margin-top: 30px;
    border-left: 4px solid #13556e;
}

.section_specialization .examination-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.section_specialization .examination-content ul li:last-child {
    border-bottom: none;
}
@media (max-width: 1300px) {
   .hero-section-overlay{
    background: none !important;
   }
}

@media (max-width: 991.98px) {
    .tiles-grid .row {
        gap: 0rem !important;
    }
   .tiles-grid .shadow-lg{
               box-shadow: 0px 5px 10px 0px #b6b6b63d !important;
    }
    .tiles-grid .col-6{
        padding: 10px;
    }
    .tiles-grid .tile-card{

    }
}


.__echipa .post__image img{
    object-position: top;
}