.maintenances {
    margin: 0;
    padding: 0;
    background:#000;
}
* {
    box-sizing: border-box;
}
.maintenance {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.maintenance_contain {
    display: flex;
    flex-direction: column;
    align-items: center; 
    border-radius: 15px;
    background-color: #00000080;
    width: 700px;
    padding: 50px;
}
.maintenance_contain img {
    width: 35%;
}
.row-box {
    text-align: center;
    gap: 15px;
    display: grid;
    margin-top: 15px;
}
.pp-infobox-title-prefix {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-family: system-ui;
    line-height: 30px;
    margin-bottom: -6px;
}
.pp-infobox-title {
    color: #fff;
    font-family: system-ui;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    margin: 0px;
    text-transform: capitalize;
    line-height: 45px;
}
.pp-infobox-description p {
    margin: auto;
}
.pp-infobox-description {
    color: #fff;
    font-family: system-ui;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 27px;
}
.title-text.pp-primary-title {
    color: #000;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
.pp-social-icons {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.pp-social-icon {
    margin: 10px;
}
.pp-social-icon a {
    display: inline-block;
    height: 40px;
    width: 40px;
}
.pp-social-icon a i {
    border-radius: 100px;
    font-size: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}
.pp-social-icon:nth-child(1) a i {
    color: #4b76bd;
    border: 2px solid #4b76bd;
}
.pp-social-icon:nth-child(2) a i {
    color: #00c6ff;
    border: 2px solid #00c6ff;
}
.pp-social-icon:nth-child(3) a i {
    color: #fb5245;
    border: 2px solid #fb5245;
}
.pp-social-icon:nth-child(4) a i {
    color: #158acb;
    border: 2px solid #158acb;
}
.fa-select {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
/* Social Icons Styling */
.mamo-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.mamo-social-icons a {
    color: #fff;
    background: #020024;
	background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    border: 1px solid #0177B4;
}

.mamo-social-icons a:hover {
   	background: #00D4FF;
	background: linear-gradient(90deg, rgba(0, 212, 255, 1) 0%, rgba(9, 9, 121, 1) 50%, rgba(2, 0, 36, 1) 100%);
    transform: translateY(-3px);
	color: #fff;
}

/* Copyright Section */
.mamo-copyright {
    position: absolute;
    bottom: 30px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

/* Container Glass Effect (As seen in Figma) */
.maintenance_contain {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

@media (max-width:710px) {
    .maintenance_contain {
        width: 90%;
    }
    .pp-infobox-title {
        font-size: 25px;
        line-height: 40px;
    }
}
@media (max-width:550px) {
    .pp-infobox-title-prefix {
    font-size: 16px;
  }
  .maintenance_contain {
    padding: 30px !important;
  }
}

