:root {
    --body-background: #111;
    --bg1: #121214;
    --border-color: rgba(119, 119, 125, .2);
    --orange: #eb5d3a;
    --blue: rgb(27, 114, 172);
    --blue1: #1595b6;

    --blue2: #1B3068;
    --blue3: #1595b6;
    --paracolor: #9BA1A7;
    --font1: "Poppins", sans-serif;
    --font2: "Sora", sans-serif;
    --font3: "Merriweather", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font1);
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loading-text {
    display: flex;
   
  }
  
  .loading-text span {
    color: var(--blue3);
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 15px;
    animation: blur-text 1.5s infinite linear alternate;
  }
  
  .loading-text span:nth-child(1) { animation-delay: 0s; }
  .loading-text span:nth-child(2) { animation-delay: 0.3s; }
  .loading-text span:nth-child(3) { animation-delay: 0.6s; }
  .loading-text span:nth-child(4) { animation-delay: 0.9s; }
  .loading-text span:nth-child(5) { animation-delay: 1.2s; }
  .loading-text span:nth-child(6) { animation-delay: 1.5s; }
  .loading-text span:nth-child(7) { animation-delay: 1.8s; }
  
  
  @keyframes blur-text {
    0% { filter: blur(0px); }
    100% { filter: blur(4px); }
  }

.hidden-content {
    display: none;
}

.canvas {
    position: absolute;
    top: 0;
}

#wrapper-canva {
    width: 100px;
    height: 100%;
    display: block;
    background-color: #fff;
}

.wrapper {
    display: none;
}

header {
    z-index: 33;
    background-color: var(--body-background);
}

.logo {
    width: 40px;
}

.offcan{
    max-width: 400px;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #222;
    z-index: 10;
    transition: .3s;
}
.off-heading{
    background-color: #222;
    color: #fff;
    padding: 20px;
}
.off-heading h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 0;
}

.offcan-body {
    background-color: #222;
}

.close {
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: 24px;
}

.off-list {
    list-style-type: none;
    padding: 0;
}

.off-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    transition: .3s;
    height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
}

.off-nav-a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.off-list li:hover {
    background-color: var(--blue1);
}

nav {
    height: 15vh;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
    font-family: var(--font3);
}

.nav-a-h {
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 0%;
    border-bottom: 3px solid var(--blue);
    transition: .3s;
}

.nav-a:hover .nav-a-h {
    width: 50%;
}

.nav-a {
    position: relative;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: .3s;
    position: relative;
    font-weight: 500;
    font-family: var(--font3);
}

.nav-a:hover {
    color: var(--blue);
}

.fa-squarespace {
    height: 15px;
    width: 15px;
    color: #fff;
    padding-left: 10px;
}

.fa-bars {
    color: #fff;
    font-size: 30px;
    margin-left: 25px;
}

.hero-section {
    height: 100vh;
    background-color: var(--body-background);
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hero div {
    position: relative;
}

.my-intro {
    text-align: center;
    width: 100%;
}

.social-list-div {
    width: 100%;
}

.hero-logo-div {
    position: relative;
    margin: 0 auto;
}

.logo-img {
    width: 250px;
}


/* ========================== */
.intro {
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    font-family: var(--font3);
    font-style: italic;
}

.role {
    font-family: var(--font3);
    font-style: italic;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
}

.fa-circle {
    font-size: 12px;
    color: var(--blue);
    margin-right: 20px;
}


.social-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    justify-content: center;
    gap: 20px;
}



.social-a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social-a:hover {
    color: var(--blue);
}

.s-icon {
    font-size: 25px;
}


.about-section {
    padding: 25px 0;
    background-color: var(--body-background);
}

.heading-h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    color: var(--blue3);
}

.about-sub-block {
    border-bottom: 2px solid var(--blue3);
    padding: 10px 0;
    border-radius: 0 0 10px 10px;

}

.about-nav-list {
    display: flex;
    gap: 15px;
    list-style-type: none;
}

.about-list-a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding: 7px 0;

}

.about-para {
    font-size: 15px;
    color: #fff;
}

