*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: 'Raleway', 'Lora', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

body {
    padding-top: 80px;
}

.main-header{
    width: 100%;
    height: auto;
    display: flex;
    background: rgba(255, 235, 59, 0.1);
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(255, 235, 59, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: headerSlideIn 1s ease-out;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

@keyframes headerSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header h2{
    color:    #ff9800;
    font-size: 30px;
    padding: 20px 0;
    font-weight: 600;
}

.navigation{
    width: 50%;
    height: auto;
}

.navigation ul  {
    display: flex;
    padding:20px ;
    flex-direction: row;
    gap: 40px;
    list-style: none;
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ff9800;
    margin: 3px 0;
    transition: 0.3s;
}

.navigation ul li{
    color: black;
    font-size: 20px;
    font-weight: 580;
}

.navigation ul li a {
    position: relative;
    margin-top: 10px; 
    color: inherit; /* Or set a default color */
    text-decoration: none;
    transition: color 0.3s ease; /* Optional: transition for text color if desired */
}

.navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Thickness of the line */
    background-color: #ff9800; /* Orange color */
    transition: width 0.3s ease; /* Smooth transition for the line width */
}

.navigation ul li a:hover::after {
    width: 100%; /* Expands the line to full width on hover */
}

.navigation ul li a:hover {
    color:  #ff9800;
    transform: scale(1.1);
}

.home-section{
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.05), rgba(33, 150, 243, 0.05));
    animation: fadeInUp 1.5s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flowers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flower {
    position: absolute;
    font-size: 24px;
    opacity: 0.7;
    animation: float linear infinite;
    color: #ffb3ba;
}

.flower:nth-child(odd) {
    color: #ffffff;
    opacity: 0.5;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    25% {
        transform: translateY(75vh) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(25vh) translateX(40px) rotate(270deg);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(10px) rotate(360deg);
        opacity: 0;
    }
}

.homeImageSection {
    width: 50%; /* Takes 50% of .home-section width */
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
}

.homeImageSection img {
    width: 100%; /* Makes the image fill the container */
    height: auto;
   border-radius: 50%;
    object-fit: cover;
    max-width: 300px;
    max-height: 300px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(255, 192, 203, 0.3);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.homeImageSection img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(255, 192, 203, 0.5);
}

.homeDescription{
    width: 50%;
    height: auto;
}

.homeDescription h2{
    color:  #ff9800;
    font-size: 50px;
    padding-bottom: 45px;
}


.homeDescription p {
    color: black;
    font-family: sans-serif;
    font-size: 24px;
}

.homeDescription h4 {
    color: black;
    font-family: sans-serif;
    font-size: 24px;
}

.typewriter-subtitle {
    color: grey;
    font-size: 32px;
    border-right: 2px solid grey;
    animation: blink 1s infinite;
}

.typewriter .static {
    color: black;
}

.typewriter .dynamic {
    color: #ff9800;
    border-right: 2px solid #ff9800;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #ff9800; }
}

.my-skills{
    display: inline-block;
    margin-top: 25px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #ff9800, #2196f3);
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 36, 170, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

.my-skills:hover {
    color:white;
    background: linear-gradient(135deg, #2196f3, #ff9800);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(33, 150, 243, 0.5);
    }
}

.contact-us {
    margin-left: 20px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    background-color: white;
    color: #2196f3;
    border: 2px solid #2196f3;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 51, 255, 0.2);
}

.contact-us:hover{
    background: linear-gradient(135deg, #2196f3, #ff9800);
    color: white;
    border: 2px solid transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.about-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(33, 150, 243, 0.1));
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(255, 235, 59, 0.3);
    animation: sectionSlideIn 1.5s ease-out 1s both;
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.about-section h2{
    color: #ff9800;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about-description{
    width: 50%;
    text-align: left;
    padding-right: 20px;
}

.about-description h4{
    color: #ff9800;
    font-size: 50px;
    margin-bottom: 20px;
    padding-left: 40px;
}

.about-description h5{
    color: #ff9800;
    font-size: 28px;
    margin: 30px 0 15px 40px;
    font-weight: 600;
}

.about-description p{
    padding-left: 40px;
    margin-bottom: 15px;
}


.about-description h4 span{
    color: black;
}

.about-description p {
    color: #333;
    font-size: 24px;
    padding-left: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.about-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    transition: all 0.5s ease;
}


.about-image img:hover {
    transform: scale(1.1) rotate(10deg);
}

.education-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(33, 150, 243, 0.1)), url('image/pulchowk.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(255, 235, 59, 0.3);
    animation: sectionSlideIn 1.5s ease-out 1s both;
}

.education-section h2 {
    color: #ff9800;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.education-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

.education-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 400px;
    flex: 1;
    min-width: 300px;
}

.education-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.education-logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.education-logo img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.education-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.education-details h3 {
    color: #ff9800;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.education-details p {
    color: #333;
    font-size: 18px;
    margin: 5px 0;
    line-height: 1.4;
}

.education-description {
    color: #666;
    font-size: 16px;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.5;
}
.project-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(33, 150, 243, 0.1)), url('src/rocket.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(255, 235, 59, 0.3);
    animation: sectionSlideIn 1.5s ease-out 1s both;
}

