



/* Responsive styles for smaller screens */
@media (max-width: 768px) {

    /* Adjust container positioning */
    #expandable-bubble {
        bottom: 10px;
        /* Bring closer to the screen edge */
        left: 10px;
    }

    /* Primary button adjustments */
    .primary-bubble {
        font-size: 12px;
        /* Smaller text size */
        padding: 8px 15px;
        /* Smaller padding */
        border-radius: 20px;
        /* Slightly smaller rounded corners */
        width: auto;
        /* Allow the button to shrink if needed */
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        /* Adjust shadow size */
    }

    /* Adjust flashing text size */
    .flashing-text {
        font-size: 12px;
        /* Slightly smaller font */
        letter-spacing: 0.8px;
        /* Reduce spacing */
    }

    /* Social icons adjustments */
    .social-icons .icon {
        width: 40px;
        /* Smaller icon size */
        height: 40px;
        font-size: 20px;
        /* Adjust icon size */
    }

    .social-icons {
        gap: 8px;
        /* Reduce spacing between icons */
    }
}

/* Ultra-small screens (e.g., phones in portrait mode) */
@media (max-width: 480px) {
    #expandable-bubble {
        bottom: 5px;
        /* Further adjust position */
        left: 5px;
    }

    .primary-bubble {
        font-size: 10px;
        /* Even smaller text */
        padding: 6px 12px;
        /* Tighter padding */
    }

    .social-icons .icon {
        width: 35px;
        /* Smaller icons */
        height: 35px;
        font-size: 18px;
    }
}


/* Primary button styling */
.primary-bubble {
    width: auto;
    /* Adjust width to fit the text */
    padding: 10px 20px;
    /* Add padding for button look */
    background: linear-gradient(45deg, #0077b5, #00bfff);
    /* Gradient background */
    color: white;
    border: 2px solid white;
    /* Add a white border */
    border-radius: 25px;
    /* Rounded edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary-bubble:hover {
    background: linear-gradient(45deg, #00bfff, #0077b5);
    /* Reverse gradient on hover */
    transform: translateY(-3px);
    /* Slight lift on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Deeper shadow on hover */
}

/* Flashing text (remains the same) */
.flashing-text {
    animation: flash 1.5s infinite;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Flashing text effect for "Contact Us" */
.flashing-text {
    animation: flash 1.5s infinite;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Keyframes for flashing animation */
@keyframes flash {

    0%,
    100% {
        color: white;
        text-shadow: 0 0 5px #0077b5, 0 0 10px #0077b5;
    }

    50% {
        color: #f1f1f1;
        text-shadow: 0 0 15px #00bfff, 0 0 30px #00bfff;
    }
}

/* Container for the expandable bubble */
#expandable-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    /* Social icons will expand upwards */
    align-items: center;
    gap: 15px;
}



.primary-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Hidden social icons container */
.social-icons {
    display: none;
    /* Hidden initially */
    flex-direction: column;
    /* Expand upwards */
    gap: 10px;
}

/* Social media icon styles */
.social-icons .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons .whatsapp {
    background-color: #25d366;
}

.social-icons .facebook {
    background-color: #3b5998;
}

.social-icons .instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285aeb);
}

.social-icons .linkedin {
    background-color: #0077b5;
}



.social-icons img {
    width: 40px;
    /* Adjust the size */
    height: 40px;
    margin: 10px;
    /* Adjust spacing */
}



    /* Scroll to Top Button Styles */
    #scrollToTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: #007BFF;
        /* Circle background color */
        color: #fff;
        /* Arrow color */
        border-radius: 50%;
        /* Makes it circular */
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        /* Keeps it on top */
    }

    #scrollToTop i {
        font-size: 20px;
        /* Arrow size */
    }

    /* Show button when visible */
    #scrollToTop.show {
        opacity: 1;
        visibility: visible;
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

    body {
        margin: 0;
        background-color: #2e2c2c;
        color: #eee;
    }

    svg {
        width: 25px;
    }

    /* CSS slider */
    .slider {
        height: 100vh;
        margin-top: -50px;
        position: relative;
    }

    .slider .list .item {
        position: absolute;
        inset: 0 0 0 0;
        overflow: hidden;
        opacity: 0;
        transition: .5s;
    }

    .slider .list .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider .list .item::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        background-image: linear-gradient(to top, #000 10%, transparent);
    }

    .slider .list .item .content {
        position: absolute;
        left: 10%;
        top: 20%;
        width: 500px;
        max-width: 80%;
        z-index: 1;
    }

    .slider .list .item .content p:nth-child(1) {
        text-transform: uppercase;
        letter-spacing: 10px;
    }

    .slider .list .item .content h2 {
        font-size: 100px;
        margin: 0;
    }

    .slider .list .item.active {
        opacity: 1;
        z-index: 10;
    }

    @keyframes showContent {
        to {
            transform: translateY(0);
            filter: blur(0);
            opacity: 1;
        }
    }

    .slider .list .item.active p:nth-child(1),
    .slider .list .item.active h2,
    .slider .list .item.active p:nth-child(3) {
        transform: translateY(30px);
        filter: blur(20px);
        opacity: 0;
        animation: showContent .5s .7s ease-in-out 1 forwards;
    }

    .slider .list .item.active h2 {
        animation-delay: 1s;
    }

    .slider .list .item.active p:nth-child(3) {
        animation-duration: 1.3s;
    }

    .arrows {
        position: absolute;
        top: 30%;
        right: 50px;
        z-index: 100;
    }

    .arrows button {
        background-color: #eee5;
        border: none;
        font-family: monospace;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        font-size: x-large;
        color: #eee;
        transition: .5s;
    }

    .arrows button:hover {
        background-color: #eee;
        color: black;
    }

    .thumbnail {
        position: absolute;
        bottom: 50px;
        z-index: 11;
        display: flex;
        gap: 10px;
        width: 100%;
        height: 250px;
        padding: 0 50px;
        box-sizing: border-box;
        overflow: auto;
        justify-content: center;
    }

    .thumbnail::-webkit-scrollbar {
        width: 0;
    }

    .thumbnail .item {
        width: 150px;
        height: 220px;
        transition: .5s;
        flex-shrink: 0;
        position: relative;
        text-align: center;
        color: white;
        filter: grayscale(100%);
    }

    .thumbnail .item.active {
        filter: grayscale(0%);
    }

    .thumbnail .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .thumbnail .item .content {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
    }

    @media screen and (max-width: 678px) {
        .thumbnail {
            justify-content: start;
        }

        .slider .list .item .content h2 {
            font-size: 60px;
        }

        .arrows {
            top: 10%;
        }
    }

    .link-button {
        margin-top: 10px;
        background-color: #1591ea;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
    }

    .link-button a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }

    .link-button:hover {
        background-color: #127dc2;
    }

    h3 { font-size: 210%;
        color: white;
        text-align: left;
    }