* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}


.section {

    padding: 40px 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 12%;
    background: rgb(37, 29, 29);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}

.logo {

    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.logo:hover {
    color: orangered;
    text-shadow: 0 0 25px orangered,
        0 0 50px orangered;
    transform: scale(1.1);
}

span {
    color: orangered;
}

.navbar a {
    font-size: 16px;
    color: white;
    font-weight: 600;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;

}

.navbar a:hover,
.navbar a.active {
    color: rgb(223, 71, 16);
    border-bottom: 3px solidorangered;
}


.contact {
    padding: 10px 28px;
    background-color: white;
    color: rgb(198, 74, 52);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact:hover {
    background-color: orangered;
    box-shadow: 0 0 25px orangered;
    color: white;
    transition: all 0.3s ease;
}

.home {
    width: 100%;
    min-height: 100vh;
    background: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;

}

.home-content {
    max-width: 800px;
}

.home-content h3 {
    font-size: 42px;
    color: rgb(52, 51, 51)
}

.home-content h1 {
    font-size: 62px;
    line-height: 1.2;
    color: rgb(52, 51, 51)
}

.home-content p {
    font-size: 18px;
    margin: 25px 0 30px;
    color: rgb(52, 51, 51)
}

.btn-box {
    width: 345px;
    display: flex;
    gap: 2em;

}

.btn-1 {
    padding: 15px 28px;
    background-color: black;
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;

}

.btn-1:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
}

.btn-2 {
    padding: 15px 28px;
    background-color: orangered;
    color: white;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-2:hover {
    background-color: white;
    color: orangered;
}

.img-box img {
    border-radius: 50%;
    width: 150%;

}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.6);
    width: 50px;
    border-radius: 10px;
}

.hidden {
    display: none !important;
}

.padd-15 {
    padding-left: 20px;
    padding-right: 20px;
}

.container {

    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.btn-3 {
    padding: 12px 35px;
    background-color: orangered;
    color: white;
    border: 2px solid transparent;
    border-radius: 10px;
    display: inline-block;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;

}

.btn-3:hover {

    background-color: white;
    color: orangered;
    border: 2px solid rgb(18, 25, 47);
}

.btn-4 {
    padding: 12px 35px;
    background-color: rgb(20, 20, 30);
    color: white;
    border: 2px solid transparent;
    border-radius: 10px;
    display: inline-block;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;

}

.btn-4:hover {
    background-color: white;
    color: orangered;
}


.shadow-dark {
    box-shadow: 0 0 20px rgba(178, 15, 15, 0.15);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;

}

.section .container {
    padding-top: 60px;
    padding-bottom: 70px;

}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;


}



.section.active {
    z-index: 2;
    opacity: 1;
    animation: slideSection 1s ease;
}

@keyframes slideSection {
    0% {
        transform: translateX(100);
    }

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

.section-title h2 {
    font-size: 40px;
    color: rgb(220, 230, 240);
    font-weight: 700;
    position: relative;
}

.section-title span {
    font-size: 40px;
    color: orangered;
    font-weight: 700;
    position: relative;
}

.section-title h2::before {
    content: '';
    height: 4px;
    width: 50px;
    background-color: orangered;
    position: absolute;
    top: 100%;
    left: 0;
}

.section-title h2::after {
    content: '';
    height: 4px;
    width: 25px;
    background-color: orangered;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}

.about .about-contentTT {
    flex: 0 0 100%;
    max-width: 100%;
    color: rgb(239, 234, 234);
}


.about .about-contentTT .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    color: rgb(212, 198, 198);
}

.about .about-contentTT .about-text h3 {

    font-size: 62px;

    font-weight: 700;
    color: var(--text-black-900);
}

.about .about-contentTT .about-text h3 span {
    color: orangered;

}

.about .about-contentTT .about-text p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-900);
}

.about .about-contentTT .personal-info {
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;


}

.about .about-contentTT .personal-info .info-item {
    flex: 0 0 50%;
    max-width: 50%;



}

.about .about-contentTT .personal-info .info-item p {
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-black-900);
    border-bottom: 1px solid rgb(212, 216, 221);
    margin-bottom: 30px;
}

.about .about-contentTT .personal-info .info-item p span {
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;

}



.about.about-contentTT .personal-info .buttons {

    margin-top: 20px;



}

.about.about-contentTT .personal-info .buttons .btn-3 {
    margin-right: 15px;
    margin-top: 50px;
    margin-bottom: 30PX;


}

.about.about-contentTT .personal-info .buttons .btn-3:hover {
    background-color: white;
    color: orangered;
    border: 2px solid rgb(14, 18, 36);
}

.about.about-contentTT .personal-info .buttons .btn-4 {

    padding: 15px 28px;
    background-color: orangered;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    margin-bottom: 30PX;
}

.about.about-contentTT .personal-info .buttons .btn-4:hover {
    background-color: white;
    color: orangered;
}

.about .about-contentTT .skills {
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 40px;
}



.about .about-contentTT .skills .skill-item {
    flex: 0 0 100%;
    max-width: 100%;

}

.about .about-contentTT .skills .skill-item h5 {
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-transform: capitalize;

}

.about .about-contentTT .skills .skill-item .progress {
    background-color: var(--bg-black-50);
    height: 7px;
    border-radius: 4px;
    width: 100%;
    position: relative;

}

.about .about-contentTT .skills .skill-item {

    margin-bottom: 30px;
}

.about .about-contentTT .skills .skill-item .progress .progress-in {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background-color: orangered;
    transition: width 0.3s ease;
}

.about .about-contentTT .skills .skill-item .skill-percent {
    position: absolute;
    right: 0;
    color: var(--text-black-900);
    top: -40px;
    font-weight: 400px;
    line-height: 40px;

}


