/* ============================================
   APP.CSS - Main Stylesheet
   ============================================ */

/* Utility: stronger shadow for hero headings on image backgrounds */
.hero-heading-shadow {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* ============================================
   NAVIGATION / HEADER STYLES
   ============================================ */

/* Navigation Link Animations */
.nav-link {
    position: relative;
    color: var(--color-primary);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-highlight-light));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-highlight);
}

.nav-link:hover::after {
    width: calc(100% - 1.5rem);
    left: 50%;
}

/* Active link state */
.nav-link.active {
    color: var(--color-highlight);
}

.nav-link.active::after {
    width: calc(100% - 1.5rem);
    left: 50%;
}

/* Dropdown item animations */
.nav-dropdown-item {
    position: relative;
    color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(0);
}

.nav-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--color-highlight);
    transform: translateY(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-dropdown-item:hover {
    color: var(--color-highlight);
    background: rgba(var(--color-highlight-rgb), 0.05);
    transform: translateX(8px);
    padding-left: calc(1.25rem + 8px);
}

.nav-dropdown-item:hover::before {
    width: 6px;
}

/* Mobile Menu Container - Fixed and Scrollable */
.mobile-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background: var(--color-bg-cream);
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu:not(.hidden) {
    transform: translateX(0);
}

.mobile-menu-header {
    flex-shrink: 0;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

/* Mobile menu link animations */
.mobile-menu-link {
    position: relative;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--color-highlight-rgb), 0.1), transparent);
    transition: width 0.3s ease;
    border-radius: 0.75rem;
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
    width: 100%;
}

.mobile-menu-link:hover {
    color: var(--color-highlight);
    transform: translateX(4px);
}

