/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color:rgb(201, 214, 211);
    color: #333;

    /* Center content */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.navbar{
    margin: 0px;
    position: sticky;
    position: -webkit-sticky;
}

.navbar ul{
    list-style-type: none;
    background-color: mintcream;
    overflow: hidden;
    margin-right: 20px; /* Space between links */
    text-decoration: none; /* Remove underline */
    color: rgb(116, 125, 118); /* White text color */
    padding: 10px 15px; /* Padding around links */
    border-radius: 5px; /* Rounded corners for links */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.navbar a{
    color: black;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover{
    background-color: rgb(197, 224, 204);
}

.navbar li{
    float: left;
}

/*.instagram{
    text-decoration: none;
    border-style: solid;
    border-width: thick;
    border-color: rgb(128, 182, 165);
    border-radius: 5px;
}

h4{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

img{
    width: 20px;
    align-content: center;
}*/

h3{
    padding-left: 25%;
    padding-right: 25%;
    text-align: center;
}

.link-container {
    width: 300px;
    margin: 10px 0;
    text-align: center;
}

.link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: black;
    font-weight: bold;
    background: #bef2c0;
    padding: 15px;
    border: 3px solid white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4CAF50;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.logo1 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/9/95/Instagram_logo_2022.svg') no-repeat center center;
    background-size: contain;
    border-radius: 5px;
}

.logo2 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: url('https://cdn4.iconfinder.com/data/icons/social-media-logos-6/512/112-gmail_email_mail-512.png') no-repeat center center;
    background-size: contain;
    border-radius: 5px;
}

.logo3 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/6c/Phone_icon.png') no-repeat center center;
    background-size: contain;
    border-radius: 5px;
}

.logo4 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/512px-WhatsApp.svg.png') no-repeat center center;
    background-size: contain;
    border-radius: 5px;
}

.text {
    flex: 1;
    text-align: middle;
}

@media (max-width: 768px) {
    button {
        width: 100%;
    }

    input[type="text"],
    input[type="number"],
    select {
        width: 100%;
    }
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    bottom: 0;
    width: 100%;
}

.buisness_card{
    width: 300px;
}