
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
    

    #loadingScreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    
  
    #loadingScreen::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /*background: rgba(14, 145, 158, 0.75);*/
        background: linear-gradient(135deg, rgba(4, 31, 58, 0.85) 0%, rgba(14, 145, 158, 0.75) 50%, rgba(108, 196, 214, 0.65) 100%);
        z-index: 1;
    }
    

    #loadingScreen > * {
        position: relative;
        z-index: 2;
    }
    
    #loadingScreen.hidden {
        opacity: 0;
        visibility: hidden;
    }
    
    .loading-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
        animation: logoFloat 2s ease-in-out infinite;
    }
    
    .loading-text {
        color: white;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        opacity: 0;
        animation: textFadeIn 1s ease-out 0.5s forwards;
    }
    
    .loading-subtitle {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 1.2rem;
        opacity: 0;
        animation: textFadeIn 1s ease-out 1s forwards;
    }
    
    .loading-progress {
        width: 300px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        margin-top: 1.2rem;
        overflow: hidden;
    }
    
    .loading-progress-bar {
        height: 100%;
        background: white;
        border-radius: 2px;
        width: 0%;
        animation: progressFill 3s ease-out forwards;
    }
    
    @keyframes logoFloat {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes textFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
        from {
            opacity: 0;
            transform: translateY(20px);
        }
    }
    
    @keyframes progressFill {
        0% { width: 0%; }
        25% { width: 30%; }
        50% { width: 60%; }
        75% { width: 85%; }
        100% { width: 100%; }
    }

    #mainContent {
        opacity: 0;
        transition: opacity 0.8s ease;
    }
    
    #mainContent.loaded {
        opacity: 1;
    }
   
    .fade-in {
        opacity: 0;
        animation: fadeIn 0.6s ease-out forwards;
    }
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
    
    .hover-lift {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .btn-hover {
        transition: all 0.2s ease;
    }
    .btn-hover:hover {
        transform: translateY(-1px);
    }
 
    .swiper-container {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide {
        background-position: center;
        background-size: cover;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }
    
    .hero-swiper .swiper-pagination-bullet-active {
        background: #fff;
    }
   
    html {
        scroll-behavior: smooth;
    }
   
    @media (max-width: 1024px) {
        
        .mobile-menu-open .logo-section,
        .mobile-menu-open .login-section {
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
     
        #mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 60;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        #mobile-menu.open {
            transform: translateY(0);
        }
        
        #mobile-menu a {
            display: block;
            padding: 20px;
            margin: 8px 0;
            font-size: 18px;
            font-weight: 500;
            color: #486484;
            text-decoration: none;
            transition: color 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
            width: 80%;
            max-width: 300px;
        }
        
        #mobile-menu a:hover {
            color: #0e919e;
        }
        
        #mobile-menu a:last-child {
            border-bottom: none;
        }
        
       
        .menu-toggle {
            position: relative;
            z-index: 70;
            transition: all 0.3s ease;
        }
        
        .menu-toggle .hamburger {
            display: block;
            transition: opacity 0.3s ease;
        }
        
        .menu-toggle .close {
            display: none;
            transition: opacity 0.3s ease;
        }
        
        .menu-toggle.active .hamburger {
            display: none;
        }
        
        .menu-toggle.active .close {
            display: block;
        }
    }
  
    #cookieConsent {
        z-index: 9999;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    #cookieConsent.hidden {
        transform: translateY(100%);
    }
    
    img {
        loading: lazy;
    }
    .hero-swiper img:first-child {
        loading: eager;
    }
  
    input:focus, textarea:focus {
        outline: none;
        ring: 2px;
        ring-color: #0e919e;
        border-color: #0e919e;
    }
   
    .counter {
        transition: all 0.3s ease;
    }
    /* PWA Install Button */
    .pwa-install-btn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #0e919e;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        cursor: pointer;
        z-index: 100;
        transition: all 0.2s ease;
    }
    .pwa-install-btn:hover {
        background: #041f3a;
        transform: translateY(-2px);
    }
    .pwa-install-btn.show {
        display: block;
    }
    /* Back to top button */
    .back-to-top {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: #041f3a;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
    .back-to-top:hover {
        background: #0e919e;
        transform: translateY(-2px);
    }
  
    .whatsapp-btn {
        position: fixed;
        bottom: 90px;
        right: 20px;
        background: #25D366;
        color: white;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 90;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
    }
    .whatsapp-btn.show {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    .whatsapp-btn:hover {
        background: #128C7E;
        transform: scale(1.05);
        color: white;
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    }
    .whatsapp-btn i {
        font-size: 22px;
    }
    /* WhatsApp notification popup */
    .whatsapp-notification {
        position: fixed;
        bottom: 90px;
        right: 85px;
        background: white;
        border-radius: 12px;
        padding: 12px 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 95;
        opacity: 0;
        visibility: hidden;
        transform: translateX(20px) scale(0.9);
        transition: all 0.3s ease;
        max-width: 250px;
        border-left: 4px solid #25D366;
    }
    .whatsapp-notification.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
    }
    .whatsapp-notification::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    .whatsapp-notification .close-btn {
        position: absolute;
        top: 4px;
        right: 8px;
        background: none;
        border: none;
        color: #999;
        cursor: pointer;
        font-size: 14px;
        padding: 2px;
        line-height: 1;
    }
    .whatsapp-notification .close-btn:hover {
        color: #666;
    }
    .whatsapp-notification h4 {
        margin: 0 0 4px 0;
        font-size: 14px;
        font-weight: 600;
        color: #25D366;
    }
    .whatsapp-notification p {
        margin: 0;
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }
    
    @keyframes whatsappPulse {
        0% {
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
    .whatsapp-btn.pulse {
        animation: whatsappPulse 2s infinite;
    }
    
    @media (max-width: 768px) {
        .loading-text {
            font-size: 2rem;
        }
        
        .loading-subtitle {
            font-size: 1rem;
        }
        
        .loading-progress {
            width: 250px;
        }
        
        .whatsapp-btn {
            bottom: 80px;
            right: 15px;
            width: 52px;
            height: 52px;
        }
        
        .whatsapp-btn i {
            font-size: 20px;
        }
        
        .whatsapp-notification {
            bottom: 80px;
            right: 75px;
            max-width: 200px;
            padding: 10px 12px;
        }
        
        .whatsapp-notification h4 {
            font-size: 13px;
        }
        
        .whatsapp-notification p {
            font-size: 11px;
        }
        
        .back-to-top {
            bottom: 15px;
            left: 15px;
            width: 45px;
            height: 45px;
        }
        
        .pwa-install-btn {
            bottom: 15px;
            right: 15px;
            padding: 10px 16px;
            font-size: 14px;
        }
    }
   
    .hero-buttons {
        position: relative;
        z-index: 20;
    }
  
    body.menu-open {
        overflow: hidden;
    }
    
    
    
  
    /* Animation for continuous sliding */
    .animate-slide {
        display: flex;
        width: max-content;
        animation: slide 36s linear infinite;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause animation on hover */
    .animate-slide:hover {
        animation-play-state: paused;
    } 





/* Google Translate Widget Styling */
#google_translate_element {
    max-width: 200px;
    margin: 0 auto;
}

.goog-te-combo {
    width: 100% !important;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #486484;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    color: #486484 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #google_translate_element {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    #google_translate_element {
        max-width: 150px;
    }
}