.learn_score,
.learn_at {
    color: #fff;
    font-family: var(--font3);
    font-size: 14px;
    margin: 10px 0;
}

.learn_at b {
    font-size: 16px;
}

.activeLink {
    border-bottom: 3px solid var(--blue3);
}

.date {
    color: var(--blue1);
    font-size: 15px;
    font-weight: 500;
}

.comp-name {
    color: var(--blue3);
    font-size: 13px;
    margin-bottom: 5px;
}

.about-wrapper {
    position: relative;
    height: 210px;
}
.about-cat-experience-para{
    font-size: 14px;
    color: #fff;
}
.number {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: transparent;
    -webkit-text-stroke: 1px #ddd;
    margin-bottom: 0;
}

.about-cat-heading {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--blue3);
}

.about-cat-para {
    font-size: 14px;
    margin-bottom: 20px;
    font-family: var(--font1);
    color: #fff;

}

.color-btn {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    display: inline-block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-size: 12px;
}

.color-btn:before {
    content: "";

    background: linear-gradient(45deg,
            #fff,
            #1B3068,
            #1595b6,
            #121212);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.color-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.skill-section {
    background-color: var(--body-background);
    padding: 25px 0;
}

.skill-card {
    padding: 30px;
    background-color: #000;
    border-radius: 15px;
}

.chart {
    position: relative;
}

.chart-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.lang-name {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-top: 5px;
}

.skill-para {
    color: #fff;
    margin-bottom: 30px;
    font-size: 12px;
}

/* ============myproject========================== */
.myprojects {
    background-color: #111;
    position: relative;
    padding: 30px 0;
}
.workBtns{
    display: flex;
    
}
.prev,.next{
    height: 35px;
    width: 80px;
    border: 1px solid var(--blue3);
    background-color: #111;
    color: var(--blue3);
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
}
.latest-work {
    font-size: 32px;
    background-color: transparent;
    position: relative;
    z-index: 10;
    font-weight: bold;
    width: max-content;
    border-bottom: 2px solid var(--blue3);
    color: var(--blue3);
}

.prj-para {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
}
.prj-lang-list{
    list-style-type: none;
    padding: 0;
}
.prj-lang {
    padding: 5px 13px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    
}

.prj-img-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 200ms ease-in-out;
    width: 100%;
    --tw-drop-shadow: drop-shadow(0 0px 60px rgba(59, 130, 246, 0.6));
    filter: var(--tw-drop-shadow);
    
}
.owl-caro{
    --tw-drop-shadow: drop-shadow(0 0px 60px rgba(59, 130, 246, 0.6));
    filter: var(--tw-drop-shadow);
}
.item{
    width: 100%;
}
.owl-carousel .owl-item img{
    margin: 0 auto;
}
.prj-img { 
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    border: 2px solid #fff;
}

.prj-img-title {
    position: absolute;
    top: -24px;
    left: 30%;
    padding: 5px 7px;
    background-color: var(--blue3);
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    visibility: hidden;
}

.prj-img-title::after {
    content: '';
    width: 1rem;
    height: 1rem;
    background: inherit;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -0.5rem;
}

.prj-img-block:hover .prj-img-title {
    visibility: visible;
    top: -44px;
}

.prj-title {
    font-size: 25px;
    color: var(--blue3);
    font-weight: 700;
    text-transform: capitalize;
}

.prj-subtitle {
    font-size: 16px;
    color: var(--blue3);
    display: block;
    margin-bottom: 10px;
}

.prj-wrapper {
    display: flex;
    align-items: center;
    margin-top: 35px;
    flex-direction: row !important;
    position: relative;
    gap: 1.5rem !important;
    flex-wrap: wrap;
}

.horizontal-line {
    height: 1px;
    background-color: #1788ae;
    position: absolute;
    top: 50%;
    left: 25%;
    right: 50%;
    display: none;
}

.odd-line {
    height: 1px;
    right: 25%;
    left: 50%;
    background-color: var(--blue3);
    position: absolute;
    top: 50%;
}

.circle {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 3px solid #459bd5;
    background-color: #111;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
    transition: transform 100ms ease-in-out;
}

.circle:hover {
    transform: translateX(-50%) scale(1.1);
}