.about .about-contentTT .education,
.about .about-contentTT .experience {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;

}

.about .about-contentTT h3.title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: rgba(210, 221, 223, 0.949);
}

.about .about-contentTT .timeline-box {
    flex: 0 0 100%;
    max-width: 100%;


}

.about .about-contentTT .timeline {
    background-color: rgb(54, 53, 63);
    padding: 30px 15px;
    border: 1px solid rgb(116, 100, 100);
    border-radius: 10px;
    width: 100%;
    position: relative;

}

.about .about-contentTT .timeline-date {
    margin-bottom: 10px;
}

.about .about-contentTT .timeline-title {
    margin-top: 5px;
    margin-bottom: 5px;
}


.about .about-contentTT .timeline .timeline-item {
    position: relative;
    padding-left: 37px;
    padding-bottom: 50px;

}

.about .about-contentTT .timeline .timeline-item:last-child {
    padding-bottom: 0;

}

.about .about-contentTT .timeline .timeline-item::before {
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    left: 7px;
    top: 0;
    background-color: orangered;

}

.about .about-contentTT .timeline .circle-dot {
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: orangered;
}

.about .about-contentTT .timeline .timeline-date {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-black-700);

}

.about .about-contentTT .timeline .timeline-date .fa {
    margin-right: 5px;

}

.about .about-contentTT .timeline .timeline-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--text-black-900);
}

.about .about-contentTT .timeline .timeline-text {
    line-height: 25px;
    font-size: 16px;
    text-align: justify;
    color: var(--text-black-700);

}

/*services*/
.services .container {
    padding-bottom: 40px;

}

.services .service-item {
    margin-bottom: 30px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.services .service-item .service-item-inner {
    background-color: rgb(247, 237, 234);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;

}

.services .service-item .service-item-inner:hover {
    box-shadow: 0 0 20px orangered;
}

.services .service-item .service-item-inner .icon {
    height: 60px;
    width: 60px;
    border-radius: 50px;
    display: block;
    margin: 0 auto 30px;
    text-align: center;
}

.services .service-item .service-item-inner .icon .fa {
    font-size: 40px;
    line-height: 60px;
    color: orangered;
}

.services .service-item .service-item-inner:hover .icon {
    background-color: orangered;
}

.services .service-item .service-item-inner:hover .icon .fa {
    font-size: 25px;
    color: aliceblue;
    transition: all 0.3s ease;
}


.services h4 {
    font-size: 18px;
    color: rgb(52, 51, 51);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;

}


.services p {
    color: rgb(208, 170, 120);
    font-size: 16px;
    line-height: 25px;

}

.services .section-title h2 {
    color: rgb(52, 51, 51);
}

.services {
    background-color: rgb(255, 255, 255);

}


/* portfolio */
.Portfolio .container {
    padding-bottom: 40px;
}

.Portfolio .portfolio-heading {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;

}

.Portfolio {
    background: rgb(255, 255, 255);
}

.Portfolio .section-title {
    color: rgb(139, 55, 55);
}

.Porfolio .porfolio-heading h2 {
    color: rgb(149, 77, 77);
    font-weight: 500;
}

.Portfolio h2 {
    color: rgb(64, 56, 56);
}

.Portfolio .portfolio-heading h2 {
    color: rgb(86, 80, 80);
}


.Portfolio .portfolio-item {
    flex: 0 0 33.33%;
    max-width: 50%;
    margin-bottom: 30px;

}

.Portfolio .portfolio-item-inner {

    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.Portfolio .portfolio-item-inner .portfolio-img img {
    width: 100%;
    display: block;
}




@media(max-width:1199px) {

    .about .about-contentTT .personal-info .info-item p span {
        display: block;
        margin-left: 0;
    }

}

@media(max-width:991px) {

    .contact-form .Portfolio .portfolio-item,



    .services .service-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .img-box img {
        display: none;

    }
}

@media(max-width:600px) {

    .services .service-item,
    .Portfolio .portfolio-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header {
        padding: 20px 8%;
    }

    .navbar a {
        margin: 0 10px;
    }
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background: rgb(57, 57, 61);

}

.about-img img {
    position: relative;
    width: 550px;
    box-shadow: 0 0 25px #0d3863,
        0 0 50px #0d3863;
    border-radius: 50%;
}

.about-content h2 {
    text-align: left;
    color: rgb(0, 0, 0);
    font-size: 42px;
}

.about-content h3 {
    font-size: 62px;
    color: rgb(0, 0, 0);
}

.about-content p {
    color: white;
    font-size: 20px;
    margin: 2em 0 3em;
}

.about-content h4 {
    text-align: start;
    color: white;
    font-size: 30px;
}

.contact-form h2 {
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;
}

.contact-form form {
    max-width: 50em;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3em;
}

.contact-form form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form form .input-box input,
.contact-form form textarea {
    width: 100%;
    padding: 1.5em;
    font-size: 18px;
    color: black;
    background: rgb(241, 241, 241);
    border-radius: 0.8em;
    margin: 1rem 0;
    resize: none;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: rgb(10, 10, 30);

}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
    color: white;
}

.footer .social a {
    font-size: 24px;
    color: white;
    border: 2px solid orangered;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px orangered, 0 0 10px orangered;
    transition: 0.3s ease;
}

.footer .social a:hover {
    transform: scale(1.2) translateY(-10px);
    color: orangered;
    border: 2px solid orangered;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a {
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.footer ul li a:hover {
    border-bottom: 3px solid #842c2c;

}

.footer ul li {
    display: inline-block;
    padding: 0 15px;

}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: white;
}