.project-section h2 {
    color: #ff9800;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.project-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

.project-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 1.5s ease-out both;
    animation-delay: 0.5s;
}

.project-item:nth-child(2) {
    animation-delay: 0.7s;
}

.project-item:nth-child(3) {
    animation-delay: 0.9s;
}

.project-item:nth-child(4) {
    animation-delay: 1.1s;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.project-item h3 {
    color: #ff9800;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-meta, .project-location {
    color: #333;
    font-size: 18px;
    margin: 5px 0;
    font-weight: 500;
}

.project-description {
    color: #555;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.6;
}

.project-points {
    list-style: none;
    padding: 0;
}

.project-points li {
    background: rgba(255, 235, 59, 0.1);
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    transition: all 0.3s ease;
}

.project-points li:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateX(10px);
    border-left-color: #ff9800;
}
.experience-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(33, 150, 243, 0.1));
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(255, 235, 59, 0.3);
    animation: sectionSlideIn 1.5s ease-out 1s both;
}

.experience-section h2 {
    color: #ff9800;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 40px;
    
}

.experience-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

.experience-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
    flex: 1;
    min-width: 300px;
    height: 350px;
    animation: fadeInUp 1.5s ease-out both;
    animation-delay: 0.5s;
}

.experience-item:nth-child(2) {
    animation-delay: 0.7s;
}

.experience-item:nth-child(3) {
    animation-delay: 0.9s;
}

.experience-item:nth-child(4) {
    animation-delay: 1.1s;
}

.experience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.experience-item h3 {
    color: #ff9800;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-item p {
    color: #333;
    font-size: 18px;
    margin: 5px 0;
    line-height: 1.6;
}

.experience-points {
    list-style: none;
    padding: 0;
}

.experience-points li {
    background: rgba(255, 235, 59, 0.1);
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    transition: all 0.3s ease;
}

.experience-points li:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateX(10px);
    border-left-color: #ff9800;
}

.certificate-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(33, 150, 243, 0.1));
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(255, 235, 59, 0.3);
    animation: sectionSlideIn 1.5s ease-out 1s both;
}

.certificate-section h2 {
    color: #ff9800;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 40px;
}

.certificate-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
    flex: 1;
    min-width: 300px;
}

.certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.certificate-image {
    flex-shrink: 0;
    margin-right: 20px;
}

.certificate-image img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.certificate-image img:hover {
    transform: scale(1.1) rotate(5deg);
}

.certificate-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.certificate-image img:hover {
    transform: scale(1.05);
}

.publications-link {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.publications-link p {
    font-size: 18px;
    color: #333;
}

.publications-link a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
}

.publications-link a:hover {
    text-decoration: underline;
}

.certificate-details h3 {
    color: #ff9800;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.certificate-details p {
    color: #333;
    font-size: 18px;
    margin: 5px 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.certificate-link a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 10px;
    border: 2px solid #2196f3;
}

.certificate-link a:hover {
    background: #2196f3;
    color: white;
    transform: scale(1.05);
}

.skills-section {
    width: 100%;
    padding: 60px 20px 150px 20px;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.05), rgba(33, 150, 243, 0.05));
    text-align: center;
    animation: sectionFadeIn 2s ease-out 1.5s both;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.skills-section h2 {
    color: #ff9800;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(255, 235, 59, 0.5);
}

.skills-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    gap: 40px;
    padding: 0 20px;
}

.skills-left {
    flex: 1;
    text-align: left;
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
    color: #555;
}

.skills-description {
    flex: 1;
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.skills-section h2 span {
    color: #2196f3;
}

.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.skill:hover {
    transform: translateY(-10px);
}

.circular-progress {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress:hover {
    transform: scale(1.1);
}

.progress-circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 15px rgba(255, 152, 0, 0.6));
    animation: yellowBluePulse 4s infinite;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
}

@keyframes yellowBluePulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 152, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(33, 150, 243, 0.8));
    }
}

.skill-info {
    text-align: center;
}

