/* ---------General styles ---------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ---------Portfolio container--------- */
.portfolio-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------Navbar styles---------*/
.navlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
    width: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    z-index: 1000;
    padding: 0 2rem;
}

.logo h1 {
    color: #ffffff;
    font-size: 1.5rem;
}

.navlist nav {
    display: flex;
    gap: 3.5rem;
}

.navlist li {
    list-style: none;
}

.navlist li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    color: #fff;
    position: relative;
}

.navlist li a::after, .navlist .active::after {
    content: "";
    position: absolute;
    background-color: white;
    width: 100%;
    height: .1rem;
    left: 0;
    bottom: -5px;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform .5s;
}

.navlist li a:hover::after, .navlist .active::after {
    transform: scale(1);
    transform-origin: bottom left;
}

/* ---------Home container styles--------- */
.home-container {
    height: 100vh;
    display: flex;
    align-items: left;
    justify-content: center;
    background: linear-gradient(-45deg, #0ef, #1e1e2f 70%);
    width: 100%;
    padding-top: 15vh;
    padding-left: 3rem;
    flex-direction: column;
}

.icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 3rem;
}

.icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bbb;
    font-size: 1.7rem;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 20%;
    color: #0ef;
    text-decoration: none;
    margin-top: -8rem;
}

.icons a:hover {
    background: #0ef;
    color: #081b08;
    box-shadow: 0 0 50px #0ef;
}

.content {
    margin-left: 6rem;
    position: absolute;
    margin-top: -8rem;
}

.content .intro {
    font-size: 1.5rem;
    color: #fff;
}

.content .intro span {
    color: #5db9ee;
    font-size: 1.5rem;
}

.content h1 {
    font-size: 4rem;
    color: #5db9ee;
}

.content .details {
    font-size: 1rem;
    color: white;
    max-width: 30rem;
    margin: 1.1rem 0 3rem 0;
    line-height: 1.8rem;
}

.btn-containers button {
    border: .1rem solid #5db9ee;
    font-size: 1.1rem;
    padding: .8rem 1.5rem;
    border-radius: .5rem;
    cursor: pointer;
}

button:nth-child(1) {
    background: #5db9ee;
}

button:nth-child(2) {
    background: transparent;
    color: #5db9ee;
    margin-left: 2rem;
}

button:nth-child(1):hover {
    background: transparent;
    color: #5db9ee;
    transition: .5s ease;
    box-shadow: 0 0 5px cyan,
                0 0 25px cyan, 
                0 0 50px cyan,
                0 0 100px cyan, 
                0 0 150px cyan;
}

button:nth-child(2):hover {
    transition: .5s ease;
    box-shadow: 0 0 5px cyan,
                0 0 25px cyan, 
                0 0 50px cyan,
                0 0 100px cyan, 
                0 0 150px cyan;
}

.design .circle {
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 20rem;
    background-image: url(imageal/imageal1.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    border: .1rem solid white;
    box-shadow: 0 0 1rem #fff,
                inset 0 0 1rem #fff,
                0 0 2rem #3877ff,
                inset 0 0 2rem #3877ff,
                0 0 4rem #3877ff,
                inset 0 0 4rem #3877ff;
}

/* ---------Project container styles--------- */

.project-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #0ef, #1e1e2f 70%);
    width: 100%;
    padding-top: 15vh;
    padding-left: 3rem;
    flex-direction: column;
}

.projects-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 90%;
    overflow: hidden; /* Hide overflow */
}

.projects {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: hidden; /* Hide overflow to use arrow buttons for scrolling */
    position: relative; /* Required for arrow button positioning */
    transition: transform 0.3s ease-in-out; /* Smooth scrolling */
}

