 /* === TIHS HEADER CSS === */
 :root {
    --primary: #006400; /* Deep Green */
    --secondary: #FFD700; /* Gold */
    --accent: #8B0000; /* Dark Red */
    --light: #FAFAFA; /* Soft White */
    --dark: #252525; /* Deep Charcoal */
    --text-primary: #252525; /* Strong Dark Text */
    --text-secondary: #4A4A4A; /* Soft Grey Text */
    --background-main: #FFFFFF; /* Clean White Background */
    --background-secondary: #F5F5F5; /* Light Grey */
    --footer-background: #003300; /* Dark Green */
    --button-primary: #006400; /* Deep Green Button */
    --button-primary-hover: #004D00; /* Darker Green */
    --button-secondary: #8B0000; /* Dark Red Button */
    --button-secondary-hover: #660000; /* Darker Red */
    --link-color: #006400; /* Deep Green Links */
    --link-hover: #004D00; /* Darker Green Hover */
    --border-color: #DDDDDD; /* Light Grey Border */
    --header-height: 120px;
    --topbar-height: 40px;
    --transition: all 0.3s ease;
}



/* Topbar styles */
.tihs_header .tihs_topbar {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.tihs_header .tihs_topbar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0) 70%);
    animation: pulse 8s infinite;
    z-index: 0;
}

.tihs_header .tihs_topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientSlide 5s linear infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.tihs_header .tihs_topbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tihs_header .tihs_contact_info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tihs_header .tihs_social_icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tihs_header .tihs_social_title {
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    color: var(--light);
}

.tihs_header .tihs_social_icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tihs_header .tihs_social_icon:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tihs_header .tihs_social_icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.tihs_header .tihs_social_icon:hover::before {
    transform: scale(1);
}

.tihs_header .tihs_contact_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tihs_header .tihs_contact_item i {
    animation: bounce 2s infinite;
    color: var(--secondary);
    font-size: 16px;
    margin-right: 5px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.tihs_header .tihs_contact_item:nth-child(2) i {
    animation-delay: 0.3s;
}

.tihs_header .tihs_contact_item:nth-child(3) i {
    animation-delay: 0.6s;
}

/* Main navbar styles */
.tihs_header .tihs_navbar {
    background-color: var(--background-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid var(--secondary);
}

.tihs_header .tihs_navbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
}

.tihs_header .tihs_logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 5;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.tihs_header .tihs_logo:hover {
    transform: scale(1.05);
}

.tihs_header .tihs_logo span {
    color: var(--secondary);
    position: relative;
}

.tihs_header .tihs_logo span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tihs_header .tihs_logo:hover span::after {
    transform: scaleX(1);
}

/* Navigation */
.tihs_header .tihs_nav_container {
    position: relative;
}

.tihs_header .tihs_nav_menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.tihs_header .tihs_nav_item {
    position: relative;
}

.tihs_header .tihs_nav_link {
    display: block;
    padding: 10px 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    z-index: 1;
    overflow: hidden;
}

.tihs_header .tihs_nav_link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(-100%);
    z-index: -1;
}

.tihs_header .tihs_nav_link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 215, 0, 0.1); /* Gold with transparency */
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -2;
}

.tihs_header .tihs_nav_link:hover {
    color: var(--primary);
}

.tihs_header .tihs_nav_link:hover::before {
    transform: translateX(0);
}

.tihs_header .tihs_nav_link:hover::after {
    transform: translateY(0);
}

.tihs_header .tihs_nav_item:hover .tihs_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tihs_header .tihs_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-main);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 100;
    padding: 10px 0;
    list-style: none;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--primary);
}

.tihs_header .tihs_dropdown_item {
    position: relative;
}

.tihs_header .tihs_dropdown_link {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    border-left: 0 solid var(--secondary);
}

.tihs_header .tihs_dropdown_link:hover {
    background-color: rgba(0, 100, 0, 0.05);
    color: var(--primary);
    padding-left: 25px;
    border-left: 4px solid var(--secondary);
}

.tihs_header .tihs_dropdown_link::before {
    content: '➤';
    position: absolute;
    left: 10px;
    opacity: 0;
    color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.tihs_header .tihs_dropdown_link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Apply Now Button/Form */
.tihs_header .tihs_apply_now {
    position: relative;
    z-index: 5;
}

.tihs_header .tihs_apply_btn {
    background-color: var(--button-secondary);
    color: white;
    border: 2px solid var(--button-secondary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.tihs_header .tihs_apply_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
    transition: 0.5s;
    z-index: -1;
}

.tihs_header .tihs_apply_btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.tihs_header .tihs_apply_btn:hover {
    background-color: var(--button-secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.tihs_header .tihs_apply_btn:hover::before {
    left: 100%;
}

.tihs_header .tihs_apply_btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tihs_header .tihs_apply_btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.2);
}

.tihs_header .tihs_apply_form_container {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 20px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
}

.tihs_header .tihs_apply_form_container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tihs_header .tihs_apply_form h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.tihs_header .tihs_apply_form h3::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 16px;
}

.tihs_header .tihs_apply_form h3::after {
    content: '✦';
    position: absolute;
    right: 0;
    color: var(--secondary);
    font-size: 16px;
}

.tihs_header .tihs_form_group {
    margin-bottom: 15px;
}

.tihs_header .tihs_form_control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: var(--light);
    color: var(--text-primary);
    font-size: 14px;
}

