* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/*add*/
body {
    min-height: 100vh;
    width: 100%;
    font-family: 'Heebo', sans-serif;
    /* color:rgb(60, 72, 86) */
}

.menu li a{
    text-decoration: none;
    color:#333;
    font-weight: bold;

}

#container {
    padding-top: 100px;
}

header {
    height: 100px;
    width: 100%;
    display: flex;
    background-color: antiquewhite;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 1;
}

.logo {
    width: 20%;
}

ul {
    list-style-type: none;
    display: flex;
    gap: 50px;

    align-items: center;
}

.menus {
    height: 100%;
    /* width: 80%; */
    display: flex;
    align-items: center;
    gap: 50px;
}

.menu nav {
    display: flex;
    gap: 30px;
    color: #111;
}

.menu li {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 5px 0;
}

/* underline */
.menu li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #f0a11c;
    /* underline color */
    transition: 0.4s ease;
}

/* hover effect */
.menu li:hover::after {
    width: 100%;
}

.icon {
    padding: 20px;
    background: rgb(253, 169, 58);
}

.icon-item {
    font-size: 50px;
    color: white;
}

.ham {
    padding: 20px;
    background: rgb(253, 169, 58);
    display: none;
    /* desktop par hide */
}

.close-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    align-self: flex-end;
    margin-right: 20px;
}

/* Header Responsive */
/* MOBILE MENU */
@media (max-width:768px) {
    .logo {
        width: auto;
    }

    header {
        padding: 0 20px;
        /* align-items: center; */
    }

    .ham {
        display: block;
        /* mobile par show */
        background: none;
        cursor: pointer;
    }

    .ham-item {
        font-size: 30px;
        color: #f0a11c;
    }

    ul {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: #f3d39d;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.4s;
    }

    ul.active {
        left: 0;
    }

    .close-btn {
        display: block;
    }
}

/* Hero Section */

.hero {
    height: 900px;
    width: 100%;
    background-color: antiquewhite;
    border-bottom-left-radius: 100% 20%;
    border-bottom-right-radius: 100% 10%;
    display: flex;
    position: relative;
}

.left {
    width: 50%;
    padding: 30px;
    position: relative;
}

/* Image positions */
.banner1 {
    position: absolute;
    top: 8px;
    left: 400px;
    animation: circleMove 5s linear infinite;
}

.banner2 {
    position: absolute;
    top: 150px;
    left: 16px;
    animation: circleMove 5s linear infinite;
}

.banner3 {
    position: absolute;
    top: 540px;
    left: 100px;
    animation: circleMove 5s linear infinite;
}

.banner4 {
    position: absolute;
    top: 380px;
    left: 580px;
    animation: circleMove 5s linear infinite;
}

/* Circular movement */
@keyframes circleMove {
    0% {
        transform: rotate(0deg) translate(10px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(10px) rotate(-360deg);
    }
}

.right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 220px;
    margin-left: 30px;
    align-items: start;
    line-height: 60px;
}

.right span {
    color: rgb(253, 169, 58);
    font-weight: bold;
}

.right .btn-1 {
    height: 50px;
    width: 200px;
    background: rgb(253, 169, 58);
    border: none;
    padding: 5px 10px;
    /* font-size: 18px; */
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: white;
    font-weight: bold;
}

.right p {
    font-size: 45px;
    color: #464545;
    margin-bottom: 20px;
}

.btn {
    display: flex;
    gap: 20px;
}

.btn button {
    height: 60px;
    width: 200px;
    border: none;
    border-radius: 50px;
    background-color: rgb(253, 169, 58);
    box-shadow: 4px 4px 50px rgb(253, 169, 58);
    color: white;
}

.btn button span {
    color: white;
    overflow: hidden;
    display: inline-block;
}

.box {
    height: 180px;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    left: 450px;
    top: 500px;
}

.exc {
    display: flex;
    gap: 20px;
}

.box span {
    color: #686565;
    font-size: 18px;
    margin-top: 5px;
}

.box img {
    margin-top: 15px;
}