.project {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    flex: 0 0 40%; /* Adjust width for project boxes */
    box-sizing: border-box;
    height: 300px;
    position: relative;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.project h2 {
    margin: 0;
}

.project p {
    margin: 5px 0 0;
    color: #ddd;
}

.project:hover {
    transform: scale(1.05);
}

/* Arrow button styles */
.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.left-arrow {
    left: 10px; /* Adjust position as needed */
}

.right-arrow {
    right: 10px; /* Adjust position as needed */
}

.right-arrow:hover{
    background: #0ef;
    color: #081b08;
    box-shadow: 0 0 5px cyan,
                0 0 25px cyan,
                0 0 50px cyan,
                0 0 100px cyan,
                0 0 150px cyan;

}







































/* ---------About container styles Start---------*/

/* Container for the entire about section */
.about-container {
    height: 100vh; /* Set the height to 100% of the viewport height */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center items horizontally */
    background: linear-gradient(45deg, #0ef, #1e1e2f 70%); /* Gradient background */
    width: 100%; /* Full width */
    padding-top: 15vh; /* Top padding */
    padding-left: 3rem; /* Left padding */
    padding-right: 3rem; /* Right padding */
    flex-direction: row; /* Horizontal layout */
    gap: 2rem; /* Gap between columns */
}

/* Container for each skill column */
.skills-column {
    flex: 1; /* Flexible size */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Vertical layout */
    align-items: center; /* Center items horizontally */
}

/* Style for headings in skill columns */
.headings1 {
    text-align: center; /* Center align text */
    margin-bottom: 2rem; /* Bottom margin */
    color: #fff; /* Text color */
}

/* Font size for bars in professional skills */
.bar {
    font-size: 23px; /* Set font size */
}

/* Container for professional skill bars */
.professional-bars {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Vertical layout */
    gap: 2rem; /* Gap between bars */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 2rem; /* Padding */
    border-radius: 1rem; /* Rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Shadow */
    width: 100%; /* Full width */
}

/* Container for individual professional skill bar */
.professional-bars .bar {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    margin: 20px 0; /* Vertical margin */
}

/* Container for info in skill bar */
.professional-bars .bar .info {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Vertical layout */
    margin-left: 10px; /* Left margin */
}

/* Style for text in skill bar info */
.professional-bars .bar .info span {
    font-size: 17px; /* Font size */
    font-weight: 500; /* Font weight */
    animation: showText 0.5s 1s linear forwards; /* Animation */
    opacity: 0; /* Initial opacity */
}

/* Style for progress line in skill bar */
.professional-bars .bar .progress-line {
    position: relative; /* Relative positioning */
    border-radius: 10px; /* Rounded corners */
    width: 70%; /* Width */
    height: 5px; /* Height */
    background-color: #eeeeee; /* Background color */
    animation: animate 1s cubic-bezier(1, 0, 0, 1) forwards; /* Animation */
    transform: scaleX(0); /* Initial scale */
    transform-origin: left; /* Transform origin */
    margin-right: 10px; /* Right margin */
}

/* Animation for progress line */
@keyframes animate {
    100% {
        transform: scaleX(1); /* Final scale */
    }
}

/* Style for span in progress line */
.professional-bars .bar .progress-line span {
    height: 100%; /* Height */
    background-color: #0ef; /* Background color */
    position: absolute; /* Absolute positioning */
    border-radius: 10px; /* Rounded corners */
    animation: animate 1s 1s cubic-bezier(1, 0, 0, 1) forwards; /* Animation */
    transform: scaleX(0); /* Initial scale */
    transform-origin: left; /* Transform origin */
}

/* Specific width for creativity progress line */
.progress-line.creativity span {
    width: 90%; /* Width */
}

/* Specific width for communication progress line */
.progress-line.communication span {
    width: 60%; /* Width */
}

/* Specific width for problem solving progress line */
.progress-line.problemsolving span {
    width: 85%; /* Width */
}

/* Specific width for teamwork progress line */
.progress-line.teamwork span {
    width: 50%; /* Width */
}

/* Style for after element in progress line span */
.progress-line span::after {
    position: absolute; /* Absolute positioning */
    padding: 1px 8px; /* Padding */
    background-color: #000; /* Background color */
    color: #fff; /* Text color */
    font-size: 12px; /* Font size */
    border-radius: 3px; /* Rounded corners */
    top: -28px; /* Top position */
    right: -20px; /* Right position */
    animation: showText 0.5s 1.5s linear forwards; /* Animation */
    opacity: 0; /* Initial opacity */
}

/* Content for after element in creativity progress line */
.progress-line.creativity span::after {
    content: "90%"; /* Content */
}

/* Content for after element in communication progress line */
.progress-line.communication span::after {
    content: "60%"; /* Content */
}

/* Content for after element in problem solving progress line */
.progress-line.problemsolving span::after {
    content: "85%"; /* Content */
}

/* Content for after element in teamwork progress line */
.progress-line.teamwork span::after {
    content: "50%"; /* Content */
}

/* Style for before element in progress line span */
.progress-line span::before {
    content: ""; /* Content */
    position: absolute; /* Absolute positioning */
    width: 0; /* Width */
    height: 0; /* Height */
    border: 7px solid transparent; /* Border */
    border-bottom-width: 0; /* Bottom border width */
    border-right-width: 0; /* Right border width */
    border-top-color: #000; /* Top border color */
    top: -10px; /* Top position */
    right: 0; /* Right position */
    animation: showText 0.5s 1.5s linear forwards; /* Animation */
    opacity: 0; /* Initial opacity */
}

/* Animation for showing text */
@keyframes showText {
    100% {
        opacity: 1; /* Final opacity */
    }
}

/* Technical skill bars container */
.radial-bars {
    width: 100%; /* Full width */
    display: grid; /* Use grid layout */
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-gap: 1rem; /* Gap between items */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 2rem; /* Equal padding on every side */
    border-radius: 2rem; /* Rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Shadow */
}

/* Container for individual radial bar */
.radial-bars .radial-bar {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    position: relative; /* Relative positioning */
    width: 100%; /* Full width */
    height: 200px; /* Set height */
}

/* SVG element in radial bar */
.radial-bars .radial-bar svg {
    position: absolute; /* Absolute positioning */
    top: 50%; /* Top position */
    left: 50%; /* Left position */
    transform: translate(-50%, -50%) rotate(-90deg); /* Transform */
    width: 120px; /* Width */
    height: 120px; /* Height */
}

/* Progress bar in SVG */
.radial-bars .radial-bar .progress-bar {
    stroke-width: 10; /* Stroke width */
    stroke: black; /* Stroke color */
    fill: transparent; /* No fill */
    stroke-dasharray: 502; /* Dash array */
    stroke-dashoffset: 502; /* Dash offset */
    stroke-linecap: round; /* Line cap */
    animation: animate-bar 1.5s linear forwards; /* Animation */
}

/* Animation for progress bar */
@keyframes animate-bar {
    100% {
        stroke-dashoffset: 0; /* Final dash offset */
    }
}

/* Path in SVG */
.path {
    stroke-width: 10; /* Stroke width */
    stroke: #0ef; /* Stroke color */
    fill: transparent; /* No fill */
    stroke-dasharray: 502; /* Dash array */
    stroke-dashoffset: 502; /* Dash offset */
    stroke-linecap: round; /* Line cap */
}

/* Animation for first path */
.path-1 {
    animation: animate-path1 1.5s 1s linear forwards; /* Animation */
}

/* Animation for second path */
.path-2 {
    animation: animate-path2 1.5s 1s linear forwards; /* Animation */
}

/* Animation for third path */
.path-3 {
    animation: animate-path3 1.5s 1s linear forwards; /* Animation */
}

/* Animation for fourth path */
.path-4 {
    animation: animate-path4 1.5s 1s linear forwards; /* Animation */
}

/* Animation for first path */
@keyframes animate-path1 {
    100% {
        stroke-dashoffset: 80; /* Final dash offset */
    }
}

/* Animation for second path */
@keyframes animate-path2 {
    100% {
        stroke-dashoffset: 175; /* Final dash offset */
    }
}

/* Animation for third path */
@keyframes animate-path3 {
    100% {
        stroke-dashoffset: 250; /* Final dash offset */
    }
}

/* Animation for fourth path */
@keyframes animate-path4 {
    100% {
        stroke-dashoffset: 375; /* Final dash offset */
    }
}

/* Percentage text in radial bar */
.radial-bar .percentage {
    position: absolute; /* Absolute positioning */
    top: 50%; /* Top position */
    left: 50%; /* Left position */
    transform: translate(-50%, -50%); /* Transform */
    font-size: 17px; /* Font size */
    font-weight: 500; /* Font weight */
    animation: showText 0.5s 1s linear forwards; /* Animation */
    opacity: 0; /* Initial opacity */
}

/* Text in radial bar */
.radial-bar .text {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    gap: 0.5rem; /* Add some space between the icon and text */
    width: 100%; /* Full width */
    position: absolute; /* Absolute positioning */
    text-align: center; /* Center text */
    left: 50%; /* Left position */
    bottom: -5px; /* Bottom position */
    transform: translateX(-50%); /* Transform */
    font-size: 17px; /* Font size */
    font-weight: 500; /* Font weight */
    animation: showText 0.5s 1s linear forwards; /* Animation */
    opacity: 0; /* Initial opacity */
}



/* Increase the font size of the icons */
.radial-bar .text i {
    font-size: 2rem;
}

/* Education bars container */
.education-bars {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Vertical layout */
    gap: 2rem; /* Gap between items */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 2rem; /* Padding */
    border-radius: 1rem; /* Rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Shadow */
    width: 100%; /* Full width */
}

/* Container for individual education item */
.education {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    gap: 1rem; /* Gap between items */
    font-size: 1rem; /* Font size */
    color: #fff; /* Text color */
}

/* Icon in education item */
.education i {
    font-size: 2rem; /* Font size */
}

/* Info in education item */
.education .info span {
    font-size: 1rem; /* Font size */
    font-weight: bold; /* Font weight */
}

/* Description text in education item */
.education .info p {
    font-size: 1rem; /* Font size */
    color: #ccc; /* Text color */
    margin-top: .5rem; /* Top margin */
}

/* ---------About container styles End---------*/






















































/* ---------Service container styles ---------*/


.service-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #0ef, #1e1e2f 70%);
    width: 100%;
    padding-top: 15vh;
    padding-left: 3rem;
    flex-direction: column;
}



/* ---------Contact container styles--------- */


.contact-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #0ef, #1e1e2f 70%);
    width: 100%;
    padding-top: 15vh;
    padding-left: 3rem;
    flex-direction: column;
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
}

