:root {
    --primary-linearcolor: #2b1555;
    --secondary-linearcolor: #864ff4;
}

/* For Firefox */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: var(--secondary-linearcolor); /* Light grey background */
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-linearcolor); /* Blue thumb */
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    cursor: grab;
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.nav-body {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: box-shadow 0.3s ease;
    /* For smooth shadow transition */
    background: linear-gradient(to right, white, rgb(243, 245, 248));
}

.nav-sticky {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Shadow effect */
}


.nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem;
    position: relative;
    /* border-bottom: 1px solid grey; */
    /* background-color: transparent; */
}

.navbar_logo {
    display: flex;
    align-items: end;
}

.navbar_logo .text-logo-navbar{
    /* border: 1px solid red; */
    margin-bottom: -6px;
}
.navbar_logo h4 {
    font-size: 21px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    margin-left: 8px;
}

.logo-img-container {
    width: 165px;
}

.logo-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar_links {
    display: flex;
    padding-top: 0rem;
    /* border: 1px solid red; */
}

.navbar_links ul {
    display: flex;
    list-style: none;
    margin-top: 0.65rem;
    margin-bottom: 0;
    margin-right: 1.5rem;
}

.navbar_links ul li a {
    margin:0 0.5rem;
    padding: 1rem 0.7rem;
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
    /* border: 1px solid red; */
}
.navbar_links ul li a::after {
    content: "";
    background: linear-gradient(to left, var(--primary-linearcolor), var(--secondary-linearcolor));
    position: absolute;
    /* border-bottom: 4px solid var(--primary-linearcolor); */
    width: 0;
    height: 4px;
    left: 6%;
    bottom: 8%;
    transition: width 0.4s ease-in-out;
}

.navbar_links ul li a:hover::after {
    width: 90%;
}

.navbar_links ul li a:hover {
    color: var(--primary-linearcolor); /* Optional: Change link color on hover */
}


/* Style for the current active link */
.navbar_links ul .current_nav_link {
    position: relative;
    color: var(--primary-linearcolor); /* Change the text color of the current link */
    font-weight: 600;
    
}

.navbar_links ul .current_nav_link::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 90%;
    left: 6%;
    bottom: 8%;
    background: linear-gradient(to left, var(--primary-linearcolor), var(--secondary-linearcolor)); /* Gradient for the line */

}

.nav-btn {
    border: none;
    padding: 0.7rem 2rem;
    background: linear-gradient(to left, var(--primary-linearcolor), var(--secondary-linearcolor));
    border-radius: 25px;
    color: white;
    font-family: "Sora", sans-serif;
    font-weight: 600;
}

.menu-button-small-screen{
    display: none;
}


/* Menu button with Open Close Menu List Starts Here */

.menu-absolute-section{
    display: none;
}


/* Menu button with Open Close Menu List Ends Here */



.carousel-back {
    background: linear-gradient(to right, white, rgb(243, 245, 248));
}


.carousel-section {
    display: flex;
    align-items: center;
    gap: 13%;
    margin-top: 10rem;
}

