/* Made By Aadil Latif */

body {
    margin: auto;
    font-family: Arial, sans-serif;
    overflow: auto;
    padding: 0;
    margin: 0;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.heading-2 {
    text-transform: uppercase;
    text-align: center;
    display: block;
    justify-content: center;
    background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    animation: textclip 3s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.images img {
  height: 50px;
  object-fit: contain;
  margin: 0 10px;
}

.group-card {
    margin-bottom: 5px;
    position: relative;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #f0f8ff;
    display: flex;
    align-items: center;
    padding: 7px;
    justify-content: space-between;
    overflow: hidden;
}

.mlsa-reg-1 {
    background: #F25022;
    border-radius: 10px;
    margin-top: 20px;
    
}

.mlsa-reg-2 {
    background: #7FBA00;
    border-radius: 10px;
    margin-top: 20px;
}

.whatsapp-span1 {
    display: flex;
    align-items: center;
}

.fab-i {
    font-size:24px;
    color:#25d366;
}

.whatsapp-span2 {
    font-weight: bold;
    margin-left: 10px;
    font-size: 0.9rem !important;
}

.whatsapp-card {
    animation: whatsapp-border-animation 1s infinite;
}
    
@keyframes whatsapp-border-animation {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: #25d366;
    }

    100% {
        border-color: transparent;
    }
}

.seoquake-nofollow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 1px 20px;
    border-radius: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
    color: white !important;
}

.seoquake-nofollow i {
    margin-right: 5px;
}

.whatsapp-card .seoquake-nofollow {
    background: #25d366;
}

.seoquake-nofollow:hover {
    transform: scale(1.05);
}
    
.container {
    width: 100%;
    overflow: hidden;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.module {
    padding: 20px;
    background-color: rgba(244, 244, 244, 0.5);
    border: 1px solid #ddd;
    border-radius: 15px;
    margin: 25px;
    text-align: center;
    box-shadow: rgba(0, 255, 213, 0.3) 5px 5px, rgba(46, 227, 240, 0.2) 10px 10px, rgba(46, 139, 135, 0.1) 15px 15px, rgba(106, 196, 188, 0.05) 20px 20px, rgba(103, 161, 161, 0.025) 25px 25px;
}

footer {
    text-align: center;
    color: white;
    padding: 1px;
    background-color: black;
}

/* unvisited link */
.module-link:link, .simulator:link {
    color: blue;
    text-decoration: underline;
}

/* visited link */
.module-link:visited, .simulator:visited {
    color: red;
    text-decoration: none;
}

/* mouse over link */
.module-link:hover, .simulator:hover {
    color: green;
    text-decoration: underline;
}

/* selected link */
.module-link:active, .simulator:active {
    color: blue;
    text-decoration: underline;
}

.module-link:link, .simulator:link, .module-link:visited, .simulator:visited {
    background-color: black;
    color: white;
    border: 2px solid green;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.module-link:hover, .simulator:hover, .module-link:active, .simulator:active {
    background-color: green;
    color: black;
}

@media only screen and (max-width: 768px) {
    /* Adjust styles for smaller screens */
    .logo1 {
        left: 50%;
        transform: translateX(-50%) translateY(-22%);
    }
}

@media only screen and (max-width: 600px) {
    /* Adjust styles for even smaller screens */
    .logo1 {
        width: 50px;
    }
}