.skill-logo {
    margin-bottom: 5px;
    transition: all 0.3s ease;
    animation: logoBounce 1s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

@keyframes logoBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.skill-logo:hover {
    transform: scale(1.2) rotate(10deg);
    color: #ff9800;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.8);
}

.skill-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.skill-icon {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ff9800;
    transition: color 0.3s ease, transform 0.3s ease;
}

.skill-name {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    transition: color 0.3s ease;
}

.circular-progress:hover .skill-icon {
    color: #2196f3;
    transform: translateX(-50%) scale(1.1);
}

.circular-progress:hover .skill-name {
    color: #ff9800;
}

.skills-additional {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
    flex-wrap: wrap;
}

.additional-skills, .learning-path {
    flex: 1;
    min-width: 300px;
}

.additional-skills h3, .learning-path h3 {
    color: #ff9800;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #ff9800, #2196f3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.learning-path ul {
    list-style: none;
    padding: 0;
}

.learning-path li {
    background: rgba(255, 235, 59, 0.1);
    .experience-section {
        padding: 40px 20px;
    }

    .experience-section h2 {
        font-size: 40px;
    }

    .experience-content {
        flex-direction: column;
        gap: 20px;
    }

    .experience-item {
        max-width: 100%;
        min-width: auto;
    }

    .experience-item h3 {
        font-size: 24px;
    }

    .experience-item p {
        font-size: 16px;
    }

    .experience-points li {
        font-size: 14px;
        padding: 8px 12px;
    }
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
    transition: all 0.3s ease;
}

.learning-path li:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateX(10px);
    border-left-color: #ff9800;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 10px 20px;
    }

    .main-header h2 {
        font-size: 24px;
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
        align-self: flex-end;
    }

    .navigation {
        width: 100%;
        display: none;
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        text-align: center;
    }

    .navigation ul li {
        font-size: 18px;
    }

    .home-section {
    .project-section {
        padding: 40px 20px;
    }

    .project-section h2 {
        font-size: 40px;
    }

    .project-content {
        flex-direction: column;
        gap: 20px;
    }

    .project-item {
        max-width: 100%;
        min-width: auto;
    }

    .project-item h3 {
        font-size: 24px;
    }

    .project-meta, .project-location, .project-description {
        font-size: 16px;
    }
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }

    .homeImageSection, .homeDescription {
        width: 100%;
        text-align: center;
    }

    .homeDescription h2 {
        font-size: 40px;
        padding-bottom: 30px;
    }

    .homeDescription h4 {
        font-size: 20px;
    }

    .homeDescription p {
        font-size: 18px;
    }

    .my-skills, .contact-us {
        margin: 15px;
        padding: 15px;
        font-size: 16px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-section h2 {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-description, .about-image {
        width: 100%;
        padding: 0;
    }

    .about-description h4 {
        font-size: 35px;
        padding-left: 0;
    }

    .about-description h5 {
        margin-left: 0;
        padding-left: 0;
    }

    .about-description p {
        padding-left: 0;
        font-size: 18px;
    }

    .about-image img {
        width: 250px;
        height: 250px;
    }

    .education-section {
        padding: 40px 20px;
    }

    .education-section h2 {
        font-size: 40px;
    }

    .education-content {
        flex-direction: column;
        gap: 20px;
    }

    .education-item {
        max-width: 100%;
        min-width: auto;
    }

    .education-details h3 {
        font-size: 20px;
    }

    .education-details p {
        font-size: 16px;
    }

    .education-description {
        font-size: 14px;
    }

    .skills-section {
        padding: 40px 20px;
    }

    .skills-section h2 {
        font-size: 40px;
    .project-section h2 {
        font-size: 30px;
    }

    .project-item h3 {
        font-size: 20px;
    }

    .project-meta, .project-location, .project-description {
        font-size: 14px;
    }

    .project-points li {
        font-size: 14px;
        padding: 8px 12px;
    }
    }

    .skills-intro {
        flex-direction: column;
        font-size: 18px;
        padding: 0 10px;
        gap: 20px;
    }

    .skills-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .skill {
        margin: 10px 0;
    }

    .skills-additional {
        flex-direction: column;
    .experience-section h2 {
        font-size: 30px;
    }

    .experience-item h3 {
        font-size: 20px;
    }

    .experience-item p {
        font-size: 14px;
    }

    .experience-points li {
        font-size: 12px;
        padding: 6px 10px;
    }

    .certificate-section h2 {
        font-size: 30px;
    }

    .certificate-content {
        flex-direction: column;
        gap: 20px;
    }

    .certificate-item {
        max-width: 100%;
        min-width: auto;
    }

    .certificate-image iframe {
        height: 300px;
    }

        gap: 40px;
    }

    .additional-skills h3, .learning-path h3 {
        font-size: 28px;
    }

    .skill-tags {
        justify-content: center;
    }

    .skill-tag {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .main-header h2 {
        font-size: 20px;
    }

    .homeDescription h2 {
        font-size: 30px;
    }

    .homeDescription h4 {
        font-size: 18px;
    }

    .about-section h2 {
        font-size: 30px;
    }

    .about-description h4 {
        font-size: 28px;
    }

    .skills-section h2 {
        font-size: 30px;
    }

    .about-image img {
        width: 200px;
        height: 200px;
    }

    .circular-progress {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }

    .circular-progress svg {
        width: 100px;
        height: 100px;
    }

    .circular-progress circle {
        r: 40;
    }

    .progress-circle {
        stroke-dasharray: 251.2; /* 2 * π * 40 */
        transform: rotate(-90deg);
        transform-origin: center;
    }

    .skill-percentage-text {
        font-size: 20px;
    }

    .skill-logo {
        font-size: 20px;
    }

    .skill-name {
        font-size: 16px;
    }

    .certificate-image iframe {
        height: 250px;
    }

    .education-section h2 {
        font-size: 30px;
    }

    .education-logo img {
        width: 60px;
        height: 60px;
    }

    .education-details h3 {
        font-size: 18px;
    }

    .education-details p {
        font-size: 14px;
    }

    .education-description {
        font-size: 12px;
    }
}

.progress-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.05), rgba(128, 0, 128, 0.05));
    text-align: center;
}