.innerBox {
    height: 75px;
    width: 80%;
    background-color: rgb(245, 243, 243);
    border: 1px solid rgb(197, 197, 197);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.innerBox i {
    color: rgb(253, 169, 58);
}

.rate span {
    color: rgb(204, 203, 203);
    font-size: 13px;
}

.down {
    height: 80px;
    width: 80px;
    background-color: antiquewhite;
    border: 5px solid white;
    border-radius: 50%;
    color: rgb(253, 169, 58);
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* bottom: 10px; */
    margin-left: 50%;
    bottom: -40px;
}

.down:hover {
    background-color: rgb(253, 169, 58);
    color: white;
}

/* About Section */

.about-section {
    height: 100%;
    width: 100%;
    flex-direction: column;
}

.about-circle {
    margin-top: 50px;
    margin-left: 75px;
    display: flex;
    justify-content: center;
}

.head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    height: 120px;
    width: 120px;
    text-wrap: nowrap;
    border-radius: 50%;
    background: linear-gradient(antiquewhite, white);
}

.heading {
    font-size: 30px;
    color: #3c4a57;
    font-weight: 600;
}

.head hr {
    height: 2px;
    width: 80px;
    background-color: rgb(253, 169, 58);
    border: none;
}

hr+p {
    color: #a1a1a1;
    font-weight: 600;
    font-size: 18px;
}

.about {
    display: flex;
    padding: 80px 100px;
    align-items: center;
    gap: 50px;
}

.about-left {
    width: 50%;
}

.about-left h1 {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #3c4a57;
}

.about-left p {
    color: #a1a1a1;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-left h3 {
    margin-bottom: 30px;
    color: #3c4a57;
}


.skills {
    display: flex;
    gap: 30px;
}

.skill {
    text-align: center;
}