.tihs_header .tihs_form_control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.15);
    transform: translateY(-2px);
}

.tihs_header .tihs_form_control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tihs_header .tihs_form_control:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

.tihs_header .tihs_submit_btn {
    width: 100%;
    padding: 12px;
    background-color: var(--button-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 100, 0, 0.2);
}

.tihs_header .tihs_submit_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--button-primary-hover);
    transition: all 0.4s cubic-bezier(.8,.5,.2,1.4);
    z-index: -1;
}

.tihs_header .tihs_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 100, 0, 0.3);
}

.tihs_header .tihs_submit_btn:hover::before {
    width: 100%;
}

.tihs_header .tihs_submit_btn:active {
    transform: translateY(0);
}

/* Mobile menu toggle */
.tihs_header .tihs_menu_toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    background-color: var(--light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tihs_header .tihs_menu_toggle:hover {
    background-color: var(--secondary);
    transform: rotate(5deg);
}

.tihs_header .tihs_menu_toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 24px;
    background-color: var(--primary);
    border-radius: 3px;
    left: 8px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.tihs_header .tihs_menu_toggle span:nth-child(1) {
    top: 12px;
}

.tihs_header .tihs_menu_toggle span:nth-child(2) {
    top: 19px;
}

.tihs_header .tihs_menu_toggle span:nth-child(3) {
    top: 26px;
}

.tihs_header .tihs_menu_toggle.active {
    background-color: var(--secondary);
    transform: rotate(360deg);
}

.tihs_header .tihs_menu_toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--accent);
}

.tihs_header .tihs_menu_toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.tihs_header .tihs_menu_toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--accent);
}

/* Sticky Header */
.tihs_header.sticky .tihs_navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    animation: slideDown 0.5s forwards;
    border-bottom: 3px solid var(--secondary);
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .tihs_header .tihs_navbar_container {
        padding: 10px 20px;
    }

    .tihs_header .sfp_nav_link {
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .tihs_header .tihs_menu_toggle {
        display: block;
    }

    .tihs_header .tihs_nav_container {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
        border-left: 3px solid var(--secondary);
    }

    .tihs_header .tihs_nav_container.active {
        right: 0;
    }

    .tihs_header .tihs_nav_menu {
        flex-direction: column;
        gap: 0;
    }

    .tihs_header .tihs_nav_item {
        width: 100%;
    }

    .tihs_header .tihs_nav_link {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .tihs_header .tihs_nav_link::after {
        display: none;
    }

    .tihs_header .tihs_dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        padding: 0;
        border: none;
        background-color: var(--background-secondary);
        border-radius: 0;
    }

    .tihs_header .tihs_nav_item.active .tihs_dropdown {
        max-height: 500px;
        padding: 5px 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .tihs_header .tihs_dropdown_link {
        padding-left: 30px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

    .tihs_header .tihs_menu_toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .tihs_header .tihs_menu_toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .tihs_header .tihs_menu_toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Specific styles for the address in topbar */
.tihs_header .tihs_address_item {
    max-width: 400px;
}

/* Responsive topbar styles */
@media (max-width: 1024px) {
    .tihs_header .tihs_address_item {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .tihs_header .tihs_contact_info {
        gap: 15px;
    }
    
    .tihs_header .tihs_address_item {
        max-width: 250px;
    }
}

@media (max-width: 850px) {
    .tihs_header .tihs_topbar_container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .tihs_header .tihs_contact_info {
        order: 1;
        justify-content: center;
        width: 100%;
    }
    
    .tihs_header .tihs_social_icons {
        order: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .tihs_header .tihs_address_item {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .tihs_header .tihs_topbar {
        padding: 12px 0;
    }
    
    .tihs_header .tihs_contact_info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .tihs_header .tihs_contact_item {
        width: 100%;
        justify-content: center;
    }
    
    .tihs_header .tihs_address_item {
        max-width: 100%;
    }
    
    .tihs_header .tihs_social_icons {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    
    .tihs_header .tihs_apply_form_container {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .tihs_header .tihs_topbar {
        padding: 15px 0;
    }
    
    .tihs_header .tihs_contact_item {
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .tihs_header .tihs_contact_item i {
        font-size: 14px;
    }
    
    .tihs_header .tihs_social_title {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .tihs_header .tihs_social_icons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .tihs_header .tihs_social_icon {
        width: 32px;
        height: 32px;
    }
    
    .tihs_header .tihs_apply_form_container {
        width: 280px;
        right: -70px;
    }
}

@media (max-width: 360px) {
    .tihs_header .tihs_topbar {
        font-size: 12px;
    }
    
    .tihs_header .tihs_contact_item i {
        font-size: 12px;
    }
    
    .tihs_header .tihs_social_icons {
        gap: 8px;
    }
    
    .tihs_header .tihs_social_icon {
        width: 28px;
        height: 28px;
    }

    /* banner area css */
    
    
    
    