.progress-section h2 {
    color: #8e24aa;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(255, 192, 203, 0.5);
}

.single-progress {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.single-progress-circle {
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.6));
    animation: progressPulse 4s infinite;
}

@keyframes progressPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(76, 175, 80, 1));
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    color: #4CAF50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}




.contact-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.15), rgba(33, 150, 243, 0.15)), radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    padding: 60px 20px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(255, 235, 59, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: sectionSlideIn 1.5s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-section h2 {
    color: #ff9800;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

@keyframes titleGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 152, 0, 0.5); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 152, 0, 0.8), 0 0 40px rgba(255, 152, 0, 0.3); }
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-left {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(255, 152, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1.5s ease-out 1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 20px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 15px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    padding: 20px;
    background: linear-gradient(135deg, #ff9800, #2196f3);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.6);
}

.contact-form button:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-right {
    flex: 1;
    max-width: 500px;
    position: relative;
    animation: slideInRight 1.5s ease-out 1.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.contact-alert {
    font-size: 18px;
    font-weight: 600;
}
.contact-details a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, #2196f3);
    transition: width 0.3s ease;
}

.contact-details a:hover::after {
    width: 100%;
}

.contact-details a:hover {
    color: #ff9800;
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
    color: #ff9800;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.contact-form textarea {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
   

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-details h3 {
    color: #ff9800;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-details p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-details h4 {
    color: #2196f3;
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.2), transparent);
    transition: left 0.4s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(255, 152, 0, 0.1));
    transform: translateY(-3px) scale(1.03);
    color: #ff9800;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.social-links a i {
    margin-right: 8px;
    font-size: 18px;
    color: #ff9800;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    color: #2196f3;
    transform: scale(1.1) rotate(5deg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    padding: 18px;
    background: linear-gradient(135deg, #ff9800, #2196f3);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

.contact-form button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive for contact */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left,
    .contact-right {
        max-width: 100%;
    }

    .contact-section h2 {
        font-size: 40px;
    }

    .contact-left {
        padding: 30px 20px;
    }

    .contact-image img {
        height: 250px;
    }

    .contact-details {
        padding: 25px 20px;
    }

    .contact-details h3 {
        font-size: 24px;
    }

    .contact-details h4 {
        font-size: 20px;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .social-links a {
        font-size: 14px;
        padding: 12px 15px;
    }

    .social-links a i {
        font-size: 16px;
        margin-right: 8px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 16px;
        padding: 18px;
    }
}

/* Footer Styles */
.footer {
    width: 100%;
    background:#ff9800; /* Yellow background */
    padding: 40px 20px;
    box-shadow: 0 -8px 32px rgba(255, 235, 59, 0.3);
    margin-top: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-left h2 {
    color: white;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-left p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #2196f3;
}

.nav-arrow {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.nav-arrow:hover {
    background: #2196f3;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #2196f3;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-right p {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-right p i {
    color: #ff9800;
}

.footer-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: nowrap;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.2), transparent);
    transition: left 0.4s ease;
}

.footer-social-links a:hover::before {
    left: 100%;
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(255, 152, 0, 0.1));
    transform: translateY(-5px) scale(1.1);
    color: #2196f3;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    border-color: #2196f3;
}

.footer-social-links a i {
    transition: all 0.3s ease;
}

.footer-social-links a:hover i {
    color: #2196f3;
    transform: scale(1.2) rotate(5deg);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Responsive for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-left, .footer-center, .footer-right {
        flex: none;
        text-align: center;
    }

    .footer-left h2 {
        font-size: 30px;
    }

    .footer-center h3, .footer-right h3 {
        font-size: 24px;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-right p {
        justify-content: center;
    }

    .quick-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-left h2 {
        font-size: 25px;
    }

    .footer-center h3, .footer-right h3 {
        font-size: 20px;
    }

    .footer-social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


