
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
header {
    position: fixed;
    background-color: #06051a;
    color: #fff;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    min-height: 80px;
    padding: 10px 80px;
    z-index: 1000;
    border-bottom: 1px solid #8860a8;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}
ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 1rem;
    font-size: 20px;
}
ul a {
    text-decoration: none;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}
ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6813ae;
    transition: width 0.3s ease;
}
ul a:hover::after {
    width: 100%;
}
.auth {
    background-color: #6813ae;
    color: #fff;
    padding: 15px 27px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}
.auth a {
    text-decoration: none;
    color: #fff;
}
.menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 25px;
}
span {
    color: #6813ae;
    font-weight: bold;
}

.section {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #06051a;
    color: #fff;
    overflow: hidden;
}
.section h4 {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    color: #4e0d86;
    background-color: #190728;
    padding: 5px 10px;
    border-radius: 10px;
}
.section h3 {
    font-size: 60px;
    margin-bottom: 20px;
}
.section p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #f8f8f8;
    line-height: 1.5;
}
.link-button {
    margin-bottom: 50px;
}
.get {
    background-color: #6813ae;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 20px;
}
.link-button a {
    text-decoration: none;
    color: #fff;
}
.learn {
    color: #ffff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 20px;
    border: 1px solid #ffffff;
    margin-left: 20px;
}
.section h5 {
    font-size: 20px;
    margin-bottom: 20px;
}
.tech {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.tech i {
    font-size: 60px;
}
.right img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }


    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.about {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #070350;
    color: #fff;
    padding: 40px 5%;
}

.about h3 {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    color: #5d1b9f;
    background-color: #15071f;
    padding: 5px 10px;
}

.about h4 {
    font-size: 27px;
    margin-bottom: 20px;
}
.about p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #f8f8f8;
    line-height: 1.5;
}
.left-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    margin-bottom: 50px;
}
.left-button a {
    text-decoration: none;
    color: #fff;
}

.right {
  
}

.stat-rate {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    width: 100%;
}

.stat-rate i {
    font-size: 80px;
    color: #6813ae;
    align-self: flex-start;
}

.stat-rate-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #ebebeb3a;
    gap: 10px;
}

.stat-rate-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-right: 1px solid #ebebeb3a;
    gap: 10px;
}

.stat-rate-top {
     display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-left: 1px solid #ebebeb3a;
    gap: 10px;
}

.stat-rate-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ebebeb3a;
    gap: 10px;
}
.skill {
    width: 100%;
    max-width: 100%;
    background-color: #06051a;
    color: #fff;
    padding: 40px 5%;
    text-align: center;
}
.skill h3 {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 30px;
    color: #5d1b9f;
    padding: 5px 10px;
}
.skill h4 {
    font-size: 20px;
    margin-bottom: 50px;
    position: relative;
}
.skill h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #6813ae;
}
.skill-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.skill-box-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.skill-box-one span {
    font-size: 20px;
    color: #fff;
}
.skill-box-one {
    display: flex;
    align-items: center;
    gap: 20px;
}
.skill-box-one h5 {
    color: #041dff;
    font-size: 20px;
    font-weight: bold;
}
.progress {
    width: 100%;
    height: 10px;
    background-color: #beb8b8ba;
    border-radius: 10px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background-color: #5d1b9f;
    border-radius: 10px;
}
.html-fill {
    width: 55%;
}
.html {
    color: #ff0000;
}
.css-fill {
    width: 38%;
}
.css {
    color: #0771e2;
}
.js-fill {
    width: 12%;
}
.js {
    color: #fff700;
}
.react-fill {
    width: 5%;
}
.react {
    color: #0978a4;
}
.node-fill {
    width: 2%;
}
.node {
    color: #3c873a;
}
.php-fill {
    width: 21%;
}
.php {
    color: #6e4c9a;
} 
.python-fill {
    width: 7%;
}
.python {
    color: #edd601;
}

.blog {
    width: 100%;
    max-width: 100%;
    background-color: #070350;
    color: #fff;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
}
.blog p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #f8f8f8;
    line-height: 1.5;
    font-weight: 300;
}
.left-button-blog {
    background-color: #4e0d86;
    display: inline-block;
    padding: 15px 25px;
    border-radius: 10px;
}
.left-button-blog a {
    text-decoration: none;
    color: #fff;
}

.blog-center {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 1px #f1f1f4;
    overflow: hidden;
    padding: 30px 40px;
    border-radius: 14px;
    background-color: #06051a;
}
.quote {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.quote i {
    font-size: 50px;
}
.ceo-img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.text-blog-p{
    display: block;
    margin-left: 20px;
}
.text-blog {
    display: block;
    margin-left: 30px;
}
.text-blog h4 {
    margin-bottom: 10px;
}
.blog-center img {
    border-radius: 25px;
}

.blog-right span {
    font-size: 20px;
}
.social-media {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.blog-right h4 {
    font-weight: 600;
    padding: 10px;
    color: #9044d3;
}
.blog-right a {
    text-decoration: none;
    color: #fff;
}
.social-media i {
    font-size: 40px;
    cursor: pointer;
}
.whatsapp {
    color: #3c873a;
}
.tiktok {
    color: #f1f1f1;
}
.instagram {
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(224, 177, 36, 1) 0%, rgba(212, 11, 11, 1) 50%, rgba(42, 106, 245, 1) 99%);
    border-radius: 15px;
}

footer {
    background-color: #06051a;
    color: #f1f1f1;
    text-align: center;
    padding: 30px 30px;
    border-top: 1px solid #b7b6c5;
}

@media (max-width: 480px) {
header {
    width: 100%;
    height: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7px;
    }
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: bold;
}
ul {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 1rem;
    font-size: 10px;
}
.auth {
    background-color: #6813ae;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
}
.section {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    max-width: 100%;
    padding-top: 50px;
    /* padding-right: 2%; */ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #06051a;
    color: #fff;
    overflow: hidden;
}
.right {
    display: none;
}
.about {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #070350;
    color: #fff;
    padding: 40px 5%;
}
.stat-rate i {
    font-size: 35px;
    color: #6813ae;
    align-self: center;
}
.stat-rate-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #ebebeb3a;
    gap: 10px;
}

.stat-rate-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-right: 1px solid #ebebeb3a;
    gap: 10px;
}

.stat-rate-top {
     display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-left: 1px solid #ebebeb3a;
    gap: 10px;
}
.blog {
    width: 100%;
    max-width: 100%;
    background-color: #070350;
    color: #fff;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 23px;
}
.blog-center {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 1px #f1f1f4;
    overflow: hidden;
    padding: 15px 20px;
    border-radius: 14px;
    background-color: #06051a;
}
.stat-rate-text h4 {
    font-size: 20px;
}
.stat-rate-text p {
    font-size: 15px;
}
.get {
    background-color: #6813ae;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
}
.link-button a {
    text-decoration: none;
    color: #fff;
}
.learn {
    color: #ffff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    border: 1px solid #ffffff;
    margin-left: 20px;
}
.tech {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.left p {
    font-size: 15px;
}
.left h4 {
    font-size: 10px;
}
.left h3 {
    font-size: 30px;
    line-height: 0.6;
    font-weight: 700;
}
}
.tech i {
    font-size: 25px;
}
