@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;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    background: url('img/bg1.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 18px;
    text-align: center;
    transition: opacity 0.3s ease-out;
}

.logo-header {
    margin-bottom: 20px;
    text-align: center;
}

.logo-header img {
    max-width: 200px;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 50px;
    margin-bottom: 5px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    margin: 5px 0 30px;
    font-size: 1.5em;
    color: #fff;
}


@media (max-width: 430px) and (max-height: 932px) {
    h1 {
        font-size: 30px;
        margin-top: 20px;
    }
    
    .logo-header img {
        max-width: 150px;
        margin-top: 20px;
    }
}

/* Start Fixed Links */
.fixed-links {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(calc(-50% + 105px));
    display: flex;
    flex-direction: column;
    align-items: right;
    row-gap: 7px;
    z-index: 100;

}

.fixed-links a {
    font-family: "Poppins", serif;
    color: #011264;
    font-size: 16px;
    padding: 8px 0px;
    background: linear-gradient(135deg, #fffd76, #ffd600);
    border-radius: 5px 0 0 5px;
    height: 50px;
    width: 50px;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-left: auto;
    text-decoration: none;
    transition: 0.1s;
}

.fixed-links a span {
    display: none;
}

.fixed-links a:hover {
    width: 280px !important;
}

.fixed-links a:hover span {
    display: inline;
}

.fixed-links i {
    height: 18px !important;
    width: 18px !important;
    margin: 0 17px;
}

@media (max-width:990px) {
    .fixed-links a {
        height: 40px;
        width: 40px;
    }
}

/* End Fixed Links */

.platforms {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

    
}

.platforms a {
    margin: 10px;
    transition: transform 0.3s;
    text-decoration: none;
}

.platforms a:hover {
    transform: scale(1.1);
}

.logo-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 210px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(min-width:1400px){
    .logo-container{
        width: 230px;
        height: 150px;
    }
}
.logo-container img {
    max-width: 100%;
    max-height: 100%;
}



.tooltip-link {
  position: relative;
  display: inline-block;
  margin: 20px;
}


.tooltip-link:hover::after {
  content: attr(title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #00405533;
  color: rgb(255, 255, 255);
  padding: 10px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.tooltip-link:hover::after {
  top: 120%;
  opacity: 1;
  visibility: visible;
  background: #001a2541;
  transform: translate(-50%, -5px);
}

.tooltip-link:hover::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #bef6ff13 transparent;
  transform: translateX(-50%);
}




.alternate-option {
    text-align: center;
    margin-top: 80px;
}

.myapps-link {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 20px;
    text-decoration: underline;
    font-weight: normal;
    transition: color 0.3s ease;
}

.myapps-link:hover {
    color: #f7f7f7;
    text-decoration: underline;
}
