.skills-section {
    text-align: center;
    margin-top: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.skill-tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.skill-tag:hover {
    background-color: #dcdcdc;
}

.skills-list-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.skill-tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.skill-tag:hover {
    background-color: #e0e0e0;
}

@keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

@-webkit-keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

@-moz-keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

@-o-keyframes down-btn {
    0% {
        bottom: 20px;
    }

    100% {
        bottom: 0px;
    }

    0% {
        opacity: 0;
    }

    100% {
        opaicty: 1;
    }
}

body {
    margin: 0;
}

.category-name {
    width: -webkit-fill-available;
    text-align: center;
    font-size: 40px;
}

.card-category-2 ul,
.card-category-3 ul,
.card-category-4 ul,
.card-category-5 ul .card-category-6 ul {
    padding: 0;
}

.card-category-2 ul li,
.card-category-3 ul li,
.card-category-4 ul li,
.card-category-5 ul li,
.card-category-6 ul li {
    list-style-type: none;
    display: inline-block;
    vertical-align: top;
}

.card-category-2 ul li,
.card-category-3 ul li {
    margin: 10px 5px;
}

.card-category-1,
.card-category-2,
.card-category-3,
.card-category-4,
.card-category-5,
.card-category-6 {
    margin-bottom: 45px;
    text-align: center;
}

.card-category-1 div,
.card-category-2 div {
    display: inline-block;
}

.card-category-1>div,
.card-category-2>div:not(:last-child) {
    margin: 10px 5px;
    text-align: left;
}

/* Image Card */
.img-card {
    width: 300px;
    position: relative;
    border-radius: 5px;
    text-align: left;

    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.img-card .card-image {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    height: 200px;
}

.img-card .card-image img {
    width: 100%;
    border-radius: 5px 5px 0px 0px;

    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.img-card .card-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.img-card .card-text {
    padding: 0 15px 15px;
    line-height: 1.5;
}

.img-card .card-link {
    padding: 20px 15px 30px;
    width: -webkit-fill-available;
}

.img-card .card-link a {
    text-decoration: none;
    position: relative;
    padding: 10px 0;
}

.img-card .card-link a:after {
    top: 30px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;

    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.img-card .card-link a:hover:after {
    width: 100%;
    left: 0;
}

.img-card.iCard-style1 .card-title {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    font-size: 30px;
    color: #fff;
}

.img-card.iCard-style1 .card-text {
    color: #795548;
}

.img-card.iCard-style1 .card-link a {
    color: #FF9800;
}

.img-card.iCard-style1 .card-link a:after {
    background: #FF9800;
}

.img-card.iCard-style2 .card-title {
    padding: 15px;
    font-size: 25px;
}

.img-card.iCard-style2 .card-image {
    margin-bottom: 15px;
}

.img-card.iCard-style2 .card-caption {
    text-align: center;
    top: 80%;
    font-size: 17px;
    color: #fff;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.img-card.iCard-style2 .card-link a {
    border: 1px solid;
    padding: 8px;
    border-radius: 3px;
    color: black;
    font-size: 13px;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.img-card.iCard-style2 .card-link a:hover {
    background: black;
}

.img-card.iCard-style2 .card-link a:hover span {
    color: #fff;
}

.img-card.iCard-style3 {
    text-align: center;
}

.img-card.iCard-style3 .card-title {
    top: 80%;
    font-size: 30px;
    color: #fff;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.img-card.iCard-style3 .card-text {
    color: #636060;
}

.img-card.iCard-style3 .card-link {
    border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style3 .card-link a {
    color: #585858;
}

.img-card.iCard-style3 .card-link a:after {
    background: #585858;
}

.img-card.iCard-style4 {
    text-align: right;
}

.img-card.iCard-style4 .card-caption {
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 10px;
    right: 10px;
    color: #fff;
}

.img-card.iCard-style4 .card-title {
    width: 100%;
    padding: 20px 0px 12px 0;
    color: #E91E63;
}

.img-card.iCard-style4 .card-title span {
    font-size: 25px;
    margin-right: 12px;
}

.img-card.iCard-style4 .toggle {
    cursor: pointer;
    padding: 8px 0px 13px 0px;
    width: 55px;
}

.img-card.iCard-style4 .toggle span,
.img-card.iCard-style4 .toggle span:nth-child(2),
.img-card.iCard-style4 .toggle span:nth-child(3) {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #E91E63;
    cursor: pointer;
}

.img-card.iCard-style4 .toggle span:nth-child(1) {
    right: 15px;
}

.img-card.iCard-style4 .toggle span:nth-child(2) {
    right: 27px;
}

.img-card.iCard-style4 .toggle span:nth-child(3) {
    right: 39px;
}

.img-card.iCard-style4 .card-text {
    opacity: 0;
    line-height: 0;
    padding-bottom: 0;
    color: #4c4c4c;

    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
}

.img-card.iCard-style4 .toggle.active~.card-text {
    opacity: 1;
    line-height: 1.5;
    padding-bottom: 10px;
}

.img-card.iCard-style4 .card-link {
    border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style4 .card-link a {
    color: #E91E63;
}

.img-card.iCard-style4 .card-link a:after {
    background: #E91E63;
}


.loader {
    width: 50px;
    aspect-ratio: 1;
    --_c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
    background:
        var(--_c) top,
        var(--_c) left,
        var(--_c) right,
        var(--_c) bottom;
    background-size: 12px 12px;
    animation: l7 1s infinite;
}

@keyframes l7 {
    to {
        transform: rotate(.5turn)
    }
}

main {
    margin-top: 6rem;
    max-width: 1000px;
    width: 95%;
}

main .card-image {
    height: 450px;
}

main .card-info {
    width: 100% !important;
}

@media (min-width: 1015px) {
    main .card-info {
        width: auto !important;
    }
}

main .card-info .card-title {
    line-height: 1.5;
}

main .card-info .card-description {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #7C8F92;
}

main .card-info .card-footer .author-image {
    width: 80px;
    height: 80px;
}

main .card-info .card-footer .author-name .date {
    font-weight: 400;
    color: #7C8F92;
}


.header .lead {
    max-width: 620px;
}

/** Below CSS is completely optional **/

.gallery-item {
    width: 200px;
    padding: 5px;
}

.lg-toolbar {
    .lg-icon {
        &.lg-close {
            display: flex;
            align-items: center;
            justify-content: center;

            &:after {
                content: "";
            }

            svg {
                width: 22px;
                height: 22px;
                fill: currentColor;
            }
        }
    }
}

/* Services */
.page-service {
    background-color: #171925;
    color: #9FA2AB;
}

.page-service .card {
    margin: 32px 0;
    background-color: #202334;
}

.page-service .card .iconic {
    font-size: 40px;
    color: #fff;
}

.page-service .card .btn-theme {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
    margin: auto;
    padding: 10px 24px;
    width: 140px;
    box-shadow: none;
}
/* Bootstrap Cards */
#Social-cards .twitter:hover {
    background-color: #2e2e2e;
    color: white;
    border: none !important;
    transition: 3s 0.2s ease;
}

#Social-cards .insta:hover {
    background-color: #8a3ab9;
    color: white;
    border: none !important;
    transition: 3s .2s linear;
}

#Social-cards .insta:hover .btn {
    border-radius: 0 !important;
    background-color: white !important;
    color: #8a3ab9;
}

#Social-cards .twitter:hover .btn {
    border-radius: 0 !important;
    background-color: white !important;
    color: #2e2e2e;
}

#Social-cards .tube:hover {
    background-color: #FF0000;
    color: white;
    border: none !important;
    transition: 3s .2s ease-in-out;
}

#Social-cards .tube:hover .btn {
    border-radius: 0 !important;
    background-color: white !important;
    color: #FF0000;
}


/* Testimonial */
.testi-carousel {
    position: relative;
    width: 100%;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.testi-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.testi-carousel .item {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;
    max-width: 550px;
    height: 400px;
    color: #fff;
    text-align: center;
}

.testi-carousel .item .iconic {
    display: block;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 32px;
    background-color: #52565c;
    color: #fff;
    border-radius: 50%;
}

.testi-carousel .item h4 {
    display: block;
    width: 100%;
    color: #fff;
}
.testi-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* centers the text inside .tagline */
}

.thumb-profile img {
    display: block;
    margin: 0 auto;
}
.linkSocial{
    padding-left: 16px;
}


.loader1 {
  width: fit-content;
  font-family: sans-serif;
  padding-bottom: 8px;
  background: linear-gradient(currentColor 0 0) 0 100%/0% 3px no-repeat;
  animation: l2 2s linear infinite;
}
.loader1:before {
  content:"Sending..."
}
@keyframes l2 {to{background-size: 100% 3px}}

.loader2 {
  width: fit-content;
  font-family: sans-serif;
  padding-bottom: 8px;
  background: linear-gradient(currentColor 0 0) 0 100%/0% 3px no-repeat;
  animation: l2 2s linear infinite;
}
.loader2:before {
  content:"Processing..."
}
@keyframes l2 {to{background-size: 100% 3px}}