 body {
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f5f5f5;
            font-family: 'Arial', sans-serif;
            overflow: hidden;
            background: linear-gradient(-45deg, #f4f4f4, #ffffff, #eef1ee, #dadfda);
            background-size: 400% 400%;
            animation: gradientBG 8s ease infinite;
        }

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

        .logo-container {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .logo {
            width: 180px;
            height: 180px;
            background-color: #003c32;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }

        .logo::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                transparent 0deg,
                transparent 180deg,
                #e4c9aa 180deg,
                #e4c9aa 270deg,
                transparent 270deg,
                transparent 360deg
            );
            animation: rotate 3s linear infinite;
        }

        .logo::after {
            content: '';
            position: absolute;
            width: 170px;
            height: 170px;
            background-color: #003c32;
            border-radius: 50%;
        }

        .logo-text {
            position: relative;
            z-index: 2;
            font-size: 32px;
            font-weight: bold;
            color: #e4c9aa;
        }

        .text-muted {
            color: #e4c9aa !important;
            font-size: 12px;
            position: relative;
            z-index: 2;
        }

        .logo-image {
            position: relative;
            z-index: 2;
            width: 60px;
            height: 60px;
            margin-bottom: 1px;
        }

        .tagline {
            margin-top: 20px;
            font-size: 18px;
            color: #666;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInOut 2.5s infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeInOut {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .particle {
            position: absolute;
            background-color: #003c32;
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }

        .loading-bar {
            width: 200px;
            height: 4px;
            background-color: #e0e0e0;
            margin: 30px auto 0;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .loading-progress {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            background-color: #003c32;
            animation: loading 3s ease-in-out infinite;
        }

        @keyframes loading {
            0% { width: 0%; left: 0; }
            50% { width: 100%; left: 0; }
            100% { width: 0%; left: 100%; }
        }

        .marquee {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            background-color: #003c32;
            color: white;
            padding: 5px 0;
            z-index: 3;
        }

        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
            transform: translateX(100%);
        }

        .marquee-item {
            margin-right: 40px;
            font-size: 14px;
            text-transform: uppercase;
        }

        .marquee:hover .marquee-content {
  animation-play-state: paused;
}

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        
        
        
        
        .social-container {
    position: fixed;
    right: 20px;
    bottom: 60px;
    z-index: 1000;
    width: 60px;
    height: 60px;
}

.social-trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003c32, #128C7E);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 2;
}

.social-trigger i {
    font-size: 18px;
    margin-bottom: 2px;
}

.social-trigger:hover {
    transform: scale(1.1);
}

.social-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

.social-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transform-origin: center center;
}

/* Show icons when .social-container has .open class */
.social-container.open .social-icon {
    opacity: 1;
    pointer-events: auto;
}



/* Half-circle pattern with increased spacing */
.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    bottom: 0;
    right: 0;
}



.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    bottom: 0;
    right: 0;
}

.social-icon.pinterest {
    background: #E60023;
    bottom: 0;
    right: 0;
}



.social-icon.twitter {
    background: #1DA1F2;
    bottom: 0;
    right: 0;
}

/* Half-circle animation with increased spacing when .open */
.social-container.open .social-icon.whatsapp {
    transform: translateY(-70px);
}


.social-container.open .social-icon.instagram {
    transform: translateX(-60px) translateY(-40px);
}

.social-container.open .social-icon.pinterest {
    transform: translateX(-61px) translateY(20px);
}



.social-container.open .social-icon.twitter {
    transform: translateY(50px);
}

/* Media query for smaller screens */
@media (max-width: 576px) {
    .social-container {
        right: 10px;
        
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .social-container.open .social-icon.whatsapp {
        transform: translateX(-10px) translateY(-65px);
    }
    
 
    
    .social-container.open .social-icon.instagram {
        transform: translateX(-62px) translateY(-35px);
    }
    
    .social-container.open .social-icon.pinterest {
        transform: translateX(-61px) translateY(15px);
    }
    

    
    .social-container.open .social-icon.twitter {
        transform: translateX(-10px) translateY(40px);
    }
}