:root{
    --primary:#eb5730;
    --primary1:#f77b5b;
    --dark:#020202;
    --light:#7a7a7a;
    --white:#fff;
    --lightbg:#f6f6f6;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;   
}

html{
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {width: 8px;}
body::-webkit-scrollbar-thumb {background: var(--primary); border-radius: 4px;}

.herosection{
    background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1350&q=80'), var(--lightbg);
    background-size: 100%;
    padding: 1rem;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin: 30px auto;
    max-width: 1900px;
    border-radius: 50px;
    background: var(--white);
}
.logo h2 span{
    color: var(--primary);
}

.NavBar {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 80vw;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: left 0.3s ease;
    padding-top: 80px;
    box-shadow: 2px 0 16px rgba(0,0,0,0.1);
}

.NavBar.active {
    left: 0;
}

.NavBar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
}

.NavBar ul li{
    list-style: none;
    float:  left;
    padding-left: 2.8rem;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.NavBar ul li a{
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    width: 100%;
}

.NavBar ul li a:hover{
    color: var(--primary);
}

.contact{
    padding: 0.6rem 1.2rem;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    border: none;
    transition: 0.3s ease-in-out;
}

.contact:hover{
    background: var(--primary);
}
.hamburger{
    display: none; /* Hidden by default on desktop */
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2100;
    background: var(--white);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
}

.hamburger span{
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mainHeading{
    text-align: center;    
}
.mainHeading p{
    font-size: 1.6rem;
    padding-top: 50px;
}
.mainHeading h1{
    font-size: 3.5rem;
}
.mainHeading h1 span{
    color: var(--primary);
    font-weight: 4000;
    font-style: italic;
}
.subheading{
    margin-top: -42px!important;
    font-size: 19px !important;
    color: var(--primary)
}

.heroContent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.review{
    flex: 1 1 400px;
}
.testimonial-card{
    padding: 2rem;
    max-width: 400px;
}

.quote-icon{
    color: var(--primary);
    font-size: 3rem;
    line-height: 0.8;
    font-family: 'FontAwesome';
}
.testimonial-text{
    font-size: 18px;
    color: var(--primary1);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.avatars{
    display: flex;
    margin-bottom: 1rem;
}

.avatars img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.avatars img:first-child{
    margin-left: 0;
}
.review-summary{
    font-size: 18px;
    font-weight: 400;
    color: var(--light);
}
.review-summary .rating{
    color: var(--dark);
}
.subtext{
    font-size: 16px;
    color: var(--light);
    margin-top: 4px;
}
.heroProfile{
    position: relative;
    text-align: center;
}
.heroProfile img{
    flex: 1 1 400px;
    width: 500px;
    z-index: 999;
    position: relative;
}
.shape{
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary1 100%));
    animation: morph 8s ease-in-out infinite;
    border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    height: 500px;
    transition: all 1s ease-in-out;
    width: 500px;
    z-index: 1;
    right: 0;
    bottom: 0;
    position: absolute;
}
@keyframes morph{
    0% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
        background: linear-gradient(45deg, var(--primary) 0%, var(--primary1) 100%);}
 
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        background: linear-gradient(45deg, var(--primary1) 0%, var(--primary) 100%);}
        
    100% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        background: linear-gradient(45deg, var(--primary) 0%, var(--primary1) 100%);}
}
.rotating-badge{
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 10s linear infinite;
    top: 200px;
}
.badge-svg{
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spinRevrse 20s linear infinite;
}
.badge-icon{
    font-size: 32px;
    z-index: 1;
    transform: rotate(-15deg);
    color: var(--primary);
}
@keyframes spin {
    from {transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}
@keyframes spinRevrse {
    from {transform: rotate(360deg);}
    to{transform: rotate(0deg);}
}
.heroButton{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    width: 300px;
    background: var(--white);
    z-index: 999;
    border-radius: 45px;
}
.profileBtn,
.hireBtn{
    padding: 10px 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 25px;
    border: 2px solid var(--primary);
    outline: 2px solid transparent;
    font-size: 1.1rem;
    transition: 0.4s ease-in-out;
}
.hireBtn{
   background: var(--white);
   color: var(--primary);
}
.profileBtn:hover{
    background: var(--white);
    color: var(--primary);
}
.hireBtn:hover{
    background: var(--primary);
    color: var(--white);
}
.socialIcons{
    flex: 1 1 400px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tags{
    width: 350px;
    margin: 0 auto;
}
.tag,.tag1{
    padding: 0.6rem 1.2rem;
    background: var(--dark);
    color: var(--white);
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}
.tag1{
    background: var(--primary);
}
.icons{
    width: 350px;
    margin: 30px auto;
}
.icons i{
    font-size: 30px;
    background: var(--white);
    margin: 10px 5px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 1.8;
    text-align: center;
    transition: 0.4s ease-in-out;
}
.icons i:hover{
    background: var(--primary);
    color: var(--white);
}
.our-scrolling-ticker{
    position: relative;
    background: var(--dark);
    padding: 25px 0;
    z-index: 1;
    margin-top: -36px;
}
.scrolling-ticker-box{
    --gap: 20px;
    display: flex;
    position: relative;
    overflow: hidden;
    user-select: none;
    gap: 15px;
    align-items: center;
}
.scrolling-content{
    flex-shrink: 0;
    display: flex;
    gap: 15px;
    min-width: 100%;
    animation: scroll 40s linear infinite;
}
.scrolling-content span{
    display: inline-block;
    font-family: math;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2rem;
    color: var(--white);
    vertical-align: middle;
}
.scrolling-content span img{
    max-width: 26px;
    margin-right:  15px;
    margin-bottom: -2px;
}
@keyframes scroll {
    from {transform: translateX(0);}
    to {transform: translateX(calc(-100% - var(--gap)));}
}
.heading{
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.heading2{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.heading2 span{
    color: var(--primary);
}


.toolSection{
    background: var(--lightbg);
}

.tool-container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.tools-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.tool-card{
    background: var(--white);
    border-radius: 40px 40px 20px 20px;
    padding: 20px 20px 10px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-out;
}

.tool-card:hover{
    background: #f77b5b;
    transform: translateY(-5px);
}

.tool-icon{
    background: var(--lightbg);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tool-icon img{
    width: 40px;
    height: 40px;
}
.tool-percent{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tool-name{
    font-size: 14px;
    color: #555;
}

.about-card{
    padding:  2rem;
    max-width:  1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin:  50px auto;
    align-items: center;
}

.about-left{
    flex: 1 1 400px;
    position: relative;
    text-align: center;
}

.about-left .bg-shape{
    background: var(--primary);
    border-radius: 50% 50% 0 0;
    width: 100%;
    max-width: 360px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-left img{
    width: 400px;
    max-width: 360px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 1;
}
.total-customer{
    position: absolute;
    top: 22px;
    left: 22%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-radius: 15px;
    gap: 10px;
    z-index: 2;
    flex-direction: column;
    animation: slideDown 1s ease-in-out infinite alternate;
}
@keyframes slideDown {
    from {left: 22%;}
    to {left: 24%;}
}
.total-customer-icon{
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 50%;
    font-size: 21px;
}
.badge{
    position: absolute;
    bottom: 20px;
    left: 80%;
    width: 250px;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    animation: slideDown1 1s ease-in-out infinite alternate;   
}
@keyframes slideDown1{
    from{left: 80%}
    to {left: 76%;}
}
.badge i{
    font-size: 24px;
    color: green;
}
.about-right{
    flex: 2 1 400px;
}
.about-right p{
    color: var(--light);
    font-size: 15px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.stats{
    display: flex;
    flex: flex-wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.counter{
    font-size: 2.5rem;;
}
.stat{
    flex: 1 1 150px;
}
.contacts{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.contact{
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--lightbg);
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 16px;
    color: #333;
}
.contact i{
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    padding: 10px;
}

.educationSection{
    background: var(--lightbg);
}
.educationContainer{
    max-width: 1200px;
    text-align: center;
    margin: auto;
}
.cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.card{
    flex: 1 1 300px;
    background: var(--white);
    border: 2px solid #ff5722;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
.card-header h3{
    font-size: 1.2rem;
    font-weight: 600;
}

.card-header{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header img{
    width: 50px;
    height: 50px;
    background: #ff5722;
    padding: 8px;
    border-radius: 80px;
}
.entry{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    background: var(--lightbg);
    padding: 14px;
    border-radius: 10px;
}
.entry-title{
    font-weight: 600;
}
.entry-subtitle{
    font-size: 0.9rem;
    color: var(--light);
}
.entry-date{
    background: #1a1a1a;
    color: var(--white);
    padding:  0.3rem 1rem;
    border-radius: 99px;
    font-size: 0.9rem;
}
.entry-text{
    flex: 1;
    min-width: 200px;
}

.portfolioSection{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding:  40px 10px;
}

.projects{
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.Project {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 320px;
    max-width: 350px;
    flex: 1 1 320px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    margin-bottom: 1.5rem;
}

.Project:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(247,123,91,0.12);
}

.Project img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    background: #f6f6f6;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: left;
}

.project-info h3 span {
    color: var(--primary);
    font-weight: 600;
}

.project-info p {
    color: var(--light);
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    text-align: left;
    min-height: 90px;
}

.project-table {
    width: 100%;
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
    text-align: left;
}

.project-table tr {
    margin-bottom: 0.5rem;
}

.project-table td {
    padding: 4px 0;
}

.project-table td:first-child {
    font-weight: 600;
    width: 90px;
    color: #222;
}

.contactSection{
    background: var(--lightbg);
    padding: 50px;
    text-align: center;
}
.usd-budget {
    font-size: 1rem;
    margin-top: 8px;
    color: #007bff;
    font-weight: bold;
    background: #f5faff;
    padding: 6px 12px;
    border-radius: 8px;
    display: none; /* Will be shown by JS when needed */
    transition: all 0.3s;
}
.contact-section{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    max-width: 1200px;
    text-align: left;
    margin: 0 auto;
    border-radius: 20px;
    bottom: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-form{
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form .row{
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.contact-form .row .input-group{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-form label{
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.contact-form  input, select, textarea{
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 9px;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-from .row:nth-child(1) .input-group input,
.contact-from .row:nth-child(2) .input-group input,
.contact-from .row:nth-child(3) .input-group input {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafd;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 0.2rem;
}

.contact-from .row:nth-child(1) .input-group input:focus,
.contact-from .row:nth-child(2) .input-group input:focus,
.contact-from .row:nth-child(2) .input-group input:focus {
    border: 1.5px solid var(--primary, #f77b5b);
    box-shadow: 0 2px 8px rgba(247,123,91,0.10);
    background: #fff;
}

.contact-form textarea{
    height: 120px;
    resize: vertical;
}
.row  {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.input-group {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    max-width: 420px;
}
.contact-form .input-group, textarea{
    height: 120px;
    resize: vertical;
    min-width: 200px;   /* Add this line for minimum width */
    width: 100%;        /* Ensures it fills the input-group */
    max-width: 100%; 
}
.contact-info{
    flex: 1 1 40%;
    background:  #111;
    color: white;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-out;
}
.contact-info-content{
    padding: 2rem;
}

.contact-info:hover{
    transform: translateY(-3px) scale(1.15);
}
.contact-info h4{
    color: var(--primary);
    margin-bottom: 0.4rem;
}
.contact-info p{
    margin: 0.3rem 0 1rem;
    font-size: 0.9rem;
}

.contact-info-bottom {
    background: var(--primary, #f77b5b);
    border-radius: 0 0 18px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-info-bottom h1,
.contact-info-bottom p {
    color: #fff;
}
.contact-info-bottom .social-icons i {
    font-size: 1.3rem;
    color: #fff;
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
}
.contact-info-bottom .social-icons i:hover {
    color: #222;
    transform: translateY(-3px) scale(1.15);
}

.testimonial-container{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonialSection{
    text-align: center;
    padding: 50px;
    overflow: hidden;
}
.testimonial-wrapper{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.testimonial{
    background: var(--lightbg);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0.05);
    padding: 15px;
    margin: 10px;
    flex: 0 0 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-section{
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}
.image{
    flex-shrink: 0;
}
.image img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.info{
    margin-left: 15px;
    text-align: center;
    flex-grow: 1;
    position: relative;
}
.info h3{
    font-size: 16px;
    font-weight: 600;
}
.info .position{
    font-size: 14px;
    color: var(--light);
    margin: 2px 0 8px;
}
.stars{
    display: flex;
    font-weight: 16px;
}
.quote-icon1{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 4rem;
    color: var(--primary);
    font-family: fantasy;
}

.bottom-text{
    font-size: 15px;
    color: var(--light);
    line-height: 1.5;
    text-align: left;
}
.dots{
    text-align: center;
    margin-top: 20px;
}

#backtoTop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
#backtoTop:hover{
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    border: 3px solid var(--white);
}

footer{
    margin-top: 50px;
}

.footer-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}
.footer-col{
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-col p{
    font-size: 14px;
    color: var(--light);
    margin-bottom: 15px;
}

.social-icons{
    display: flex;
    gap: 12px;
}

.social-icons i{
    display: inline-block;
    background-color: var(--primary);
    color: aliceblue;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-nav h4,
.footer-contact h4,
.footer-subscribe h4{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}
.footer-nav ul{
    list-style: none;
}
.footer-nav ul li{
    margin: 6px 0;
}

.footer-nav ul li a{
    color: var(--light);
    text-decoration: none;
    font-size: 17px;
}

.footer-contact p{
    margin: 6px 0;
    font-size: 17px;
}

.footer-contact i{
    color: var(--primary);
    margin-right: 8px;
}
.subscribe-box{
    display: flex;
    margin-top: 15px;
    transition: 0.3s ease;   
}
.subscribe-box input{
    padding: 27px;
    border: 1px solid var(--light);
    border-radius: 20px 0 0 20px;
    flex: 1;
    outline: none;
}

.subscribe-box button{
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 0px 20px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.footer-bottom {
    background: #222;
    color: #f5faff;
    text-align: center;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-top: 1.5px solid #444;
    margin-top: 1.5rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    margin-right: calc(50% - 50vw);
}

.footer-bottom span {
    color: var(--primary);
    font-weight: 600;
}



/* Mobile Navigation */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        position: absolute;
        top: 32px;
        right: 32px;
        z-index: 2001;
        background: var(--white);
        padding: 8px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .NavBar {
        position: fixed;
        top: 0;
        left: -80vw;
        width: 80vw;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        transition: left 0.3s;
        padding-top: 80px;
        box-shadow: 2px 0 16px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .NavBar.active {
        left: 0;
    }
    
    .NavBar ul {
        flex-direction: column;
        width: 100;
        padding: 0;
        margin: 0;
    }
    
    .NavBar ul li {
        width: 100%;
        float: none;
        padding: 18px 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .NavBar ul li:last-child {
        border-bottom: none;
    }

    .headerButton {
        display: none;
    }

     .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.3);
        z-index: 1999;
    }

    .NavBar.active ~ .nav-overlay,
    .nav-overlay.active {
        display: block;
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 24px;
        right: 24px;
        z-index: 2100;
        background: var(--white);
        padding: 8px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        cursor: pointer;
    }
.heroContent {
        flex-direction: column;
        align-items: center;
    }
    .rotating-badge {
        position: absolute;
        right: 10px;
        left: auto;
        bottom: 30px;
        width: 80px;
        height: 80px;
        z-index: 10;
        order: 2;
        margin: 0 auto 1.5rem auto;
    }
    .heroProfile {
        margin-bottom: 2.5rem;
        order: 1;
        margin-bottom: 1.5rem;
        position: relative;
        top: -30px;
    }
}
.review {
        order: 3;
    }

.header {
        position: relative;
        z-index: 2000;
    }

.nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.3);
        z-index: 1999;
    }
    .NavBar.active ~ .nav-overlay {
        display: block;
    }
    
    /* Close button for mobile menu */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }


/* Projects section responsiveness */
@media (max-width: 900px) {
    .projects {
        flex-direction: column;
    }
    
    .Project {
        max-width: 100% !important;
        margin-bottom: 2rem;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .projects {
        flex-wrap: wrap;
    }
    
    .Project {
        flex: 1 1 45%;
    }
}

/* Contact form responsiveness */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        width: 100% !important;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .input-group {
        min-width: 100% !important;
    }
}

/* Testimonial responsiveness */
@media (max-width: 768px) {
    .testimonial {
        flex: 1 1 100% !important;
        margin-bottom: 1.5rem;
    }
}

/* Footer responsiveness */
@media (max-width: 768px) {
    .footer-col {
        flex: 1 1 100% !important;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-nav ul, .social-icons {
        justify-content: center;
    }
    
    .subscribe-box {
        flex-direction: column;
    }
    
    .subscribe-box input {
        border-radius: 20px !important;
        margin-bottom: 10px;
    }
    
    .subscribe-box button {
        border-radius: 20px !important;
        padding: 10px !important;
    }
}

@media (min-width: 768px) {
    .heroContent {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .heroProfile {
        order: 2;
    }
    
    .review {
        order: 1;
    }
    
    .socialIcons {
        order: 3;
        width: 100%;
    }
    
    .rotating-badge {
        width: 120px;
        height: 120px;
        right: 50px;
        bottom: 50px;
    }
}

/* ==================== */
/* DESKTOP STYLES (1024px and up) */
/* ==================== */
@media (min-width: 1024px) {
    .hamburger {
        display: none !important;
    }
    
    .NavBar {
        position: static;
        width: auto;
        height: auto;
        padding-top: 0;
        box-shadow: none;
    }
    
    .NavBar ul {
        flex-direction: row;
    }
    
    .NavBar ul li {
        width: auto;
        padding: 0 0 0 2.8rem;
        border-bottom: none;
    }
    
    .heroContent {
        flex-wrap: nowrap;
    }
    
    .heroProfile {
        order: 0;
    }
    
    .rotating-badge {
        width: 150px;
        height: 150px;
        top: 200px;
        right: 20%;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 2100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 5px;
    transition: 0.3s;
}

/* Hamburger animation for close */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.profileBtn:hover{
    background: var(--white);
    color: var(--primary);
}