.carousel-index {
    position: relative;
    /* height: ; */
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro_text svg {
    font-family: "Russo One", sans-serif;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 49%;
    top: 70%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: 3s pulsate infinite alternate ease-in-out;
}

.intro_text svg text {
    text-transform: uppercase;
    /* animation: stroke 4s; */
    stroke-width: 0.8;
    stroke: #9284ab;
    fill: transparent;
    font-size: 300px;
    display: inline-block;
    opacity: 0;
}

.intro_text svg text.animate-stroke {
    animation: stroke 4s;
    /* Adjust the duration as needed */
    opacity: 0.7;
}

@keyframes stroke {
    0% {
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }

    100% {
        stroke-dashoffset: 100%;
        stroke-dasharray: 100% 0;
        stroke-width: 1;
    }
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.left-desc-part {
    width: 57%;
    margin-top: 3.5rem;
    position: relative;
    z-index: 5;
}

.left-desc-part .name h4 {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.left-desc-part .name h2 {
    font-size: 4.1rem;
    font-weight: 800;
    font-family: "Sora", sans-serif;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.8rem;
}

.left-desc-part .name p {
    font-size: 20px;
    padding-bottom: 2rem;
    color: rgb(57, 57, 57);
    letter-spacing: 0.4px;
}

.icons-download-button {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 4%;
}

.download-btn {
    border: 1.5px solid var(--secondary-linearcolor);
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 18px;
    font-family: "Sora", sans-serif;
    background: transparent;
    border-radius: 25px;
    color: var(--secondary-linearcolor);
    margin-right: 1.5rem;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background-color: var(--secondary-linearcolor);
    color: white;
}

.icons-carousel-display{
    display: flex;
    gap: 15%;
    margin-top: 1.5rem;
}
.icons-in-carousel {
    border: 1px solid var(--secondary-linearcolor);
    border-radius: 50%;
    padding: 6px;
    transition: all 0.2s ease;
    color: var(--secondary-linearcolor);
}

.icons-download-button i {
    font-size: 1.1rem;
    padding: 5px;
}

.icons-in-carousel:hover {
    background-color: var(--secondary-linearcolor);
    color: white;
}




.right-image-part {
    width: 40%;
}

.carousel-img-container-smallDevices{
   display: none;
}

.right-image-part .carousel-img-container {
    width: 390px;
    rotate: 7deg;
    transition: all 0.5s ease;
    position: relative;
    z-index: 5;
}

.right-image-part .carousel-img-container:hover {
    rotate: 0.5deg;
}

.right-image-part .carousel-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.funfact-area {
    padding: 6rem 0;
}
.success-stats-col{
    width: 33.33%;
    text-align: center;
}

.funfact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
}
.funfact-item .odometer{
    font-size: 4.4rem;
    font-weight: 600;
    color: var(--secondary-linearcolor);
}
.funfact-item h3{
    font-size: 4.4rem;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: var(--secondary-linearcolor);
}
.success-stats-col .text{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    word-spacing: 2px;
    color: var(--primary-linearcolor);
}


/*my Quality Services section css */

.quality_services_section {
    width: 100%;
    height: 100%;
    padding: 6rem 0;
    padding-bottom: 7rem;
    background-color: #f6f3fc;
}

.quality_services_section .section-header {
    width: 50%;
    margin: auto;
    margin-bottom: 2.5rem;
}

.quality_services_section .section-header h2 {
    font-size: 3.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
}

.quality_services_section .section-header p {
    font-size: 17px;
}

.quality_services_section .services-widget .service-item {
    background-color: transparent;
    border: 1px solid #c2c2c2;
    padding: 25px;
    gap: 1%;
}

.quality_services_section .services-widget .service-item:hover {
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
}

.quality_services_section .services-widget .service-item .left-box {
    width: 43%;
    color: var(--secondary-linearcolor);
}

.quality_services_section .services-widget .service-item:hover .left-box {
    color: white;
}

.quality_services_section .services-widget .service-item .left-box .number {
    font-size: 22px;
    font-weight: 600;
    margin-right: 20px;
    margin-top: 6px;
}

.quality_services_section .services-widget .service-item .left-box .service-title {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.quality_services_section .services-widget .service-item .right-box {
    width: 53%;
    margin-right: 2.7%;
    color: var(--primary-linearcolor);
}

.quality_services_section .services-widget .service-item:hover .right-box {
    color: white;
}

.quality_services_section .service-item i {
    font-size: 1.7rem;
    color: var(--secondary-linearcolor);
}

.quality_services_section .service-item:hover i {
    color: white;
}


/* My Recent Works Section */

.recent-works-section {
    width: 100%;
    height: 100%;
    padding-bottom: 5.6rem;
}

.recent-works-section .section-header {
    width: 50%;
    margin: auto;
    margin-top: 5rem;
    margin-bottom: 2.5rem;
}

.recent-works-section .section-header .section-title {
    font-size: 3.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
}

.recent-works-section .section-header p {
    font-size: 17px;
}

.portfolio-boxes {
    display: grid;
    height: 100%;
    align-items: center;
    gap: 5%;
    grid-template-columns: repeat(3, 1fr);
    /* Show 2 boxes per row by default */
}

.portfolio-box {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow:0 2px 12px rgba(85, 85, 85, 0.47);
}
.portfolio-box .project-img-container{
    /* width: 00px; */
    height: 480px !important;
}
.portfolio-box .project-img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.proj-seperate-bx{
    display: flex;
    flex-direction: column;
}
.proj-seperate-bx .portfolio-box{
    margin-bottom: 1.3rem;
}

.live_buttons a{
    background-color: white;
    border: 2px solid var(--secondary-linearcolor);
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.65rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    color: var(--secondary-linearcolor);
    width: 100%;
    display: flex;
    justify-content: center;
}

.nodemoavailable-btn{
    opacity: 0.3;
    pointer-events: none;
}


/* Education Experience Section CSS */

.education-experience-section {
    width: 100%;
    background-color: #f6f3fc;
}

.education-experience-body {
    display: flex;
    width: 100%;
    margin-top: 5rem;
    padding-bottom: 6.2rem;
    padding-top: 5rem;
    gap: 8%;
}

.education-experience-body .left-education {
    width: 42%;
    margin-right: 1rem;
}

.education-experience-heading h2 {
    font-size: 2.7rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
    margin-bottom: 4rem;
}

.education-experience-desc-box {
    background-color: white;
    padding: 25px;
    padding-left: 40px;
    padding-bottom: 5px;
    border-radius: 17px;
    margin-top: 1.6rem;
    transition: all 0.4s ease;
}
.education-experience-desc-box:hover {
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
    color: white;
}

.education-experience-desc-box h4 {
    font-size: 17px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: var(--secondary-linearcolor);
}
.education-experience-desc-box:hover h4 {
    color: var(--primary-linearcolor);
}

.education-experience-desc-box h3 {
    font-weight: 600;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
}
.education-experience-desc-box h3 .sub-education{
    font-size: 19px;
}

.education-experience-desc-box p {
    font-size: 17px;
}


.education-experience-body .right-experience {
    width: 47%;
    position: relative;
}



/* My Skills Section CSS */
.my-skills {
    padding: 2rem 0;
    height: 100%;
    padding-bottom: 4.5rem;
    margin-bottom: 0rem;
}

.my-skills-section {
    margin-top: 4rem;
    height: 100%;
}

.section-header {
    width: 50%;
    margin: auto;
}

.section-header .section-title {
    font-size: 3.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
}

.my-skills-section .section-header p {
    font-size: 17px;
    margin-bottom: 2rem;
}



/* .skills-boxes{
    padding-top: 5rem;
} */

.skills-boxes-with-para {
    display: grid;
    gap: 1.4%;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    
}

.skill-boxes {
    width: 100%;
}

.skill_box {
    width: 98%;
    height: 180px;
    border: 0.2px solid #f6f3fc;
    background-color: #f3effc;
    margin: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.skill_box:hover {
    background-color: var(--primary-linearcolor);
    border: 1px solid #f6f3fc;
}

.skill_box .skill-img-container {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-top: 1.5rem;
}

.skill_box .skill-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skill_box:hover .skill-img-container img {
    filter: invert(0%) brightness(120%);
}

.skill_box .percentage-skills {
    text-align: center;
    margin-top: 1rem;
}

.skill_box .percentage-skills h4 {
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: #616161;
}

.skill_box:hover .percentage-skills h4 {
    color: white;
}

.skill-boxes .skill-name {
    text-align: center;
    margin-top: 0.6rem;
    color: var(--secondary-linearcolor);
}

.skill-boxes .skill-name p {
    font-weight: 500;
    font-family: "Sora", sans-serif;
}





/* Blogs Sections in Index CSS */

.blogs-col-index{
    width: 98%;
    margin: auto;
}

.blog-box {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 18px;
    position: relative;
    box-shadow: 1px 3px 6px rgba(56, 56, 56, 0.5);
}
.blog-box .blog-img-container {
    width: 420px;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
}
.blog-box .blog-img-container:hover img{
    transform: scale(1.16); /* Zoom the image to 120% */
    filter: blur(2px); /* Apply a blur effect */
}
.blog-box .blog-img-container img{
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.blog-box .blog-details-box{
    width: 92%;
    background-color: white;
    border-radius: 15px;
    position: absolute;
    z-index: 50;
    top: 66%;
    left: 4%;
    padding: 13px 15px;
    transition: all 0.4s ease;
    box-shadow: 1px 3px 6px rgba(56, 56, 56, 0.5);
}

.blog-box:hover .blog-details-box {
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor)); /* Gradient background on hover */
    color: white;
    border: none;
}

.blog-box .blog-details-box h4{
    font-size: 22px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}

.blog-box .date-and-name-onBlog{
    display: flex;
    justify-content: space-between;
}
.date-and-name-onBlog div h6{
    font-size: 14px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: #767676;
}
.blog-box:hover .date-and-name-onBlog div h6{
    color: white;
}
.date-and-name-onBlog div i{
    font-size: 12.5px;
    color: #767676;
    margin-right: 5px;
    padding-top: 1.5px;
}
.blog-box:hover .date-and-name-onBlog div i{
    color: white;
}


/* Pagination Styling */
#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.6rem;
    margin-bottom: 5rem;
    gap: 15px;
}

#pagination button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#pagination button:hover:not(:disabled) {
    background-color: #0056b3;
}

#page-info {
    font-size: 16px;
    color: #333;
}