.skill p {
    font-weight: bold;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    background:
        conic-gradient(#0aa 0% 95%, #ddd 95%);
    position: relative;
}

.circle::before {
    content: "";
    position: absolute;
    height: 75px;
    width: 75px;
    background: #f2f2f2;
    border-radius: 50%;
}

.circle span {
    position: relative;
}

.c2 {
    background: conic-gradient(#f2a93b 0% 70%, #ddd 70%);
}

.c3 {
    background: conic-gradient(#ff4c70 0% 95%, #ddd 95%);
}

.c4 {
    background: conic-gradient(#3dbb84 0% 98%, #ddd 98%);
}

.skill p {
    margin-top: 10px;
    font-size: 14px;
    color: #3c4a57;
}


/* RIGHT SIDE */

.about-right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
}

.imgBox img {
    width: 100%;
}

.nameBox {
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: white;
    padding: 30px 50px;
    border-radius: 70px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.nameBox h2 {
    margin-bottom: 10px;
    font-size: 30px;
    color: #3c4a57;
}

.nameBox p {
    color: #f0a11c;
    background: #fdebd2;
    padding: 6px 18px;
    display: inline-block;
    font-size: 14px;
}

/* RESUME SECTION */

.myResume {
    height: 600px;
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    gap: 50px;

}

.resume1 {
    height: 90%;
    width: 50%;
    position: relative;
    border-radius: 25px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resume1 .exp button {
    height: 60px;
    width: 250px;
    padding: 10px 10px;
    background: #f0a11c;
    border: none;
    color: white;
    font-size: 18px;
    text-transform: capitalize;
    border-radius: 30px;
    box-shadow: 2px 2px 40px #f0be69;
    position: absolute;
    top: 150px;
    left: -120px;
    transform: rotate(270deg);
}

.resume1 hr {
    height: 1px;
    width: 100%;
    background: rgb(224, 223, 223);
    border: none;
}

.exp1,
.exp2 {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    padding-left: 70px;
}

.exp1 p {
    color: rgb(151, 151, 151);
    font-size: 12px;
}

.exp2 p {
    color: rgb(151, 151, 151);
    font-size: 12px;
}

.exp1 h4 {
    color: #3c4a57;
    ;
}

.exp2 h4 {
    color: #3c4a57;
    ;
}

.exp1 .fa-user-secret {
    color: #f0a11c;
}

.exp2 .fa-laptop-code {
    color: crimson;
}

/* LANGUAGE */
.langBox {
    height: 180px;
    width: 80%;
    display: flex;
    border-radius: 20px;
    margin-top: 50px;
    justify-self: center;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lang button {
    height: 55px;
    width: 190px;
    background-color: #f0a11c;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    position: absolute;
    top: -30px;
    left: 30px;
    box-shadow: 2px 2px 40px #f0be69;
}

.lang button:hover {
    transition: 0.3s ease-in;
    transform: translateY(-5px);
}

.language {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.language p {
    font-size: 14px;
    font-weight: 600;
    color: #464545;
}


.lang1,
.lang2,
.lang3,
.lang4,
.lang5 {
    display: flex;
    flex-direction: column;
    gap: 20px;

    span {
        font-size: 30px;
    }
}

.lang1 span {
    color: teal;
}

.lang1 .per .fill {
    width: 96%;
    background: teal;
}

.lang1 .per .emp {
    width: 4%;
    background-color: rgb(180, 253, 253);
}


.lang2 span {
    color: crimson;
}

.lang2 .per .fill {
    width: 80%;
    background: crimson;
}

.lang2 .per .emp {
    width: 20%;
    background-color: rgb(247, 167, 183);
}


.lang3 .per .fill {
    width: 80%;
    background: #f0a11c;
}

.lang3 span {
    color: #f0a11c;
}

.lang3 .per .emp {
    width: 20%;
    background-color: #f1cb89;
}

.lang4 .per .fill {
    width: 96%;
    background: green;
}

.lang4 .per .emp {
    width: 4%;
    background-color: rgb(170, 241, 170);
}

.lang4 span {
    color: green;
}

.lang5 .per .fill {
    width: 80%;
    background: rgb(180, 5, 180);
}

.lang5 span {
    color: rgb(180, 5, 180);
}

.lang5 .per .emp {
    width: 20%;
    background-color: rgb(247, 182, 247);
}

.per {
    height: 5px;
    border-radius: 3px;
    box-shadow: 0px 1px 5px rgb(202, 202, 202);
    width: 100px;
    display: flex;
    background: rgb(247, 180, 193);
}

.pdf {
    height: 100px;
    width: 100%;
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.pdf p {
    color: #464545;
    font-weight: bold;
}

.pdf button {
    height: 45px;
    width: 150px;
    background-color: #f0a11c;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* SPECIALIZED */
.withCard {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-self: center;
    margin: auto;
    gap: 20px;
}

.spCard {
    background: white;
    height: 300px;
    width: 23.6%;
    padding: 60px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-around;

}

.spCard:hover {
    border-bottom: 6px solid #f0a11c;
    transform: translateY(-5px);
    transition: 0.3s;
}

.pic img {
    width: 55px;
}

.spCard h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #464545;
}

.spCard p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

/* PORTFOLIO */

/* filter buttons */

.filter-menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    background: antiquewhite;
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.filter-menu button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #464545;
    padding: 8px 15px;
    border-radius: 20px;
}

.filter-menu button:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.filter-menu .active {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* grid */

.portfolio-grid {
    width: 80%;
    justify-self: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.item img {
    height: 250px;
    width: 250px;
    /* display:block; */
}

/* hover effect */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 250px;
    width: 250px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.item:hover img {
    transform: scale(1.2);
    transition: 1s;
}

.item:hover .overlay {
    opacity: 1;
    transform: scale(1.5);
}


/* Testimonials */


.testimonial {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.top img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.info span {
    font-size: 14px;
    color: #6c8db5;
}

.stars {
    color: #f6a623;
}

.stars i {
    font-size: 15px;
}

.gray {
    color: #bbb;
}

.review {
    background: #f5f4f4;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #eee;
}

.review i {
    background: transparent;
}

.review p {
    color: #777;
    font-style: italic;
    font-size: 12px;
    line-height: 2;
}

.quote {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 30px;
    transform: scaleX(-1);
    color: #f6a623;
    background: #fff;
    padding: 5px;
}


/* radio hide */
input {
    display: none;
}

/* dot active color */
input:checked+label {
    background: #f0a11c;
}

/* slider box */
.slider {
    width: 1100px;
    overflow: hidden;
    margin: auto;
    padding: 20px;
    position: relative;
}

/* slides container */
.slides {
    display: flex;
    gap: 50px;
    transition: 0.5s;
    animation: slide 6s infinite;
}

/* card design */
.card {
    min-width: 500px;
    height: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* animation */
@keyframes slide {

    0% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-1100px);
    }

    90% {
        transform: translateX(-1100px);
    }

    100% {
        transform: translateX(0);
    }

}

/* click hone par animation stop
#slide1:checked ~ .slider .slides,
#slide2:checked ~ .slider .slides{
animation:none;
} */

/* manual slide */
#slide1:checked~.slider .slides {
    transform: translateX(0);
}

#slide2:checked~.slider .slides {
    transform: translateX(-1100px);
}

/* dots */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dots label {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

#slide1:checked~.dots label[for="slide1"],
#slide2:checked~.dots label[for="slide2"] {
    background: #f0a11c;
}

/* pricing */

.pricing {
    width: 90%;
    margin: auto;
    text-align: center;
}

.save {
    display: inline-block;
    background: #f6a623;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.switch input {
    display: none;
}

.slideBtn {
    position: absolute;
    background: #ddd;
    border-radius: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slideBtn:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    transition: .3s;
}

input:checked+.slideBtn:before {
    transform: translateX(26px);
}

input:checked+.slideBtn {
    background: #f0a11c;
}

.plan {
    min-height: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: auto;
    box-shadow: 0 20px 30px rgb(0, 0, 0, 0.1);
}

.planImg {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid rgb(228, 227, 227);
}

.planImg .image {
    width: 180px;
    padding: 20px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #333;
}

.planImg .image img {
    height: 50px;
    width: 50px;
}

.planImg .image .curr {
    font-size: 18px;
}

.fea {
    height: 300px;
    width: 100%;
    display: flex;
    border: 1px solid rgb(228, 227, 227);
}

.features {
    height: 100%;
    width: 25%;
    display: flex;
    padding: 50px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    border-right: 1px solid rgb(228, 227, 227);
}

.check {
    height: 100%;
    width: 25%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 25%;
    border-right: 1px solid rgb(228, 227, 227);
}

.check span {
    display: inline-block;
    border: 1px solid;
    border-radius: 20px;
    position: absolute;
    top: -20px;
    padding: 10px 20px;
}

.fa-circle-check {
    color: #14a800;
}

.fa-circle-check+.gray {
    color: rgb(167, 164, 164);
}

.check .cIcons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check button {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 30px;
    border: none;
    position: absolute;
    bottom: -20px;
    color: white;
}

.check .orange {
    background: antiquewhite;
    color: #f0a11c;
    border: 1px solid #e9b761;
}

.check .orng {
    background: #f0a11c;
    box-shadow: 0 0 50px #e9b761;
}

.check .crimson {
    background-color: rgb(245, 187, 199);
    color: crimson;
    border: 1px solid rgb(241, 117, 142);
}

.check .crmsn {
    background: crimson;
    box-shadow: 0 0 50px rgb(241, 117, 142);
}

.check .teal {
    background-color: rgb(146, 241, 146);
    color: green;
    border: 1px solid rgb(76, 223, 76);
}

.check .grn {
    background-color: green;
    box-shadow: 0 0 50px rgb(103, 235, 103);
}

.check button:first-child {
    background: #f0a11c;
}


/* Contact */

.contact-section {
    width: 80%;
    margin: auto;
    margin-bottom: 50px;
    box-shadow: 0 0px 30px rgb(0, 0, 0, 0.1);
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 40px;
    display: flex;
    gap: 40px;
    border-radius: 8px;
}

/* LEFT SIDE */

.contact-form-area {
    flex: 2;
}

.contact-heading {
    margin-bottom: 8px;
    font-size: 18px;
    color: #333;
}

.contact-description {
    color: #7c7d7e;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-field {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #353434;
    font-weight: 700;
}

.form-input:focus {
    border-bottom-color: #f4ad2f;
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    outline: none;
    color: #333;
    display: block;
    border-bottom: 2px solid #f0eeee;
    padding: 10px 5px;
    background: transparent;
}

.form-input::placeholder {
    color: #d3cece;
}

.form-textarea::placeholder {
    color: #d3cece;
}

.form-textarea {
    resize: none;
    height: 60px;
}

.submit-btn {
    margin-top: 30px;
    background: #f4ad2f;
    border: none;
    padding: 14px 45px;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* SOCIAL */

.social-follow {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.follow {
    height: 80px;
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.follow-text {
    font-size: 12px;
    color: #353434;
    font-weight: bold;
}

.social-icons {
    height: 80px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    height: 20px;
    width: 20px;
    padding: 20px;
    background: #eef1f4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icons .social-icon:nth-child(1) i {
    color: crimson;
}

.social-icons .social-icon:nth-child(2) i {
    color: rgb(5, 5, 177);
}

.social-icons .social-icon:nth-child(3) i {
    color: rgb(84, 188, 230);
}

.social-icons .social-icon:nth-child(4) i {
    color: blue;
}

.social-icons .social-icon:nth-child(1) {
    background-color: rgb(250, 217, 222);
}

.social-icons .social-icon:nth-child(2) {
    background-color: rgb(196, 203, 245);
}

.social-icons .social-icon:nth-child(3) {
    background-color: rgb(200, 242, 243);
}

.social-icons .social-icon:nth-child(4) {
    background-color: rgb(181, 186, 250);
}

/* RIGHT SIDE */

.contact-info-area {
    flex: 1;
    background: #3f3652;
    color: white;
    padding: 30px;
    border-radius: 8px;
}

.info-heading {
    font-size: 20px;
    margin-bottom: 6px;
}

.info-description {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.contact-info-card {
    padding: 20px;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 20px;

    p {
        line-height: 20px;
    }
}

.email-card {
    background: #f4ad2f;
}

.phone-card {
    background: #48b58b;
}

.address-card {
    background: #f64662;
}

.contact-info-card i {
    margin-right: 10px;
}

/* footer */

.footer {
    background-color: #f4ad2f;
    display: flex;
    padding: 25px;
    color: white;
    font-weight: bold;
    justify-content: center;
}


/* Responsive */

/* ===== Responsive adjustments ===== */


/* Tablet */
/* @media screen and (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px;
    }

    .hero .left img.ban {
        height: auto;
        width: 80%;
    }

    .about {
        flex-direction: column;
        gap: 50px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .skills {
        justify-content: center;
        flex-wrap: wrap;
    }
} */

/* Mobile */
/* @media screen and (max-width: 768px) {

    .header,
    .menus {
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        font-size: 14px;
    }

    .hero .right p {
        font-size: 18px;
    }

    .hero .right .btn button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .about-left h1 {
        font-size: 22px;
    }

    .skills {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .special .withCard {
        flex-direction: column;
    }

    .langBox .language {
        flex-direction: column;
        gap: 15px;
    }

    .resume1 {
        width: 100%;
    }
} */

/* responsive */

/* @media(max-width:992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

/* @media(max-width:600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
} */

/* Small Mobile */
/* @media screen and (max-width: 480px) {
    .hero .right {
        padding: 0 10px;
    }

    .hero .right p {
        font-size: 16px;
    }

    .hero .right .btn button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .about-left h1 {
        font-size: 18px;
    }

    .about-right .imgBox img {
        width: 100%;
        height: auto;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-area {
        margin-top: 30px;
    }

    .pricePlan .planImg .image {
        width: 80%;
        margin: 10px auto;
    }
} */

@media (max-width:475px) {
    .logo img {
        height: 60px;
        width: auto;
    }

    header {
        height: 50px;
    }

    .ham-item {
        margin-top: 0px;
        font-size: 20px;
    }

    .menus {
        height: 50px;
        gap: 30px;
    }

    .icon {
        height: 50px;
        display: flex;
        align-items: center;
    }

    .icon-item {
        font-size: 20px;
    }

    #container {
        padding-top: 50px;
    }

    .left .ban {
        height: 300px;
        width: 300px;
    }

    .left {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
    }

    /* Image positions */
    .banner1 {
        height: 70px;
        position: absolute;
        top: -10px;
        left: 160px;
        animation: circleMove 5s linear infinite;
    }

    .banner2 {
        height: 70px;
        position: absolute;
        top: 60px;
        left: -20px;
        animation: circleMove 5s linear infinite;
    }

    .banner3 {
        height: 70px;
        position: absolute;
        top: 250px;
        left: 30px;
        animation: circleMove 5s linear infinite;
    }

    .banner4 {
        height: 70px;
        position: absolute;
        top: 120px;
        left: 250px;
        animation: circleMove 5s linear infinite;
    }

    /* Circular movement */
    @keyframes circleMove {
        0% {
            transform: rotate(0deg) translate(5px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translate(5px) rotate(-360deg);
        }
    }

    .hero .left {
        padding-top: 0px;
    }

    .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
    }

    .right .btn-1 {
        height: 40px;
        width: 150px;
        font-size: 12px;
    }

    .right .btn-1+p {
        font-size: 20px;
    }

    .btn button {
        height: 40px;
    }

    .box {
        height: 90px;
        width: 150px;
        background-color: white;
        border-radius: 5px;
        display: flex;
        padding-left: 10px;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 280px;
        left: 165px;
    }

    .exc {
        display: flex;
        gap: 10px;
    }

    .box span {
        font-size: 9px;
        margin-top: 2.5px;
    }

    .box img {
        margin-top: 7px;
        height: 20px;
    }

    .innerBox {
        height: 37px;
        width: 80%;
        background-color: rgb(245, 243, 243);
        border: 1px solid rgb(197, 197, 197);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .innerBox .icons{
        font-size: 8px;
        display: flex;
    }
    .innerBox i {
        color: rgb(253, 169, 58);
    }
    .exc span {
        line-height: 10px;
        margin-top: 10px;
    }
    .icons{
        line-height: 10px;
    }
    .rate span {
        color: rgb(204, 203, 203);
        font-size: 6px;
    }
    .down{
        height: 50px;
        width: 50px;
        position: absolute;
        top: 690px;
        left: -20px;
    }
    .about-circle{
        display: flex;
        justify-self: center;
        margin-left: 10px;
    }
    .about-circle .heading{
        font-size: 25px;
    }
    hr+p{
        font-size: 13px;
    }
    .about-left h1{
        font-size: 18px;
    }
    .about-left p{
        font-size: 14px;
    }
    .skill {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nameBox{
        height: 100px;
        width: 250px;
        padding: 20px;
    }
    .nameBox h2{
        font-size: 20px;
    }
    .nameBox p{
        font-size: 12px;
    }
    .resume1 .exp button{
        height: 50px;
        margin-left: 20px;
        width: 220px;
        font-size: 14px;
    }
    .langBox{
        margin-bottom: 20px;
    }
    .langBox .lang button{
        height: 50px;
        font-size: 14px;
    }
    .lang{
        padding-top: 20px;
    }
    .language {
        flex-direction: column;
    }

    .lang1,
    .lang2,
    .lang3,
    .lang4,
    .lang5 {
        width: 100%;
    }
    .pdf{
        height: 60px;
        display:flex;
        flex-direction: column;
        gap: 10px;
    }
    .pdf p{
        font-size: 12px;
    }
    .pdf button{
        font-size: 14px;
    }
    .filter-menu{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .active{
        display: flex;
        align-items: center;
    }
    .filter-menu{
        display: flex;
        gap: 0px;
        justify-content: space-evenly;
    }
    .filter-menu button{
        height: 20px;
        font-size: 12px;
    }
    .planImg{
        height: 100px;
        display: flex;
        gap: 10px;
    }
    .planImg .image {
        padding: 0;
    }
    .planImg .image img{
        height: 20px;
        width: 20px;
    }
    .planImg .image .curr{
        font-size: 12px;
    }
    .fea{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .check{
        padding: 60px;
    }
    .features{
        font-size: 14px;
    }
    .social-follow{
        display: flex;
        flex-direction: column;
    }
    .contact-info-area{
        padding: 20px;
    }
    .footer{
        height: 50px;
        display: flex;
        align-items: center;
    }
    .footer .footer-text{
        font-size: 11px;
    }
}

@media (min-width:375px) and (max-width:424px)  {
    .banner1 {
        height: 70px;
        position: absolute;
        top: 2px;
        left: 220px;
        animation: circleMove 5s linear infinite;
    }

    .banner2 {
        height: 70px;
        position: absolute;
        top: 90px;
        left: -10px;
        animation: circleMove 5s linear infinite;
    }

    .banner3 {
        height: 70px;
        position: absolute;
        top: 250px;
        left: 50px;
        animation: circleMove 5s linear infinite;
    }

    .banner4 {
        height: 70px;
        position: absolute;
        top: 170px;
        left: 270px;
        animation: circleMove 5s linear infinite;
    }

    /* Circular movement */
    @keyframes circleMove {
        0% {
            transform: rotate(0deg) translate(5px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translate(5px) rotate(-360deg);
        }
    }
}
@media (min-width:425px) and (max-width:767px) {
    .banner1 {
        height: 70px;
        position: absolute;
        top: 0px;
        left: 240px;
        animation: circleMove 5s linear infinite;
    }

    .banner2 {
        height: 70px;
        position: absolute;
        top: 70px;
        left: 15px;
        animation: circleMove 5s linear infinite;
    }

    .banner3 {
        height: 70px;
        position: absolute;
        top: 230px;
        left: 55px;
        animation: circleMove 5s linear infinite;
    }

    .banner4 {
        height: 70px;
        position: absolute;
        top: 170px;
        left: 290px;
        animation: circleMove 5s linear infinite;
    }

    /* Circular movement */
    @keyframes circleMove {
        0% {
            transform: rotate(0deg) translate(5px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translate(5px) rotate(-360deg);
        }
    }
}

@media (max-width:768px) {

    .hero {
        padding: 40px 10px;
    }

    .menus {
        height: 50px;
        gap: 30px;
    }

    .icon {
        display: flex;
        align-items: center;
    }

    .right p {
        font-size: 28px;
        line-height: 40px;
    }

    .btn {
        flex-direction: column;
    }

    .skills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .skill {
        width: 45%;
    }

    .langBox {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .language {
        flex-wrap: wrap;
        gap: 20px;
    }

    .lang1,
    .lang2,
    .lang3,
    .lang4,
    .lang5 {
        width: 40%;
        align-items: center;
    }

    .spCard {
        width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .item img {
        width: 100%;
        height: auto;
    }

    .overlay {
        width: 100%;
        height: 100%;
    }

    .slider {
        padding: 10px;
    }

    .card {
        min-width: 100%;
        height: auto;
    }

    .contact-section {
        width: 95%;
    }

    .form-row {
        flex-direction: column;
    }
    .langBox{
        margin-top: 550px;
        padding: 50px;

    }
    .fea{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .check{
        padding: 60px;
    }
    .features{
        font-size: 16px;
    }

}

@media (min-width:769px) and (max-width:1024px) {
    .menus .menu{
        display: flex;
        gap: 30px;
    }
    .hero{
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
     .banner1 {
        height: 150px;
        position: absolute;
        top: 0px;
        left: 540px;
        animation: circleMove 5s linear infinite;
    }

    .banner2 {
        height: 150px;
        position: absolute;
        top: 150px;
        left: 150px;
        animation: circleMove 5s linear infinite;
    }

    .banner3 {
        height: 150px;
        position: absolute;
        top: 500px;
        left: 200px;
        animation: circleMove 5s linear infinite;
    }

    .banner4 {
        height: 150px;
        position: absolute;
        top: 330px;
        left: 700px;
        animation: circleMove 5s linear infinite;
    }

    /* Circular movement */
    @keyframes circleMove {
        0% {
            transform: rotate(0deg) translate(5px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translate(5px) rotate(-360deg);
        }
    }
    .langBox{
        margin-top: 500px;
    }
    .down{
        margin-left: 490px;
    }
    .about-left{
        display: flex;
        flex-direction: column;
        align-items: center;
        h1{
            font-size: 25px;
            line-height: 30px;
        }
        p{
            font-size: 20px;
        }
        h3{
            font-size: 25px;
        }
        .skill{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .skills .skill{
            width: 200px;
            margin-left: 20px;
        }
    }
    .fea{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .check{
        padding: 60px;
    }
    .features{
        font-size: 16px;
    }
}

@media (max-width:1024px) {

    .hero {
        flex-direction: column;
        height: auto;
        padding: 50px 20px;
    }

    .left,
    .right {
        width: 100%;
        text-align: center;
    }

    .right {
        margin-top: 40px;
        align-items: center;
    }

    .about {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .myResume {
        flex-direction: column;
        width: 90%;
    }

    .resume1 {
        width: 100%;
    }

    .withCard {
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider {
        width: 100%;
    }

    .card {
        min-width: 100%;
    }

    .plan {
        width: 100%;
    }

    .fea {
        flex-direction: column;
        height: auto;
    }

    .features,
    .check {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        /* padding: 30px; */
    }

    .contact-wrapper {
        flex-direction: column;
    }

}