.mobile-menu-sub-item {
    position: relative;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.mobile-menu-sub-item::before {
    content: '→';
    position: absolute;
    left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-menu-sub-item:hover {
    color: var(--color-highlight);
    transform: translateX(8px);
    padding-left: calc(1.5rem + 8px);
}

.mobile-menu-sub-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Header scroll animations */
header.header-hidden {
    transform: translateY(-100%);
}

header.header-visible {
    transform: translateY(0);
}

/* Smooth logo animation */
header nav img {
    transition: transform 0.3s ease;
}

header:hover nav img {
    transform: scale(1.05);
}

/* Enhanced button hover effect */
.nav-button {
    position: relative;
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-button:hover::before {
    width: 300px;
    height: 300px;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px -8px rgba(var(--color-highlight-rgb), 0.5) !important;
}

.nav-button:active {
    transform: translateY(0);
}

/* Mobile Menu Contact Button Styles */
.mobile-menu .nav-button {
    background: var(--color-highlight) !important;
    color: var(--color-white) !important;
    box-shadow: 0 6px 24px -8px rgba(var(--color-highlight-rgb), 0.3);
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-menu .nav-button:hover {
    background: var(--color-highlight-dark) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px -8px rgba(var(--color-highlight-rgb), 0.5);
}

.mobile-menu .nav-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px -8px rgba(var(--color-highlight-rgb), 0.4);
}

.mobile-menu .nav-button span,
.mobile-menu .nav-button i {
    color: var(--color-white) !important;
}

/* ============================================
   PARTNERS SECTION STYLES
   ============================================ */
.partners-section {
    position: relative;
    overflow: hidden;
}

.partners-container {
    position: relative;
}

.partners-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-slider {
    display: flex;
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    width: fit-content;
}

.partners-logos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 0 2rem;
    white-space: nowrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 100px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    /* opacity: 0.6; */
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo i {
    font-size: 3rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}

.partner-logo:hover i {
    color: var(--color-highlight);
    transform: scale(1.1);
}

.partner-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;

}

.partner-logo:hover .partner-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slidein {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-logos {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .partner-logo {
        min-width: 140px;
        height: 100px;
        padding: 1.25rem;
        opacity: 0.75;
    }
    
    .partner-logo i {
        font-size: 2.5rem;
    }
    
    .partner-image {
        max-height: 100px;
        max-width: 140px;
        width: auto;
        height: auto;
    }
}

@media (max-width: 640px) {
    .partners-logos {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .partner-logo {
        min-width: 120px;
        height: 90px;
        padding: 1rem;
        opacity: 0.8;
    }
    
    .partner-logo i {
        font-size: 2.25rem;
    }
    
    .partner-image {
        max-height: 90px;
        max-width: 120px;
        width: auto;
        height: auto;
    }
}

@media (max-width: 480px) {
    .partners-logos {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .partner-logo {
        min-width: 100px;
        height: 80px;
        padding: 0.875rem;
        opacity: 0.85;
    }
    
    .partner-logo i {
        font-size: 2rem;
    }
    
    .partner-image {
        max-height: 80px;
        max-width: 100px;
        width: auto;
        height: auto;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

/* Footer Main Container */
.footer-modern {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 50%, var(--color-secondary-light) 100%);
    background-size: 200% 200%;
    animation: footer-gradient-shift 20s ease infinite;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

@keyframes footer-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 2;
}

.footer-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Footer Main Section */
.footer-main {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(1px);
}

/* Footer Columns */
.footer-col {
    position: relative;
}

.footer-col-company {
    padding-right: 1rem;
}

/* Logo Styles */
.footer-logo-wrapper {
    position: relative;
}

.footer-logo-modern {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo-modern:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Description */
.footer-description-modern {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Social Icons */
.footer-social-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social-icon-modern {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-social-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-highlight);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.footer-social-icon-modern i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon-modern:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

.footer-social-icon-modern:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-social-icon-modern:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-social-icon-modern.whatsapp-icon:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--color-secondary-dark);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--color-secondary-dark);
}

.footer-social-icon-modern:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer Headings */
.footer-heading-modern {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Footer Links */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link-modern .link-icon {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
    transition: all 0.3s ease;
}

.footer-link-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--color-highlight);
    transition: width 0.3s ease;
}

.footer-link-modern:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 1rem;
    transform: translateX(4px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-link-modern:hover .link-icon {
    transform: scale(1.2);
}

.footer-link-modern:hover::before {
    width: 6px;
}

/* Contact Information */
.footer-contact-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item-modern {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-contact-item-modern:hover .contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #ffffff;
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
}

.footer-contact-link-modern {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact-link-modern:hover {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateX(4px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-contact-text-modern {
    color: #ffffff !important;
    font-size: 0.9rem;
    line-height: 1.6;
    display: block;
}

/* Footer Bottom */
.footer-bottom-modern {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-bottom-content-modern {
    position: relative;
    z-index: 1;
}

.footer-copyright-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright-modern strong {
    color: var(--color-white);
    font-weight: 600;
}

.footer-bottom-link-modern {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-bottom-link-modern:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-credit-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-credit-link-modern {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-credit-link-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-credit-link-modern:hover {
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-credit-link-modern:hover::after {
    width: 100%;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-modern {
        padding-top: 2rem;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }

    .footer-heading-modern {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-social-modern {
        justify-content: flex-start;
    }

    .footer-bottom-content-modern {
        text-align: center;
    }

    .footer-bottom-link-modern {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .footer-social-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-icon-wrapper {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.9rem;
    }
}

/* WhatsApp Float Button Enhancement */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* FNC Slider Styles */
.fnc-slider {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    height: 100vh;
}

.fnc-slider *, .fnc-slider *:before, .fnc-slider *:after {
    box-sizing: border-box;
}

.fnc-slider__slides {
    position: relative;
    height: 100%;
    transition: transform 1s 0.66667s;
}

.fnc-slide {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0,0,0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.fnc-slide.m--before-sliding {
    z-index: 2 !important;
    transform: translate3d(100%,0,0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 1s 0.66667s ease-in-out, opacity 0.3s 0.66667s, visibility 0s 0.66667s;
}

.fnc-slide.m--active-slide {
    z-index: 1;
    transition: transform 1s 0.66667s ease-in-out, opacity 0.3s 0.66667s, visibility 0s 0.66667s;
    transform: translate3d(0,0,0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fnc-slide.m--previous-slide {
    z-index: 0;
    transition: opacity 0.3s 1.3s, visibility 0s 1.6s, pointer-events 0s 1.6s;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.fnc-slide__inner {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transform: translate3d(0,0,0);
}

.fnc-slide.m--before-sliding .fnc-slide__inner {
    transform: translate3d(-100%,0,0);
}

.fnc-slide.m--active-slide .fnc-slide__inner {
    transition: transform 1s 0.66667s ease-in-out;
    transform: translate3d(0,0,0);
}

.fnc-slide.m--previous-slide .fnc-slide__inner {
    transition: opacity 0.3s 1.3s;
    opacity: 1;
}

.fnc-slide__mask {
    overflow: hidden;
    z-index: 1;
    position: absolute;
    right: 60%;
    top: 24%;
    width: 50.25vh;
    height: 67vh;
    margin-right: -90px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0, 6vh 0, 6vh 61vh, 44vh 61vh, 44vh 6vh, 6vh 6vh);
    transform-origin: 50% 0;
    transition-timing-function: ease-in-out;
    opacity: 0;
    visibility: hidden;
    filter: drop-shadow(0 8px 24px rgba(235, 94, 40, 0.3));
}

.fnc-slide:not(.m--active-slide) .fnc-slide__mask {
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--before-sliding .fnc-slide__mask {
    transform: rotate(-10deg) translate3d(200px,0,0);
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--active-slide .fnc-slide__mask {
    transition: transform 0.7s 1.13333s, opacity 0.35s 1.13333s, visibility 0s 1.13333s, filter 0.3s ease;
    transform: translate3d(0,0,0);
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 8px 32px rgba(235, 94, 40, 0.4));
}

.fnc-slide.m--previous-slide .fnc-slide__mask {
    transition: transform 0.7s 0.33333s, opacity 0.35s 1.33333s, visibility 0s 1.68333s;
    transform: rotate(10deg) translate3d(-200px,0,0);
    opacity: 0;
    visibility: hidden;
}

.fnc-slide__mask-inner {
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw;
    height: 100vh;
    margin-left: -50vw;
    margin-top: -50vh;
    background-size: cover;
    background-position: center center;
    background-blend-mode: normal;
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    transform-origin: 50% 16.5vh;
    transition-timing-function: ease-in-out;
}

.fnc-slide.m--before-sliding .fnc-slide__mask-inner {
    transform: translateY(0) rotate(10deg) translateX(-200px) translateZ(0);
}

.fnc-slide.m--active-slide .fnc-slide__mask-inner {
    transition: transform 0.7s 1.13333s;
    transform: translateX(0);
}

.fnc-slide.m--previous-slide .fnc-slide__mask-inner {
    transition: transform 0.7s 0.33333s, opacity 0.3s 1.33333s;
    transform: translateY(0) rotate(-10deg) translateX(200px) translateZ(0);
}

.fnc-slide__content {
    z-index: 2;
    position: absolute;
    left: 40%;
    top: 40%;
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--active-slide .fnc-slide__content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s 1s, visibility 0s 1s;
}

.fnc-slide.m--before-sliding .fnc-slide__content,
.fnc-slide.m--previous-slide .fnc-slide__content {
    opacity: 0;
    visibility: hidden;
}

.fnc-slide__heading {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fnc-slide__heading-line {
    overflow: hidden;
    position: relative;
    padding-right: 20px;
    font-size: 100px;
    color: #fff;
    word-spacing: 10px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.7),
        -1px -1px 4px rgba(0, 0, 0, 0.5);
}

.fnc-slide__heading-line:nth-child(2) {
    padding-left: 30px;
}

.fnc-slide:not(.m--active-slide) .fnc-slide__heading-line {
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--before-sliding .fnc-slide__heading-line {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--active-slide .fnc-slide__heading-line {
    transition: transform 0.6s 0.1s, opacity 0.3s 0.1s, visibility 0s 0.1s;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.fnc-slide.m--previous-slide .fnc-slide__heading-line {
    transition: transform 1.5s 0.2s, opacity 0.3s 1.5s, visibility 0s 1.8s;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.fnc-slide__heading-line span {
    display: block;
}

.fnc-slide:not(.m--active-slide) .fnc-slide__heading-line span {
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--before-sliding .fnc-slide__heading-line span {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--active-slide .fnc-slide__heading-line span {
    transition: transform 0.6s 0.1s, opacity 0.3s 0.1s, visibility 0s 0.1s;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.fnc-slide.m--previous-slide .fnc-slide__heading-line span {
    transition: transform 1.5s 0.2s, opacity 0.3s 1.5s, visibility 0s 1.8s;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.fnc-slide__action-btn {
    position: relative;
    margin-left: 200px;
    padding: 5px 15px;
    font-size: 20px;
    line-height: 1;
    color: transparent;
    border: none;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    text-align: center;
    outline: none;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
}

.fnc-slide.m--active-slide .fnc-slide__action-btn {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s 0.3s, visibility 0s 0.3s;
}

.fnc-slide:not(.m--active-slide) .fnc-slide__action-btn {
    opacity: 0;
    visibility: hidden;
}

.fnc-slide__action-btn span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.3s;
    transform-origin: 50% 0;
    line-height: 30px;
    color: #fff;
    text-shadow: 
        1px 1px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.8),
        -1px -1px 3px rgba(0, 0, 0, 0.6);
}

.fnc-slide__action-btn span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-top: none;
    border-bottom: none;
}

.fnc-slide__action-btn span:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 30px;
    background: var(--color-primary);
    opacity: 0;
    transform-origin: 50% 0;
    transform: translateY(100%) rotateX(-90deg);
    transition: opacity 0.15s 0.15s;
    text-shadow: 
        1px 1px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.8);
}

.fnc-slide__action-btn:hover span {
    transform: rotateX(90deg);
}

.fnc-slide__action-btn:hover span:after {
    opacity: 1;
    transition: opacity 0.15s;
}

.fnc-nav {
    z-index: 5;
    position: absolute;
    right: 0;
    bottom: 0;
}

.fnc-nav__bgs {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fnc-nav__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fnc-nav__bg.m--nav-bg-before {
    z-index: 2 !important;
    transform: translateX(100%);
}

.fnc-nav__bg.m--active-nav-bg {
    z-index: 1;
    transition: transform 1s 0.66667s;
    transform: translateX(0);
}

.fnc-nav__controls {
    font-size: 0;
}

.fnc-nav__control {
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100px;
    height: 50px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.5s;
}

.fnc-nav__control.m--active-control {
    background: var(--color-primary);
}

.fnc-nav__control-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: 0 50%;
    transform: scaleX(0);
    transition-timing-function: linear !important;
}

.m--with-autosliding .m--active-control .fnc-nav__control-progress {
    transform: scaleX(1);
}

.m--prev-control .fnc-nav__control-progress {
    transform: translateX(100%);
    transition: transform 0.5s !important;
}

.m--reset-progress .fnc-nav__control-progress {
    transform: scaleX(0);
    transition: transform 0s 0s !important;
}

.m--autosliding-blocked .fnc-nav__control-progress {
    transition: all 0s 0s !important;
    transform: scaleX(0) !important;
}

/* Color Themes */
.m--blend-green .fnc-slide__inner {
    background-color: lighten(#403D38, 20%);
}

.m--blend-green .fnc-slide__mask-inner {
    background: linear-gradient(135deg, rgba(64, 61, 56, 0.15) 0%, rgba(235, 94, 40, 0.1) 100%);
    box-shadow: inset 0 0 0 2px rgba(235, 94, 40, 0.2);
}

.m--navbg-green {
    background-color: #403D38;
}

.m--blend-dark .fnc-slide__inner {
    background-color: lighten(#252422, 20%);
}

.m--blend-dark .fnc-slide__mask-inner {
    background: linear-gradient(135deg, rgba(37, 36, 34, 0.15) 0%, rgba(64, 61, 56, 0.1) 100%);
    box-shadow: inset 0 0 0 2px rgba(235, 94, 40, 0.25);
}

.m--navbg-dark {
    background-color: #252422;
}

.m--blend-red .fnc-slide__inner {
    background-color: lighten(#EB5E28, 20%);
}

.m--blend-red .fnc-slide__mask-inner {
    background: linear-gradient(135deg, rgba(235, 94, 40, 0.2) 0%, rgba(208, 74, 31, 0.15) 100%);
    box-shadow: inset 0 0 0 2px rgba(235, 94, 40, 0.3);
}

.m--navbg-red {
    background-color: #EB5E28;
}

.m--blend-blue .fnc-slide__inner {
    background-color: lighten(#403D38, 20%);
}

.m--blend-blue .fnc-slide__mask-inner {
    background: linear-gradient(135deg, rgba(64, 61, 56, 0.15) 0%, rgba(37, 36, 34, 0.1) 100%);
    box-shadow: inset 0 0 0 2px rgba(235, 94, 40, 0.2);
}

.m--navbg-blue {
    background-color: #403D38;
}

/* Demo Container */
.demo-cont {
    overflow: hidden;
    position: relative;
    height: 100vh;
    perspective: 1500px;
    background: linear-gradient(135deg, #1a1917 0%, #252422 50%, #1a1917 100%);
}

/* Example Slider Background Images */
.example-slider .fnc-slide-1 .fnc-slide__inner,
.example-slider .fnc-slide-1 .fnc-slide__mask-inner {
    background-image: url('/assets/images/home/slider (4).jpg');
}

.example-slider .fnc-slide-2 .fnc-slide__inner,
.example-slider .fnc-slide-2 .fnc-slide__mask-inner {
    background-image: url('/assets/images/home/slider (3).jpg');
}

.example-slider .fnc-slide-3 .fnc-slide__inner,
.example-slider .fnc-slide-3 .fnc-slide__mask-inner {
    background-image: url('/assets/images/home/slider (2).jpg');
}

.example-slider .fnc-slide-4 .fnc-slide__inner,
.example-slider .fnc-slide-4 .fnc-slide__mask-inner {
    background-image: url('/assets/images/home/slider (1).jpg');
}

.fnc-slide__heading,
.fnc-slide__action-btn,
.fnc-nav__control {
    font-family: 'Montserrat', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .fnc-slide__heading-line {
        font-size: 50px;
        text-shadow: 
            1px 1px 6px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.7),
            0 2px 8px rgba(0, 0, 0, 0.8),
            -1px -1px 3px rgba(0, 0, 0, 0.6);
    }
    
    .fnc-slide__content {
        left: 20px;
        top: 30%;
    }
    
    .fnc-slide__action-btn {
        margin-left: 0;
        font-size: 16px;
    }
    
    .fnc-slide__action-btn span {
        text-shadow: 
            1px 1px 5px rgba(0, 0, 0, 0.95),
            0 0 12px rgba(0, 0, 0, 0.8),
            0 2px 6px rgba(0, 0, 0, 0.9);
    }
    
    .fnc-nav__control {
        width: 80px;
        font-size: 11px;
    }
}

/* Product Button Styles */
.product-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-highlight);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-highlight);
}

.product-btn:hover {
    background: var(--color-highlight-dark);
    border-color: var(--color-highlight-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--color-highlight-rgb), 0.3);
}

/* CTA Section Styles */
.cta-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.05), transparent);
}

.cta-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 2rem;
    padding-bottom: 1rem;
}

.cta-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom left;
    transition: transform 0.5s ease;
}

.cta-image-wrapper:hover .cta-image {
    transform: translateY(-5px);
}

.cta-content-wrapper {
    position: relative;
}

/* CTA Buttons */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-highlight);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn-primary:hover {
    background: var(--color-highlight-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-highlight-rgb), 0.4);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .cta-image-wrapper {
        min-height: 350px;
    }
    
    .cta-content-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-container {
        border-radius: 1rem;
    }
    
    .cta-image-wrapper {
        min-height: 250px;
    }
    
    .cta-content-wrapper {
        padding: 1.5rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }
}

/* Simple Button Hover Styles */
.btn-simple:hover {
    background: var(--color-highlight-dark) !important;
    border-color: var(--color-highlight-dark) !important;
    color: var(--color-white) !important;
}

.btn-simple[style*="border-color: var(--color-highlight)"]:hover {
    background: var(--color-highlight) !important;
    color: var(--color-white) !important;
}

/* New Service Cards */
.service-card-new {
    position: relative;
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.service-card-new:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: background 0.4s ease;
}

.service-card-new:hover .service-overlay {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-new:hover .service-content {
    transform: translateY(-20px);
}

.service-heading {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.4s ease;
}

.service-card-new:hover .service-heading {
    transform: translateY(-10px) scale(1.05);
    font-size: 2rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-highlight);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card-new:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-btn:hover {
    background-color: var(--color-highlight-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .service-card-new {
        height: 350px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-heading {
        font-size: 1.5rem;
    }
    
    .service-card-new:hover .service-heading {
        font-size: 1.75rem;
    }
}

/* Utility Classes for Colors and Backgrounds */
.bg-cream {
    background-color: var(--color-bg-cream);
}

.text-primary-dark {
    color: var(--color-primary-dark);
}

.text-primary {
    color: var(--color-primary);
}

.bg-secondary-10 {
    background-color: var(--color-secondary-10);
}

.border-secondary-30 {
    border-color: var(--color-secondary-30);
}

.bg-highlight {
    background-color: var(--color-highlight);
}

.text-highlight {
    color: var(--color-highlight);
}

.bg-highlight-gradient {
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.1), rgba(var(--color-highlight-rgb), 0.05));
}

.shadow-highlight {
    box-shadow: 0 4px 15px rgba(var(--color-highlight-rgb), 0.3);
}

/* Service Card Images - Removed gradient classes, now using img tags */

/* Feature Card Utilities */
.highlight-bg-hover {
    background: var(--color-highlight);
}

.highlight-gradient-bg {
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.1), rgba(var(--color-highlight-rgb), 0.05));
}

.text-white-custom {
    color: var(--color-white);
}

.opacity-90-custom {
    opacity: 0.90;
}

.opacity-96-custom {
    opacity: 0.96;
}

.opacity-85-custom {
    opacity: 0.85;
}

/* Icon Visibility Fix for Hover States */
.group:hover i.fas,
.group:hover i.far,
.group:hover i.fab {
    visibility: visible !important;
    opacity: 1 !important;
}

.group:hover i.fas.text-highlight-300,
.group:hover i.far.text-highlight-300,
.group:hover i.fab.text-highlight-300 {
    color: var(--color-primary) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.shine-effect {
    transition: transform 0.7s ease-in-out;
}

/* Additional Utilities */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.text-highlight-light {
    color: var(--color-highlight-light);
}

.bg-highlight-gradient-label {
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-highlight-light) 100%);
}

.border-highlight-30 {
    border-color: var(--color-highlight-30);
}

.bg-primary-dark {
    background-color: var(--color-primary-dark);
}

.border-primary {
    border-color: var(--color-primary);
}

.text-primary-light {
    color: var(--color-primary-light);
}

.text-secondary {
    color: var(--color-secondary);
}

.bg-white-opacity-20 {
    background: var(--color-white);
    opacity: 0.2;
}

.text-white-opacity-80 {
    color: var(--color-white);
    opacity: 0.8;
}

.text-white-opacity-90 {
    color: var(--color-white);
    opacity: 0.9;
}

.no-underline {
    text-decoration: none;
}

/* Why Choose Us Section Styles */
.why-choose-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.why-choose-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.why-choose-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.why-choose-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.why-choose-counters-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.why-choose-content span {
    display: inline-flex;
    width: fit-content;
    white-space: nowrap;
}

.why-choose-points {
    margin-top: 1rem;
}

.why-choose-point-item {
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-point-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: var(--color-highlight);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.why-choose-point-item:hover::before {
    height: 3rem;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-highlight-light));
}

.why-choose-point-item:hover {
    transform: translateX(4px);
}

.why-choose-point-item h3 {
    transition: color 0.3s ease;
}

.why-choose-point-item:hover h3 {
    color: var(--color-highlight);
}

/* Stat Cards Overlay */
.why-choose-stat-card-overlay {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.why-choose-stat-card-overlay:hover {
    border-color: var(--color-highlight);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 45px rgba(var(--color-highlight-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
}

.why-choose-stat-number-overlay {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-highlight);
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-stat-card-overlay:hover .why-choose-stat-number-overlay {
    color: var(--color-highlight);
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(var(--color-highlight-rgb), 0.3);
}

.why-choose-stat-label-overlay {
    font-size: 0.875rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.why-choose-stat-card-overlay:hover .why-choose-stat-label-overlay {
    color: var(--color-primary-dark);
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .why-choose-content {
        padding: 1rem 0;
    }
    
    .why-choose-image-wrapper {
        min-height: 450px;
    }
    
    .why-choose-main-image {
        min-height: 450px;
    }
    
    .why-choose-stat-number-overlay {
        font-size: 2.25rem;
    }
    
    .why-choose-stat-card-overlay {
        min-height: 130px;
        padding: 1.25rem 0.875rem;
    }
}

@media (max-width: 768px) {
    .why-choose-image-wrapper {
        min-height: 400px;
    }
    
    .why-choose-main-image {
        min-height: 400px;
    }
    
    .why-choose-counters-overlay {
        padding: 1.5rem;
    }
    
    .why-choose-stat-card-overlay {
        padding: 1rem 0.75rem;
        min-height: 120px;
    }
    
    .why-choose-stat-number-overlay {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .why-choose-stat-label-overlay {
        font-size: 0.75rem;
    }
}

/* Process Section Styles */
.process-content-wrapper {
    padding: 2rem 0;
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.process-step-number-circle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.process-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 2;
}

.process-step-connector {
    width: 2px;
    height: 120px;
    background-color: var(--color-primary-dark);
    margin-top: -1px;
    position: relative;
    z-index: 1;
}

.process-step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.process-step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.process-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 1.5rem;
}

.process-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process-image-wrapper:hover .process-image {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .process-content-wrapper {
        padding: 1rem 0;
    }
    
    .process-image-wrapper {
        height: 500px;
    }
    
    .process-steps-container {
        gap: 2.5rem;
    }
    
    .process-step-item {
        gap: 1.5rem;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
    
    .process-step-connector {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .process-image-wrapper {
        height: 400px;
    }
    
    .process-steps-container {
        gap: 2rem;
    }
    
    .process-step-item {
        gap: 1.25rem;
    }
    
    .process-step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .process-step-connector {
        height: 80px;
    }
    
    .process-step-title {
        font-size: 1.25rem;
    }
    
    .process-step-description {
        font-size: 0.9375rem;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    background: var(--color-primary-dark);
}

.contact-hero-section img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.quick-contact-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.quick-contact-card:hover {
    border-color: var(--color-highlight);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(var(--color-highlight-rgb), 0.15);
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.03), white);
}

.quick-contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.1), rgba(var(--color-highlight-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-contact-card:hover .quick-contact-icon {
    background: var(--color-highlight);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(var(--color-highlight-rgb), 0.3);
}

.quick-contact-content {
    flex: 1;
}

.quick-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.quick-contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    transition: color 0.3s ease;
}

.quick-contact-card:hover .quick-contact-value {
    color: var(--color-highlight);
}

.quick-contact-arrow {
    color: var(--color-highlight);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-contact-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    background: var(--color-bg-cream);
}

.contact-form-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Contact Form Labels */
.contact-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a; /* stronger contrast for visibility */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Force dark labels inside the contact form (overrides header/footer styles) */
.contact-form-section .contact-label {
    color: #0f172a !important;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-field-wrapper {
    position: relative;
}

/* Contact Form Inputs */
.contact-input {
    background: var(--color-white);
    border: 2px solid #e5e7eb;
    border-radius: 0.875rem;
    color: var(--color-primary-dark);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Oxygen', sans-serif;
    width: 100%;
}

.contact-input:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-input:focus {
    outline: none;
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 4px rgba(var(--color-highlight-rgb), 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    background: var(--color-white);
    transform: translateY(-2px);
}

.contact-input::placeholder {
    /* Better contrast (was too light on white) */
    color: #6b7280;
    opacity: 0.9;
}

.contact-input:disabled,
.contact-input[disabled] {
    background: #f9fafb;
    color: #6b7280;
}

/* Ensure select placeholder text is visible */
select.contact-input {
    color: var(--color-primary-dark);
}

select.contact-input:invalid {
    color: #6b7280;
    opacity: 0.9;
}

select.contact-input option[disabled] {
    color: #6b7280;
}

textarea.contact-input::placeholder {
    color: #6b7280;
    opacity: 0.9;
}

.contact-input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.contact-error-text {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Contact Form Select */
.contact-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.contact-input select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23EB5E28' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
}

/* Contact Form Textarea */
.contact-input textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Submit Button */
.contact-btn-submit {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-highlight-dark));
    color: var(--color-white);
    border: none;
    border-radius: 0.875rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(var(--color-highlight-rgb), 0.35);
}

.contact-btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.contact-btn-submit:hover {
    background: linear-gradient(135deg, var(--color-highlight-dark), var(--color-highlight));
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(var(--color-highlight-rgb), 0.5);
}

.contact-btn-submit:active {
    transform: translateY(-1px);
}

.contact-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-btn-submit i {
    transition: transform 0.3s ease;
}

.contact-btn-submit:hover i {
    transform: translateX(4px);
}

/* Honeypot Field */
.contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Contact Info Cards - Modern Style */
.contact-info-card-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-info-item-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.contact-info-icon-modern {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(var(--color-highlight-rgb), 0.2);
    border: 1px solid rgba(var(--color-highlight-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-info-item-modern:hover .contact-info-icon-modern {
    background: var(--color-highlight);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(var(--color-highlight-rgb), 0.4);
}

/* Legacy Contact Info Cards (for backward compatibility) */
.contact-info-card {
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.contact-icon-box {
    position: relative;
}

.contact-icon-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--color-highlight);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-icon-box::after {
    opacity: 0.1;
}

.contact-info-card:hover .contact-icon-box i {
    color: var(--color-highlight-dark);
    transform: scale(1.1);
}

/* Contact Map Wrapper */
.contact-map-wrapper {
    position: relative;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Form Message Styles */
#form-message {
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

#form-message.bg-green-50 {
    background-color: #f0fdf4;
    color: #166534;
    border-color: #86efac;
}

#form-message.bg-red-50 {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #fca5a5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .contact-form-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-icon-box {
        width: 3rem;
        height: 3rem;
    }
    
    .contact-input {
        font-size: 0.9375rem;
    }
    
    .contact-btn-submit {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
    }
    
    .contact-map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .quick-contact-card {
        padding: 1.25rem;
    }
    
    .quick-contact-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }
    
    .contact-info-item-modern {
        padding: 0.875rem;
    }
    
    .contact-info-icon-modern {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .quick-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .quick-contact-content {
        width: 100%;
    }
    
    .quick-contact-arrow {
        display: none;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card-modern {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .contact-map-wrapper iframe {
        height: 300px;
    }
    
    .quick-contact-card {
        padding: 1.25rem;
    }
    
    .quick-contact-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .quick-contact-value {
        font-size: 0.875rem;
    }
}

/* ============================================
   CAREER PAGE STYLES
   ============================================ */

/* Career Hero Section */
.career-hero-section {
    position: relative;
    background: var(--color-primary-dark);
}

.career-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Career Benefits Section */
.career-benefits-section {
    position: relative;
    background: var(--color-bg-cream);
}

/* Career Benefit Cards */
.career-benefit-card {
    position: relative;
    overflow: hidden;
}

.career-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.career-benefit-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

.career-benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.1), rgba(var(--color-highlight-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.career-benefit-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--color-highlight);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.career-benefit-card:hover .career-benefit-icon {
    background: var(--color-highlight);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(var(--color-highlight-rgb), 0.3);
}

.career-benefit-card:hover .career-benefit-icon::after {
    opacity: 0.1;
}

/* Career Form Section */
.career-form-section {
    position: relative;
    background: var(--color-bg-cream);
}

/* Career Form Labels */
.career-label {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.career-field-wrapper {
    position: relative;
}

/* Career Form Inputs */
.career-input {
    background: var(--color-white);
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    color: var(--color-primary-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Oxygen', sans-serif;
    width: 100%;
}

.career-input:focus {
    outline: none;
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 4px rgba(var(--color-highlight-rgb), 0.1);
    background: var(--color-white);
    transform: translateY(-1px);
}

.career-input::placeholder {
    color: #9ca3af;
    opacity: 0.6;
}

.career-input[style*="border-color: rgb(220, 38, 38)"],
.career-input[style*="border-color: #dc2626"] {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

/* Career Form Select */
.career-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.career-input select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23EB5E28' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
}

/* Career Submit Button */
.career-submit-btn {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-highlight-dark));
    color: var(--color-white);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(var(--color-highlight-rgb), 0.3);
}

.career-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.career-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.career-submit-btn:hover {
    background: linear-gradient(135deg, var(--color-highlight-dark), var(--color-highlight));
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(var(--color-highlight-rgb), 0.5);
}

.career-submit-btn:active {
    transform: translateY(-1px);
}

.career-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.career-submit-btn i {
    transition: transform 0.3s ease;
}

.career-submit-btn:hover i {
    transform: translateX(4px);
}

/* Career Message Styles */
#career-message {
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

#career-message[style*="background-color: rgba(34, 197, 94"] {
    background-color: #f0fdf4 !important;
    color: #16a34a !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

#career-message[style*="background-color: rgba(239, 68, 68"] {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .career-benefit-card {
        padding: 1.5rem;
    }
    
    .career-benefit-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .career-hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .career-benefits-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .career-form-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .career-benefit-card {
        padding: 1.25rem;
    }
    
    .career-benefit-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }
    
    .career-input {
        font-size: 0.9375rem;
        padding: 0.875rem 1rem;
    }
    
    .career-submit-btn {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .career-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .career-benefits-section h2 {
        font-size: 2rem;
    }
    
    .career-form-section h2 {
        font-size: 2rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    background: var(--color-primary-dark);
}

/* About Story Section */
.about-story-section {
    position: relative;
    background: var(--color-bg-cream);
}

/* About Content Sections (Vision, Approach, Process) */
.about-content-section {
    position: relative;
}

.about-content-text {
    display: flex;
    flex-direction: column;
}

.about-content-text h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
}

.about-content-image {
    position: relative;
}

.about-content-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-content-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .about-content-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .about-content-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .about-content-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-content-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

/* About Statistics Section */
.about-stats-section {
    position: relative;
    background: var(--color-primary-dark);
}

.about-stat-card {
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.about-stat-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.about-stat-icon {
    transition: transform 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-stat-number {
    transition: color 0.3s ease;
}

.about-stat-card:hover .about-stat-number {
    color: var(--color-highlight);
}

.about-stat-label {
    transition: color 0.3s ease;
}

.about-stat-card:hover .about-stat-label {
    color: white;
    opacity: 1;
}

/* About Mission Section */
.about-mission-section {
    position: relative;
    background: var(--color-bg-cream);
}

.about-mission-card {
    position: relative;
    transition: all 0.3s ease;
}

.about-mission-card:hover {
    transform: translateY(-4px);
}

/* About Values Section */
.about-values-section {
    position: relative;
    background: var(--color-primary-dark);
}

.about-value-card {
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.about-value-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

.about-value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--color-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.about-value-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    background: var(--color-highlight-dark);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(var(--color-highlight-rgb), 0.5);
}

.about-value-card:hover .about-value-icon::after {
    opacity: 0.2;
}

/* About Timeline Section */
.about-timeline-section {
    position: relative;
    background: var(--color-primary-dark);
}

.about-timeline-container {
    position: relative;
}

.about-timeline-item {
    position: relative;
}

.about-timeline-dot {
    transition: all 0.3s ease;
}

.about-timeline-item:hover .about-timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(var(--color-highlight-rgb), 0.5);
}

.about-timeline-content {
    transition: all 0.3s ease;
}

.about-timeline-item:hover .about-timeline-content {
    border-color: var(--color-highlight);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* About Network Section */
.about-network-section {
    position: relative;
    background: var(--color-primary-dark);
}

.about-network-visual {
    transition: all 0.3s ease;
}

.about-network-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Technology Section */
.about-technology-section {
    position: relative;
    background: var(--color-primary-dark);
}

.about-tech-card {
    position: relative;
    overflow: hidden;
}

.about-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.about-tech-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* About Certifications Section */
.about-certifications-section {
    position: relative;
    background: var(--color-primary);
}

.about-cert-card {
    position: relative;
    transition: all 0.3s ease;
}

.about-cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.about-cert-card:hover::before {
    opacity: 1;
}

/* About Commitment Section */
.about-commitment-section {
    position: relative;
    background: var(--color-bg-cream);
}

.about-commitment-item {
    position: relative;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-commitment-item:hover {
    transform: translateY(-5px);
}

/* About Testimonials Section */
.about-testimonials-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 50%, var(--color-secondary-light) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.about-testimonial-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.1) 0%, rgba(var(--color-highlight-rgb), 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-quote-icon i {
    font-size: 1.25rem;
    color: var(--color-highlight);
}

.about-testimonial-card:hover .testimonial-quote-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(var(--color-highlight-rgb), 0.2) 0%, rgba(var(--color-highlight-rgb), 0.1) 100%);
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-highlight-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(var(--color-highlight-rgb), 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.about-testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--color-highlight-rgb), 0.4);
}

.about-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-highlight) 0%, var(--color-highlight-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(var(--color-highlight-rgb), 0.5);
}

.about-testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--color-highlight-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-testimonial-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.about-testimonial-card:hover::after {
    opacity: 1;
}

.about-testimonial-card:hover {
    border-color: var(--color-highlight) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 20px 60px rgba(var(--color-highlight-rgb), 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px) scale(1.02);
}

/* Testimonials Horizontal Scrolling */
.testimonials-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    z-index: 2;
}

.testimonials-scroll-container {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    animation: scroll-testimonials 40s linear infinite;
    padding: 0.5rem 0;
}

.testimonials-scroll-container:hover {
    animation-play-state: paused;
}

.about-testimonial-card {
    min-width: 350px;
    max-width: 350px;
    width: 100%;
}

.about-testimonial-card .fa-star {
    filter: drop-shadow(0 2px 4px rgba(var(--color-highlight-rgb), 0.3));
    transition: all 0.3s ease;
}

.about-testimonial-card:hover .fa-star {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(var(--color-highlight-rgb), 0.5));
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

/* Responsive adjustments for testimonials scrolling */
@media (max-width: 768px) {
    .about-testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .testimonials-scroll-container {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .about-testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .testimonial-quote-icon {
        width: 2.5rem;
        height: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .testimonial-quote-icon i {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
    
    .testimonials-scroll-wrapper {
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 3%,
            black 97%,
            transparent 100%
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 3%,
            black 97%,
            transparent 100%
        );
    }
}

/* About CTA Section */
.about-cta-section {
    position: relative;
    background: var(--color-bg-cream);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-stat-card {
        padding: 1.5rem;
    }
    
    .about-stat-number {
        font-size: 3rem;
    }
    
    .about-value-card {
        padding: 1.5rem;
    }
    
    .about-value-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
    
    .about-mission-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .about-story-section,
    .about-stats-section,
    .about-mission-section,
    .about-values-section,
    .about-cta-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .about-stat-card {
        padding: 1.25rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-stat-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .about-value-card {
        padding: 1.25rem;
    }
    
    .about-value-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }
    
    .about-mission-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .about-timeline-content {
        padding: 1.25rem;
    }
    
    .about-network-visual {
        padding: 2rem;
    }
    
    .about-tech-card {
        padding: 1.5rem;
    }
    
    .about-cert-card {
        padding: 1.25rem;
    }
    
    .about-testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-timeline-section,
    .about-network-section,
    .about-technology-section,
    .about-certifications-section,
    .about-testimonials-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .about-timeline-dot {
        left: 1rem !important;
        transform: none !important;
    }
    
    .about-timeline-container > div::before {
        left: 1rem !important;
        transform: none !important;
    }
    
    .about-network-visual {
        padding: 1.5rem;
    }
    
    .about-tech-card {
        padding: 1.25rem;
    }
    
    .about-cert-card {
        padding: 1rem;
    }
    
    .about-testimonial-card {
        padding: 1.25rem;
    }
}

/* Services Page Styles */
.services-hero-section {
    position: relative;
    background: var(--color-primary-dark);
}

.services-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-overview-section {
    position: relative;
    background: var(--color-bg-cream);
}

.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-highlight);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-icon-wrapper {
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-icon-wrapper {
    transform: rotate(5deg);
}

.services-features-section {
    position: relative;
    background: var(--color-primary-dark);
}

.service-feature-card {
    position: relative;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.services-process-section {
    position: relative;
    background: var(--color-bg-cream);
}

.service-process-step {
    position: relative;
}

.service-process-step:last-child .service-process-step::after {
    display: none;
}

.services-cta-section {
    position: relative;
    background: var(--color-primary-dark);
}

@media (max-width: 1024px) {
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .service-feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-detail-card {
        flex-direction: column;
    }
    
    .service-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .service-process-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .about-hero-section h1,
    .services-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-story-section h2,
    .about-stats-section h2,
    .about-values-section h2,
    .about-timeline-section h2,
    .about-network-section h2,
    .about-technology-section h2,
    .about-certifications-section h2,
    .about-testimonials-section h2,
    .about-cta-section h2,
    .services-overview-section h2,
    .services-features-section h2,
    .services-process-section h2,
    .services-cta-section h2 {
        font-size: 2rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-stat-label {
        font-size: 0.875rem;
    }
    
    .about-timeline-content {
        padding: 1rem;
    }
    
    .about-tech-card h3 {
        font-size: 1.125rem;
    }
    
    .about-cert-card h3 {
        font-size: 0.875rem;
    }
    
    .service-detail-card {
        padding: 1.25rem;
    }
    
    .service-feature-card {
        padding: 1.25rem;
    }
}

/* ============================================
   NEW SERVICES SECTION STYLES
   ============================================ */
.services-section-new {
  padding-block: min(20vh, 2rem);
  width: 100%;
  margin-inline: auto;
  color: #111;
  background: var(--color-bg-cream);
  padding: 4rem 1rem;
  position: relative;
}

.services-header {
  max-width: calc(min(76.5rem, 90%));
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding: 0 1rem;
  position: relative;
}

.services-header-left {
  flex: 1;
  min-width: 0;
}

.services-section-new h2 {
  text-transform: capitalize;
  letter-spacing: 0.025em;
  font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
  margin: 0;
  text-align: left;
  color: var(--color-primary-dark);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.services-header-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.services-section-new a {
  display: inline-block;
  text-decoration: none;
}

.services-scroll-wrapper {
  position: relative;
  width: 100%;
  max-width: calc(min(76.5rem, 90%));
  margin: 0 auto;
  padding: 0 1rem;
}

/* Owl Carousel Custom Styles */
.services-carousel.owl-carousel {
  position: relative;
}

.services-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 1rem 0;
}

.services-carousel .owl-item {
  padding: 0 0.5rem;
}

.services-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.services-section-new .card {
  transition: transform 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.services-section-new .card:hover {
  transform: translateY(-5px);
}

.services-section-new .card:nth-child(1) .box .icon .iconBox {
  background: var(--color-primary);
}
/* 
.services-section-new .card:nth-child(2) .box .icon .iconBox {
  background: #70b3b1;
}

.services-section-new .card:nth-child(3) .box .icon .iconBox {
  background: #d05fa2;
}

.services-section-new .card:nth-child(4) .box .icon .iconBox {
  background: #d3b19a;
}

.services-section-new .card:nth-child(5) .box .icon .iconBox {
  background: #70b3b1;
}

.services-section-new .card:nth-child(6) .box .icon .iconBox {
  background: #d05fa2;
}

.services-section-new .card:nth-child(7) .box .icon .iconBox {
  background: #d3b19a;
} */

.services-section-new .card .content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 8rem;
}

.services-section-new .card .content h3 {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
  margin-bottom: 0.625rem;
  color: var(--color-primary-dark);
  font-family: 'Montserrat', sans-serif;
}

.services-section-new .card .content p {
  margin: 0.625rem 0 0;
  color: #565656;
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}

.services-section-new .card-inner {
  position: relative;
  width: 100%;
  height: 20rem;
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.services-section-new .card-inner .box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.services-section-new .card-inner .box .imgBox {
  position: absolute;
  inset: 0;
}

.services-section-new .card-inner .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section-new .card-inner .box .icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;
}

.services-section-new .card-inner .box .icon:hover .iconBox {
  transform: scale(1.1);
}

.services-section-new .card-inner .box .icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.services-section-new .card-inner .box .icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

.services-section-new .card-inner .box .icon .iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
  z-index: 2;
}

.services-section-new .card-inner .box .icon .iconBox span {
  color: #fff !important;
  font-size: 1.5rem;
  display: inline-block;
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Owl Carousel Navigation Buttons */
.services-header-right.owl-nav {
  position: relative;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
  top: 0;
  right: 0;
}

.services-header-right.owl-nav button {
  background: var(--color-highlight) !important;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 0 !important;
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.9;
  padding: 0;
  margin: 0;
}

.services-header-right.owl-nav button:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--color-highlight-rgb), 0.4);
  background: var(--color-highlight-dark) !important;
}

.services-header-right.owl-nav button:active {
  transform: scale(0.95);
}

.services-header-right.owl-nav button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.services-header-right.owl-nav button span {
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  color: white !important;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  visibility: visible !important;
  opacity: 1 !important;
}

.services-header-right.owl-nav button.owl-prev {
  margin-right: 0;
}

.services-header-right.owl-nav button.owl-next {
  margin-left: 0;
}

@media (max-width: 768px) {
  .services-section-new {
    padding: 2rem 1rem;
  }
  
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .services-header-right.owl-nav {
    align-self: flex-end;
  }
  
  .services-scroll-wrapper {
    padding: 0;
  }
  
  .services-header-right.owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .services-header-right.owl-nav button span {
    font-size: 1.5rem;
  }
  
  .services-section-new h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .services-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .services-scroll-wrapper {
    padding: 0;
  }
  
  .services-header-right.owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .services-header-right.owl-nav button span {
    font-size: 1.25rem;
  }
  
  .services-section-new h2 {
    font-size: 1.5rem;
  }
}

/* Directors Section Styles */
.directors-section {
    position: relative;
}

.director-simple {
    position: relative;
}

.director-simple-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.director-simple-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
}

.director-simple-avatar {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 4rem;
}

.director-simple-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.director-simple-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.director-simple-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-simple-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.director-simple-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.director-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--color-primary-dark);
    opacity: 0.7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .director-simple-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .director-simple-image {
        width: 180px;
        height: 180px;
    }
    
    .director-simple-avatar {
        font-size: 3.5rem;
    }
    
    .director-simple-name {
        font-size: 1.75rem;
    }
    
    .director-simple-info {
        justify-content: center;
        gap: 1.5rem;
  }
}