/* Contact Section in Index Page CSS */

.contact-form-section {
    width: 100%;
    background-color: #f6f3fc;
    height: 100%;
    padding-bottom: 6rem;
    padding-top: 5rem;
}

.contact-form-desc-divide {
    width: 100%;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 5%;
}

.contact-form-desc-divide .left-form-part {
    width: 50%;
    height: 100%;
    background-color: white;
    padding: 40px 45px;
    border-radius: 20px;
}

.contact-form-desc-divide .left-form-part h3 {
    font-size: 3.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
}

.contact-form-desc-divide .left-form-part p {
    font-size: 17px;
    font-family: "Sora", sans-serif;
}

.contact-form-desc-divide .left-form-part form .form-group input {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    border: 1px solid var(--primary-linearcolor);
}

.contact-form-desc-divide .left-form-part form .form-group textarea {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-left: 0.8rem;
    width: 100%;
    height: 150px;
    border-radius: 6px;
    resize: none;
    border: 1px solid var(--primary-linearcolor);
}


.contact-form-desc-divide .right-form-desc {
    width: 40%;
}

.right-form-desc .my-details {
    width: 100%;
    height: 100%;
    margin-left: 5rem;
}

.right-form-desc .my-details .icon-and-detail-in-contact {
    display: flex;
    gap: 3%;
    margin-bottom: 3rem;
}

