body {
    font-family: "Alexandria", sans-serif;
    background-image: linear-gradient(90deg, #6A82FB, #4A5BBD 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

h2 {
    margin: 15px 15px 15px 15px;
    padding: 20px;
    font-size: 1.8em;
    background: #48D1CC;
    color: #333;
    border-radius: 20px;
    width: 600px;
    margin: 40px 0px 10px 0px;
}

.separator {
    border-top: 2px solid #ccc;
    margin: 20px 0;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
}

.verified {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1da1f2;
    color: white;
    border-radius: 100%;
    margin: 5 0 10 15px;
    padding: 5px;
    font-size: 1.2em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.description {
    margin-bottom: 30px;
    text-align: center;
    text-justify: justify;
    width: 600px;
    line-height: 2;
    font-size: 1.2em;
}

.p {
    display: flex;
    text-wrap: wrap;
}

.link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    color: #333;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 15px;
    width: 600px;
    font-size: 1.2em;
    font-weight: bold;
}

.link i {
    color: #6A82FB;
    border-radius: 50%;
    margin-left: 25px;
    padding: 10 5 15 50px;
    font-size: 1.5em;
}

.link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services {
    margin: 0px 0;
}

.service-item,
.product-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 600px;
    margin: 20px auto;
    text-align: center;
}

.service-item img,
.product-item img {
    width: 100%;
    border-radius: 15px;
}

.service-item h3,
.product-item h3 {
    margin: 15px 0;
    font-size: 1.4em;
}

.service-item a,
.product-item a {
    box-sizing: border-box;
    display: inline-block;
    background: #fff;
    font-size: 1.1em;
    color: #4A5BBD;
    padding: 10px 20px;
    border-width: 2px;
    border-color: transparent;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

.service-item a:hover,
.product-item a:hover {
    box-sizing: border-box;
    background: transparent;
    border-style: solid;
    border-width: 2px;
    border-color: #fff;
    color: #fff;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    animation: hoverEffect 0.3s ease-in-out;
}



.services img, .products img {
   filter: grayscale(100%);
   transition: filter 0.3s ease;
}
.services img:hover, .products img:hover {
   filter: none;
}



@keyframes hoverEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.product-item .price {
    display: inline-block;
    font-weight: bold;
    margin: 10px 0;
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

.product-item .price-container {
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    color: #333;
    font-size: 0.9em;
}

.share-section {
    text-align: center;
    margin: 40px 0;
}

.share-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.qr-code img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    width: 150px;
}

.share-popup .qr-code {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    display: inline-block;
}

.share-buttons a {
    border-radius: 100%;
}

.share-buttons a:hover {
    transform: scale(1.2);
}

.share-buttons a i {
    display: inline-block;
    padding: 10px;
    font-size: 1.4em;
    color: #fff;
    background: #6A82FB;
    transition: transform 0.3s;
    border-radius: 100%;
    text-decoration: none;
}

.share-icon {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #6A82FB;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.share-icon:hover {
    transform: scale(1.1);
    background: #6A82FB;
}

.share-toggle i {
    font-size: 1.8em;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #6A82FB;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
}

.share-toggle i:hover {
    transform: scale(1.1);
    background: #6A82FB;
}

.share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    display: none;
    width: 600px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.share-popup.active {
    display: block;
}

.share-popup h2 {
    font-size: 1.2em;
    margin-bottom: 10px;

}

.share-popup .qr-code img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.share-popup .share-buttons a {
    display: inline-block;
    margin: 0 5px;
    font-size: 1.5em;
    background: #6A82FB;
    transition: transform 0.3s;
}

.share-popup .share-buttons a:hover {
    transform: scale(1.2);
}

a {
    display: block;
    font-size: 0.8em;
    background-color: magenta;
    border-radius: 100%;
    text-decoration: none;
}

.url-block {
    height: max-content;
    margin: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.url-block span {
    margin-left: 10px;
}

div.url-block img {
    border-radius: 50%;
    margin-left: 15px;
}

.ocean {
    height: 1%;
    width: 100%;
    position: fixed;
    bottom: -5px;
    left: 0;
    background: #0B7D82;
    z-index: -1;
}

.wave {
    background: url(..//imgs/wave.svg) repeat-x;
    position: absolute;
    top: -250px;
    width: 6400px;
    height: 250px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%,
    100% {
        transform: translate3d(0, -25px, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h2,
    .description,
    .link,
    .service-item,
    .product-item {
        width: 90%;
    }

    .title {
        font-size: 2em;
    }

    .description {
        font-size: 1em;
    }

    .link {
        font-size: 1em;
        padding: 10px 20px;
    }

    .link i {
        font-size: 1.2em;
    }

    .footer {
        font-size: 0.8em;
    }

    .share-popup {
        width: 90%;
    }

    .share-popup .qr-code {
        visibility: hidden;
        display: none;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px;
        height: 100px;
    }

    .title {
        font-size: 1.8em;
    }

    .description {
        font-size: 0.9em;
    }

    .link {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .link i {
        font-size: 1em;
    }

    h2 {
        font-size: 1.5em;
        padding: 15px;
    }

    .footer {
        font-size: 0.7em;
    }

    .share-popup {
        width: 95%;
    }

    .share-popup .qr-code {
        visibility: hidden;
        display: none;
    }
}