.contact-left {
    flex-basis: 35%;
    padding-left: 2rem;
}

.contact-left .sub-title {
    color: #3877ff;
    font-size: 4rem;
    white-space: nowrap;
}

.contact-left p {
    color: #ccc;
    margin-bottom: 1rem;
}

.contact-right {
    flex-basis: 50%;
    padding-right: 2rem;
    margin-right: 180px;
    margin-bottom: 80px;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: left;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 20%;
    color: #0ef;
}

.social-icons a:hover {
    background: #0ef;
    color: #081b08;
    box-shadow: 0 0 50px #0ef;
}

.btn-btn2 {
    margin-right: 15px;
    margin-top: 1.5rem;
    text-decoration: none;
    display: inline-block;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #0ef;
    border: .1rem solid #5db9ee;
    border-radius: .5rem;
    background: transparent;
    font-size: 1.1rem;
    padding: .8rem 1.5rem;
}

.btn-btn2:hover {
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan, 0 0 150px cyan;
}

#contact form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
}

form .form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

form .form-group label {
    color: white;
    font-size: 1rem;
}

form .form-group input,
form .form-group textarea {
    padding: .5rem;
    border: 1px solid #5db9ee;
    border-radius: .5rem;
    background: transparent;
    color: white;
}

form .form-group input:focus,
form .form-group textarea:focus {
    outline: none;
    border-color: cyan;
}

form button {
    padding: .8rem 1.5rem;
    border: .1rem solid #5db9ee;
    border-radius: .5rem;
    background: #5db9ee;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
}

form button:hover {
    background: transparent;
    color: #5db9ee;
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan, 0 0 150px cyan;
}



/* ---------WhatsApp button styles--------- */
a.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

a.whatsapp-button i {
    display: inline-block;
    vertical-align: middle;
}

a.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
}


/* ---------Footer styles ---------*/

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    width: 100%;
}


/* ---------End Fotter--------- */