.my-details .icon-and-detail-in-contact .left-icons-contact {
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
    border-radius: 50%;
    width: 55px;
    height: 55px;
}

.my-details .icon-and-detail-in-contact .left-icons-contact i {
    font-size: 1.6rem;
    padding: 15px;
    color: white;
}

.my-details .icon-and-detail-in-contact .right-contact-details h5 {
    line-height: 1;
    font-family: "Sora", sans-serif;
    color: rgb(67, 67, 67);
    font-weight: 500;
    font-size: 18px;
}

.my-details .icon-and-detail-in-contact .right-contact-details h4 {
    font-family: "Sora", sans-serif;
    color: var(--primary-linearcolor);
    font-size: 22px;
}



/* Footer Section CSS */

.footer-section {
    width: 100%;
    background-color: var(--primary-linearcolor, #000);
}

.footer-section .footer-body {
    width: 100%;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.footer-section .footer-body  .footer-img-container img {
    filter: invert(100%) sepia(100%) saturate(6000%) hue-rotate(180deg) brightness(110%);
}

.footer-section .footer-body h4{
    color: rgb(160, 174, 189);
    font-family: "Sora", sans-serif;
}

.designed-desc-footer{
    font-size: 11px;
    color: rgb(114, 140, 149);
    margin: 0;
    margin-bottom: 0.5rem;
}

.copyright-para{
    font-size: 14px;
    color: white;
    text-align: center;
}

.footer-links ul{
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 2.6rem;
    margin-bottom: 1.6rem;
}
.footer-links ul a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    margin-right: 3.5rem;
}

.footer-social-icons a{
    color: white;
    font-size: 1.6rem;
    margin-right: 1rem;
    margin-left: 1rem;
    text-decoration: none;
}




/* About Us Page Half CSS */

.intro-section{
    margin-top: 4rem;
}
.intro-section .section-title{
    margin-bottom: 2rem;
}
.intro-box-divider{
    display: flex;
    gap: 3%;
    width: 100%;
    margin-bottom: 5rem;
}

.left-intro-box{
    width: 58%;
    border: 1px solid #ccc;
    border-radius: 18px;
    margin: auto;
    padding: 27px;
    background:linear-gradient(to right, #f7f4fbec, transparent);
}
.left-intro-box h3{
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: var(--secondary-linearcolor);
}

.right-skills-and-expertise-box{
    width: 39%;
    border: 1px solid #ccc;
    border-radius: 18px;
    margin: auto;
    padding: 27px;
    background:linear-gradient(to right, transparent , #f7f4fbec);
}
.right-skills-and-expertise-box h3{
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: var(--secondary-linearcolor);
}


/* animation */

.multi-animation-about{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
    position: absolute;
    top: 100%;
    transform: translateY(-50%, -50%) scale(1);
    z-index: -2;
    left: 1%;
    animation: movingCircle 17s ease infinite;
    filter: blur(60px);
}


@keyframes movingCircle {
    0%{
        transform: translateX(0);
        transform: translateY(0%);
    }
    20%{
        transform: translateX(30%);
    }
    35%{
        transform: translateY(-50%);
    }
    50%{
        transform: translate3d(30%);
    }
    60%{
        transform: scale(103.2%);
    }
    80%{
        transform: translateY(40%);
    }
    100%{
        transform: translateX(0);
    }
}


.circle-animation-about-right{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
    position: absolute;
    top: 135%;
    transform: translateY(-50%, -50%) scale(1);
    z-index: -2;
    right: 22%;
    filter: blur(55px);
    animation: movingCircle2 20s ease-in infinite;
}

@keyframes movingCircle2 {
    0%{
        transform: translateX(0);
    }
    20%{
        transform: translateX(30%);
    }
    45%{
        transform: translateY(-40%);
    }
    60%{
        transform: translateX(-20%);
    }
    75%{
        transform: translateY(20%);
    }
    85%{
        transform: translateX(30%);
    }
    100%{
        transform: translateX(0);
    }
}


.multi-animation-about-right{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
    position: absolute;
    top: 80%;
    transform: translateY(-50%, -50%) scale(1);
    z-index: -2;
    right: 10%;
    animation: movingCircleRight 27s ease infinite;
    overflow: hidden;
    filter: blur(55px);
}

@keyframes movingCircleRight {
    0%{
        transform: translateX(0);
        transform: translateY(0%);
    }
    20%{
        transform: translateY(30%);
    }
    45%{
        transform: translateX(40%);
    }
    55%{
        transform: translate3d(50%);
    }
    65%{
        transform: scale(103.2%);
    }
    80%{
        transform: translateX(10%);
    }
    100%{
        transform: translateX(0);
    }
}



.gear-animation-about .fa-gear{
    font-size: 8rem;
    position: absolute;
    top: 85%;
    right: 36.5%;
    z-index: 2;
    color: var(--primary-linearcolor);
    animation: gearRotation 3s linear infinite;
}

@keyframes gearRotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gear-animation-about2 .fa-gear{
    font-size: 5rem;
    position: absolute;
    top: 79%;
    right: 30%;
    z-index: 1;
    color: var(--secondary-linearcolor);
    animation: gearRotation2 3s linear infinite;
}

@keyframes gearRotation2 {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}





.myresume-about-section .section-title{
    padding-top: 3.5rem;
}

.education-experience-heading-about h2{
    font-size: 2.2rem;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    margin-bottom: 0rem;
    color: var(--secondary-linearcolor);
    margin-left: 0rem;
    margin-top: 1.5rem;
}

.edu-exp-with-icon{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 3%;
}
.edu-exp-with-icon i{
    color: var(--secondary-linearcolor);
    font-size: 2.5rem;
    width: 10%;
}
.edu-exp-with-icon .education-experience-desc-box{
    width: 90%;
}


.about-end-chat{
    width: 100%;
    background-color: #f6f3fc;
    padding-bottom: 5rem;
}

.about-end-chat .chat-desc{
    width: 80%;
    margin: auto;
    padding-top: 5rem;
}
.about-end-chat .chat-desc p{
    font-size: 20px;
    margin: 0;
    margin-left: 0.7rem;
    font-family: "Sora", sans-serif;
}
.about-end-chat .chat-desc a{
    text-decoration: none;
    color: var(--secondary-linearcolor);
    font-size: 22px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}



@keyframes bubble {
    0%, 20% {
        transform: translateY(0px) scale(1); /* Start at normal size */
    }
    50% {
        transform: translateY(-8px) scale(1.2); /* Move upward and scale bigger */
    }
    80%, 100% {
        transform: translateY(0px) scale(1); /* Return to original size */
    }
}

/* Apply the bubbling effect to each span */
.bubble-effect span {
    display: inline-block;
    font-size: 8rem; /* Adjust as needed */
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.2;
    color: var(--primary-linearcolor);
    animation: bubble 1s ease-in-out forwards;
    /* animation-fill-mode:both; */
}

/* Stagger the animation delays for each letter */
.bubble-effect span:nth-child(1) { animation-delay: 0s; }
.bubble-effect span:nth-child(2) { animation-delay: 0.2s; }
.bubble-effect span:nth-child(3) { animation-delay: 0.4s; }
.bubble-effect span:nth-child(4) { animation-delay: 0.6s; }
.bubble-effect span:nth-child(5) { animation-delay: 0.8s; }
.bubble-effect span:nth-child(6) { animation-delay: 1s; }
.bubble-effect span:nth-child(7) { animation-delay: 1.2s; }
.bubble-effect span:nth-child(8) { animation-delay: 1.4s; }
.bubble-effect span:nth-child(9) { animation-delay: 1.6s; }
.bubble-effect span:nth-child(10) { animation-delay: 1.8s; }
.bubble-effect span:nth-child(11) { animation-delay: 2s; }
.bubble-effect span:nth-child(12) { animation-delay: 2.2s; }
.bubble-effect span:nth-child(13) { animation-delay: 2.4s; }
.bubble-effect span:nth-child(14) { animation-delay: 2.6s; }
.bubble-effect span:nth-child(15) { animation-delay: 2.8s; }
.bubble-effect span:nth-child(16) { animation-delay: 3s; }
.bubble-effect span:nth-child(17) { animation-delay: 3.2s; }

/* Control continuous looping */
.bubble-effect {
    display: inline-flex;
    animation: continuous 5s infinite; /* 4.2s for bubbling + 3s pause + 1.4s buffer */
}

@keyframes continuous {
    0% {
        /* Start of the animation */
    }
    98% {
        /* Last phase before pause */
    }
    100% {
        /* End of the cycle, allow for reset */
    }
}





/* Contact Page CSS Starts Here */

.contact-page-social-body{
    padding-top: 3rem;
}

.social-onContactPage{
    display: flex;
    justify-content: center;
    gap: 3%;
    width: 50%;
    margin: auto;
    padding-bottom: 5rem;
}

.socialIcons{
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    text-align: center;
    padding-top: 0.5rem;
    border-radius: 50%;
    transition: all 6s ease;
}
.socialIcons:hover{
    /* border: none; */
    background: linear-gradient(to right, var(--secondary-linearcolor), var(--primary-linearcolor));
}
.socialIcons i{
    font-size: 2.8rem;
    text-align: center;
    color: var(--secondary-linearcolor);
    transition: all 0.3s ease;
}
.socialIcons:hover i{
    color: white;
}


/* Work Page HTML CSS starts here */
.recent-works-body-onWorkPage{
    height: 100%;
}
.recent-works-section-onWorkPage{
    width: 100%;
    height: 100%;
    padding-bottom: 5.6rem;
}


.recent-works-section-onWorkPage .section-header {
    width: 50%;
    margin: auto;
    margin-top: 6.5rem;
    margin-bottom: 2.5rem;
}

.recent-works-section-onWorkPage .section-header .section-title {
    font-size: 3.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
}

.recent-works-section-onWorkPage .section-header p {
    font-size: 17px;
}

.recent-works-section-onWorkPage .portfolio-boxes {
    display: grid;
    height: 100%;
    align-items: center;
    gap: 5%;
    grid-template-columns: repeat(3, 1fr);
    /* Show 2 boxes per row by default */
}


.portfolio-box .project-img-container{
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: white;
}
.portfolio-box .project-img-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    transition: filter 0.5s ease;
}
.portfolio-box:hover .project-img-container img{
    filter: blur(3px);
}


.portfolio-box .project-display-name{
    position: absolute;
    bottom: 4%;
    left: 4%;
    background:linear-gradient(245deg, rgb(239, 246, 251), rgb(226, 233, 246));
    width: 92%;
    margin: auto;
    padding: 12px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--primary-linearcolor);
    box-shadow: 0 2px 8px rgba(12, 12, 12, 0.637);
}
.portfolio-box:hover .project-display-name{
    position: absolute;
    bottom: -50%;
}
.portfolio-box .project-display-name .display-name{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.portfolio-box .project-display-name .display-name h5{
    font-size: 15.6px;
    font-weight: 500;
    font-family: "Sora", sans-serif;
}
.portfolio-box .project-display-name .display-name h6{
    font-size: 12px;
    font-weight: 500;
    font-family: "Sora", sans-serif;
    color: #343a40;
}
.portfolio-box .project-display-name .tech-used-box{
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    color: white;
    padding: 3px 10px;
    padding-top: 11px;
    border-radius: 6px;
}
.portfolio-box .project-display-name .tech-used-box h5{
    font-size: 13.6px;
    font-weight: 500;
    font-family: "Sora", sans-serif;
}

/* Project tag Starts*/
.portfolio-box .project-tag{
    position: absolute;
    top: 12%;
    left: -0.8%;
    z-index: 9;
    background-color: rgb(179, 2, 2);
    clip-path: polygon(100% 0%, 85% 49%, 100% 100%, 0 100%, 0% 50%, 0 0);
    padding: 7px 15px;
    padding-top: 15px;
    padding-right: 60px;
    color: white;
    transition: all 0.3s ease-in;
}
.portfolio-box .project-tag::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: black;
    clip-path: inherit;
    z-index: -1;
    transform: translate(4px, 4px);
    filter: blur(6px);
    opacity: 1;
}
.portfolio-box:hover .project-tag{
    clip-path: polygon(100% 0%, 91% 49%, 100% 100%, 0 100%, 0% 50%, 0 0);
    padding-right: 80px;
}
.portfolio-box .project-tag h6{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}

/* Project tag Ends*/

.portfolio-box .project-desc-complete{
    position: absolute;
    bottom: -100%;
    left: 4%;
    background:linear-gradient(to right, #864ff4f2, #2d1657e3);
    width: 92%;
    /* height: 50%; */
    padding: 10px 15px;
    padding-bottom: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 2px 8px rgba(12, 12, 12, 0.667);
}


.portfolio-box:hover .project-desc-complete{
    bottom: 3%;
}
.portfolio-box .project-desc-complete .project-name{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.portfolio-box .project-desc-complete .project-name h4{
    font-size: 17px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}
.portfolio-box .project-desc-complete .project-name h6{
    font-size: 13px;
    font-weight: 400;
    font-family: "Sora", sans-serif;
    color: white;
}

.portfolio-box .project-desc-complete .technologies-used h5{
    font-size: 15px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    color: wheat;
}
.portfolio-box .project-desc-complete .technologies-used ul{
    padding-left: 20px;
}
.portfolio-box .project-desc-complete .technologies-used ul li{
    font-size: 13.4px;
    font-family: "Sora", sans-serif;
}

.portfolio-box .project-desc-complete .technologies-used ul li span{
    font-size: 14.5px;
    font-weight: 500;
    font-family: "Sora", sans-serif;
}



/* .recent-works-section-onWorkPage .portfolio-box .project-img-container::after{
    content: "abcdefgh";
    width: 100%;
    height: 250px;
    background-color: rgb(79, 78, 78);
    position: absolute;
    bottom: 0;
    left: 0;
} */


.pagination {
    display: flex;
    justify-content: center;
    margin-top: 7rem;
}

#pagination-container-work{
    width: 100%;    
    margin-bottom: 0;
    padding-bottom: 0;
}

.pagination ul {
    display: flex;
    margin-bottom: 0;
}
.pagination li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 2px;
    padding: 0 0px !important;
    cursor: pointer;
    padding: 0;
    color: white;
    border-radius: 3px !important;
}
.pagination li a {
    color: var(--secondary-linearcolor);
    border-radius: 3px !important;
}

.pagination li.active {
    border-radius: 3px !important;
    padding: 0 15px !important;
    background-color: var(--secondary-linearcolor);
}



.downlaod-button-work-section{
    width: 100%;
    background: linear-gradient(to right, white, #f6f3fc);
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.downlaod-button-work-section h3{
    font-size: 3.1rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--secondary-linearcolor) 0%, var(--primary-linearcolor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Sora", sans-serif;
    margin-bottom: 2rem;
}


#close-btn {
    display: none; /* Initially hidden */
}


/* Slide-up animation */
@keyframes slideUp {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add this class to trigger the animation */
.slide-up {
    animation: slideUp 1s ease-in-out forwards;
}

/* Initially hide elements with opacity */
.slide-up-element {
    opacity: 0;
    transform: translateY(60px); /* Start position for the animation */
    transition: opacity 0.7s ease-out;
}





/* Slide-left to slide-right animation */
@keyframes slideRight {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* Add this class to trigger the animation */
.slide-right {
    animation: slideRight 1.1s ease-in-out forwards;
}

/* Initially hide elements with opacity */
.wow-rght {
    opacity: 0;
    transform: translateX(-60px); /* Start position for the animation */
    transition: opacity 0.7s ease-out;
}



/* Slide-right to slide-left animation */
@keyframes slideLeft {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* Add this class to trigger the animation */
.slide-left {
    animation: slideLeft 1.1s ease-in-out forwards;
}

/* Initially hide elements with opacity */
.wow-left {
    opacity: 0;
    transform: translateX(60px); /* Start position for the animation */
    transition: opacity 0.7s ease-out;
}





/* Extras CSS styling for design */