.divider {
    width: 2px;
    background-color: #1788ae;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.work-section2{
    background-color: var(--body-background);
    padding: 20px 0; 
    width: 100%; 
}
.work-para{
    font-size: 12px;
    color: var(--paracolor);
    margin-bottom: 30px;
}
.work-list{
    list-style-type: none;
    display: flex;
    padding: 0;
    margin-bottom: 50px;
}
.work-list li{
    margin-right: 20px;
}
.work-list-a{
    color: var(--paracolor);
    font-family: var(--font1);
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: .3s;
}
.work-list-a::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 60%;
    border-bottom: 2px solid var(--orange);
    left: 0;
    top: 0;
}
.work-list-a:hover{
    color: var(--orange); 
}

.project_img{
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}
.baseonheading{
    font-size: 30px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 20px;
    color: var(--blue3);
}

.prj-heading{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    color: var(--blue3);
}
.rprev1,.rnext1{
    height: 35px;
    width: 80px;
    border: 1px solid var(--blue3);
    background-color: #111;
    color: var(--blue3);
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
}
.fa-arrow-up-right-from-square{
    margin-left: 10px;
}

.contact-section {
    background-color: #111;
    padding: 30px 0;

}

.location {
    padding: 50px 0;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bi-geo-alt,
.bi-telephone,
.mail-i {
    color: var(--blue1);
    font-size: 20px;

}

.h4-heading {
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
    color: #fff;
}

.contact-para {
    font-size: 15px;
    color: var(--paracolor);
}

.form-wraper {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

label {
    font-size: 16px;
    color: var(--paracolor);
    margin-bottom: 10px;
}

input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 0 10px;
    color: #fff;
    background-color: transparent;
    border: 1px solid var(--blue1);
}

textarea {
    width: 100%;
    height: 150px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 15px;
    background-color: transparent;
    border: 1px solid var(--blue1);
    padding: 10px;
}

.mail-i2 {
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
}

footer {
    background-color: var(--body-background);
    padding: 50px 0;
}
.foot_img{
    width: 100px;
}
.f-img {
    width: 20px;
    height: 20px;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid var(--blue1);
    margin-right: 30px;
    box-sizing: content-box;
}

.f-img-dis {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.foot-a {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.foot-para {
    font-size: 15px;
    color: #fff;
}

.f-icon {
    color: var(--blue1);
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--blue1);
}

.copyright {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

@media (min-width:768px) {
    nav{
        position: absolute;
        width: 100%;
    }

    .hero {
        flex-wrap: nowrap;
    }

    .intro {
        font-size: 35px;

    }

    .my-intro {
        width: 304px;
        text-align: left;
    }

    .logo-img {
        width: 285px;
    }

    .social-list {
        flex-direction: column;
        align-items: end;
        gap: 0;
    }

    .social-list li {
        margin-bottom: 20px;
    }

    .social-list-div {
        width: 37%;
    }

    .hero-logo-div {
        margin: 0;
    }

    .color-btn {
        font-size: 15px;
    }

    /* =====about======= */
    .about-section {
        padding: 50px 0;
    }

    .heading-h2 {
        font-size: 40px;
        padding: 10px 0;
    }

    .about-para {
        font-size: 15px;
    }

    .about-cat-para {
        font-size: 15px;
    }

   
    .skill-section {
        padding: 50px 0;
    }

    .skill-para {
        margin-bottom: 40px;
        font-size: 15px;
    }

    .latest-work {
        background-color: #111;
    }

    .divider {
        display: block;
    }

    .horizontal-line {
        display: block;
    }

    .circle {
        display: block;
    }

    .prj-img-block {
        max-width: 320px;
    }

    .prj-img-block:hover {
        transform: scale(1.05);
    }

    .prj-wrapper {
        flex-wrap: nowrap;
    }

    .contact-section {
        padding: 30px 0;
    }
    .copyright{
        text-align: left;
    }
}

@media (min-width:992px) {
    .logo-img {
        width: 406px;
    }

    .intro {
        font-size: 45px;

    }

    .social-list li {
        margin-right: 20px;
    }
}