.elementor-9 .elementor-element.elementor-element-c087b1a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2653d06 *//* Header Styles - Enhanced with Animations */
.sph-header * {
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* Announcement bar with slide animation */
.sph-announcement {
    background: linear-gradient(135deg, #0f121f, #1a1f30);
    color: #e0e7ff;
    padding: 0.3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    z-index: 101;
}

.sph-announcement-left,
.sph-announcement-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sph-announcement i {
    color: #70e1f5;
    font-size: 0.9rem;
    animation: pulseLight 2s infinite;
}

@keyframes pulseLight {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Main header */
.sph-header {
    background: linear-gradient(135deg, #1a1e2b, #2d3349, #3a405b);
    color: #fff;
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
    width: 100%;
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
}

.sph-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo with animation */
.sph-logo {
    flex-shrink: 0;
}

.sph-logo img {
    max-width: 180px;
    height: auto;
    display: block;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sph-logo img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px rgba(112,225,245,0.3));
}

/* Desktop Navigation - Next to Logo */
.sph-nav {
    flex: 1;
    margin-left: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sph-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.sph-nav li {
    position: relative;
}

.sph-nav a {
    color: #eef2ff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    display: inline-block;
    transition: all 0.2s ease;
    font-size: 1rem;
    position: relative;
}

.sph-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #70e1f5, #ffd194);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.sph-nav a:hover::after {
    width: 100%;
}

.sph-nav a:hover {
    color: #ffffff;
}

/* Desktop dropdown */
.sph-nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(37, 43, 61, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 190px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sph-nav ul ul li {
    width: 100%;
}

.sph-nav ul ul a {
    padding: 0.6rem 1.2rem;
    width: 100%;
    color: #d1d9f0;
    font-size: 0.9rem;
    display: block;
}

.sph-nav ul ul a::after {
    display: none;
}

.sph-nav ul ul a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    padding-left: 1.5rem;
}

.sph-nav li:hover > ul {
    display: block;
}

/* Desktop contact pills */
.sph-contact {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sph-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #f0f4ff;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.sph-contact-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffd194;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sph-contact-item i {
    color: #ffd194;
    font-size: 1rem;
    transition: transform 0.2s;
}

.sph-contact-item:hover i {
    transform: scale(1.1);
}

.sph-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.sph-contact-item a:hover {
    text-decoration: underline;
    color: #ffd194;
}

/* ===== HAMBURGER MENU (Mobile Only) ===== */
.sph-mobile-actions {
    display: none;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sph-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.2s;
}

.sph-hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sph-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
    background: #ffd194;
}

.sph-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sph-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
    background: #ffd194;
}

.sph-hamburger:hover span {
    background: #70e1f5;
}

/* Mobile contact pills */
.sph-mobile-contact {
    display: none;
    align-items: center;
    gap: 0.6rem;
}

.sph-mobile-contact .sph-contact-item {
    background: rgba(255,255,255,0.08);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

.sph-mobile-contact .sph-contact-item i {
    font-size: 0.85rem;
}

/* Mobile Navigation Overlay */
.sph-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(145deg, #1a1e2b, #2d3349);
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.sph-mobile-nav.active {
    right: 0;
}

.sph-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sph-mobile-nav li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sph-mobile-nav.active li {
    opacity: 1;
    transform: translateX(0);
}

.sph-mobile-nav.active li:nth-child(1) { transition-delay: 0.05s; }
.sph-mobile-nav.active li:nth-child(2) { transition-delay: 0.1s; }
.sph-mobile-nav.active li:nth-child(3) { transition-delay: 0.15s; }
.sph-mobile-nav.active li:nth-child(4) { transition-delay: 0.2s; }
.sph-mobile-nav.active li:nth-child(5) { transition-delay: 0.25s; }

.sph-mobile-nav a {
    color: #eef2ff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s ease;
}

.sph-mobile-nav a:hover {
    color: #ffd194;
    padding-left: 10px;
}

/* Overlay background */
.sph-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sph-menu-overlay.active {
    display: block;
    animation: overlayFadeIn 0.3s ease forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE: Mobile Styles ===== */
@media (max-width: 1024px) {
    .sph-nav ul {
        gap: 1.2rem;
    }
    
    .sph-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    /* Hide desktop contact and move to right */
    .sph-contact {
        display: none;
    }
    
    /* Show mobile elements */
    .sph-mobile-actions {
        display: flex;
        align-items: center;
    }
    .sph-mobile-contact {
        display: flex;
    }
    .sph-hamburger {
        display: flex;
    }
    
    /* Adjust header layout for tablet/mobile */
    .sph-header {
        padding: 0.6rem 1rem;
    }
    
    .sph-header-container {
        justify-content: space-between;
    }
    
    .sph-logo img {
        max-width: 120px;
    }
    
    .sph-nav {
        display: none;
    }
    
    .sph-announcement {
        padding: 0.3rem 1rem;
        font-size: 0.65rem;
        gap: 0.5rem;
        justify-content: center;
    }
    .sph-announcement-left,
    .sph-announcement-right {
        font-size: 0.65rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .sph-mobile-contact {
        gap: 0.4rem;
    }
    .sph-mobile-contact .sph-contact-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    .sph-mobile-contact .sph-contact-item i {
        font-size: 0.75rem;
    }
    .sph-announcement {
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }
    .sph-logo img {
        max-width: 85px;
    }
    .sph-hamburger {
        width: 26px;
        height: 19px;
    }
    .sph-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
    }
    .sph-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }
}

/* Landscape orientation */
@media (max-width: 900px) and (orientation: landscape) {
    .sph-mobile-nav {
        padding: 3rem 1.5rem 1.5rem;
    }
    .sph-mobile-nav a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .sph-announcement-left,
    .sph-announcement-right,
    .sph-logo img,
    .sph-contact,
    .sph-mobile-actions,
    .sph-nav,
    .sph-mobile-nav li {
        animation: none;
        transition: none;
    }
    
    .sph-mobile-nav {
        transition: right 0.2s;
    }
}/* End custom CSS */