/* s0 start css  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    /* border: 2px solid red; */
}
/* s5. root style  */
:root {
    --sec-color:#F5F5F5;
    --pri-color: #0E0E0E;
    --color-0: #131313;
    --color-1: #33FFA9;
    --color-2: #000000;

    --h1-font: 4.063rem;
    --h2-font: 1.25rem;
    --h3-font: 1.125rem;
    --p-font: 1rem;
}

/* s7. body style */
body {
    background-color:#3A3D43;


}

/* s8. header style  */
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 12%;
}

header.scrolled {
    background-color: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(51, 255, 169, 0.1);
    padding: 15px 12%;
    transition: all 0.3s ease;
}
/* s9. .in-search style input style  */
.in-search {
    position: relative;
    display: flex;
    align-items: center;

}

.in-search input {
    width: 100%;
    height: 40px;
    padding: 0px 10px 0px 35px;
    border-radius: 8px;
    outline: none;
    border: 1px solid var(--sec-color);
    background-color: var(--color-0);



}

/* s10. search icon style - inside 'text' part  */
.in-search i {
    position: absolute;
    bottom: 22%;
    left: 4%;
    color: var(--sec-color);
    font-size: var(--h2-font);
}

/* s10 more input style: focus  */
input:focus,
input:valid{
    color: var(--sec-color);


}

/* s11. style .navlist  */
.navlist{
    display: flex;
    align-items:center;

}
/* s11. style the anchors inside navlist  */
.navlist a{
    color: var(--sec-color);
    font-size: var(--h3-font);
    padding: 10px 20px;
    font-weight: 500;
    text-transform: capitalize;
   
}

.navlist a:hover{
    color: var(--color-1);

}
.navlist .active{
    color: var(--color-1);
}

/* s12 nv-btn style  */
.nv-btn {
    display:flex;
    align-items: center;

}
.nv-btn a {
    display: inline-block;
    color: var(--color-2);
    font-size: var(--h3-font);
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--color-1);
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 5px;
    margin-right: 12px;
    transition: all .42s;

}
.nv-btn a:hover{
    background-color: var(--sec-color);
}

/* s13 menu icon style  */
#menu-icon {
    color: var(--sec-color);
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    display: none; /* intially set to none: probably to be js-ed with some conditions  */
}

/* s15. style home section  */
section {
    padding: 100px 12% 50px 12%; 

}

.home{
    position:relative;
    width: 100%;
    height: 100vh;
    background-color: var(--pri-color);
    /* background-size: cover; */
    /* background-position: center; */
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 3rem;

}

.container-img {
  text-align: center;
}

/* .container-img img{
    max-width: 100%; 
    width: 480px;
    height: auto;
    border: transparent;
    border-radius: 50%;
} */
.container-img img {
  width: min(480px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-inline: auto;
}

/* @media (max-width: 600px) {
  .container-img img {
    width: 320px;
  }
} */

.humh-forth {
    display:inline-flex;
    align-items: center;
    background-color: var(--color-0);
    margin-bottom: 15px;
    padding: 10px 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: var(--sec-color);
    font-size: var(--p-font);
    font-weight: 500;
}

.humh-forth i {
    color: var(--color-1);
    font-size: var(--p-font);
    margin-right: 5px;
}

.humb-text h1 {
    color: var(--sec-color);
    font-size: var(--h1-font);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.humb-text h1 span {
    color: var(--color-1)
}

.humb-text p {
    max-width: 550px;
    color: var(--sec-color);
    font-size: var(--h3-font);
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 50px;
}

.social-btn {
    display: flex;
    align-items: center;
}

.hm-btn a {
    display: inline-block;
    color: var(--color-2);
    font-size: var(--h3-font);
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--color-1);
    letter-spacing: 0.5px;
    padding: 12px 25px;
    border-radius: 5px;
    margin-right: 30px;
    transition: all .42s;

}
.hm-btn a:hover {
    background-color: var(--sec-color);
}
.social i {
    width: 38px;
    height: 38px;
    border: 2px solid var(--color-1);
    border-radius: 30px;
    margin-right: 14px;
    transition: all .42s;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}
.social i:hover{
    background-color: var(--color-1);
    color: var(--color-2)
}
.social {
    display: flex;
}
.bx-github {
    color: white;
}

.btm-right{
    position: fixed;
    bottom: 5%;
    right: 2%;
    background-color: var(--sec-color);
    padding: 10px 10px;
    border-radius: 5px;

}
.btm-right i{
    color: var(--color-2);
    font-size: var(--p-font);
}
.btm-right span{
    color: var(--color-2);
    font-size: var(--color-2);
    font-weight: 400;
}

/* s16 responsiveness (./client/issue1)- see devtools screen resizer  */
@media(max-width: 1470px){
    header{
        padding: 30px 4%;
        transition: .3s;
    }
    section{
        padding: 100px 4% 50px 4%;
        transition: .3s;
    }
}

@media(max-width:1220px){
    /* .container-img img{
        width: 430px;
        height: auto;
        transition: .3s;
    } */
    .humh-forth {
        padding: 8px 12px;
        font-size: 15px;
        transition: .3s;
        
    }
    .humh-forth i {
        font-size: 14px;
        transition: .3s;

    }
    .humb-text h1{
        font-size: 60px;
        line-height: 1.2;
        transition: .3s;
    }
    .humb-text p{
        margin-bottom: 40px;
        transition: .3s;
    }
    .hm-btn a{
        font-size: 16px;
        padding: 10px 20px;
    }
    .social i{
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 12px;
    }
}







@media(max-width:1130px){
    /* .container-img img{
        width: 400px;
        height: auto;
        transition: .3s;
    } */
    .humh-forth {
        padding: 8px 12px;
        font-size: 15px;
        transition: .3s;
        
    }
    .humh-forth i {
        font-size: 14px;
        transition: .3s;

    }
    .humb-text h1{
        font-size: 55px;
        line-height: 1.2;
        transition: .3s;
        margin-bottom: 15px;
    }
    .humb-text p{
        margin-bottom: 35px;
        transition: .3s;
    }
    .btm-right i {
        font-size: 16px;
        transition: .3s;
    }
    .btn-right span {
        font-size: 14px;
        font-weight: 400;
    }
}

@media(max-width:1040px){
    /* .container-img img{
        width: 350px;
        height: auto;
        transition: .3s;
    } */

    .humb-text h1{
        font-size: 50px;
        line-height: 1.2;
        transition: .3s;
        margin-bottom: 15px;
    }

    .humb-text p{
        margin-bottom: 35px;
        transition: .3s;
    }    
    .nv-btn a {
        font-size: 16px;
        padding: 10px 20px;
        transition: .3s;
    }
}
@media(max-width:950px){
    .home {
        grid-template-columns: 1fr;
        height: 100%;

    }
    /* .container-img{
        text-align: center;
    } */
    .in-search input {
        width: 90%;
        height: 35px;
        padding: 0px 10px 0px 30px;
        transition: .3s;
    }
    .in-search i {
        font-size: 18px;
    }
    header {
        backdrop-filter: blur(40px);
        padding: 15px;
    }
}
@media(max-width:900px){
    .humb-text h1{
        font-size: 45px;
        line-height: 1.2;
        transition: .3s;

    }
    .humb-text p {
        margin-bottom: 30px;
        transition: .3s;
    }
}

/* s17 start here  */
@media(max-width:830px){
    #menu-icon{
        display: block;
    }
    .navlist {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--pri-color);

        padding-top: 40px;
        transition: all .42s ease-in-out;
    }
    .navlist a {
        /* display: block; */
        font-size: 26px;

    }
    .navlist.open{
        right: 0;
    }

}
@media(max-width: 635px){
    .nv-btn a{
        font-size: 13px;
        padding: 10px 10px;
        margin-right: 8px;
        transition: .3s;
    }
    /* .container-img img{
        width: 300px;
        transition: .3s;
        height: auto;
    } */
    .humb-text h1{
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 15px;
        transition: .3s;
    }
    .humb-text p{
        font-size: 16px;
        transition: .3s;
    }
    .social i{
        width: 34px;
        height: 34px;
        font-size: 16px;
        margin-right: 8px;
    }
    .btm-right{
        bottom: 2%;
        padding: 8px 8px;

    }
    .btm-right i{
        font-size: 14px;
        transition: .3s;
        
    }
    .btm-right span{
        font-size: 12px;
        transition: .3s;
    }
    .hm-btn a {
        margin-right: 20px;
    }
}

/* work3 */
/* Work Section Styles - Add to main style.css */

.work {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--pri-color);
    padding-top: 20px;
}

.work-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--pri-color);
    padding-top: 120px;
}


.work-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-forth {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-0);
    margin-bottom: 15px;
    padding: 10px 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: var(--sec-color);
    font-size: var(--p-font);
    font-weight: 500;
}

.work-forth i {
    color: var(--color-1);
    font-size: var(--p-font);
    margin-right: 5px;
}

.work-header h1 {
    color: var(--sec-color);
    font-size: var(--h1-font);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.work-header h1 span {
    color: var(--color-1);
}

.work-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--sec-color);
    font-size: var(--h3-font);
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 50px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.work-card {
    background-color: var(--color-0);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.work-card:hover {
    border-color: var(--color-1);
    transform: translateY(-5px);
}

.work-content {
    position: relative;
}

.work-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.work-icon i {
    font-size: 24px;
    color: var(--color-2);
}

.work-content h3 {
    color: var(--sec-color);
    font-size: var(--h2-font);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.work-content p {
    color: var(--sec-color);
    font-size: var(--p-font);
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.8;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tag {
    background-color: rgba(51, 255, 169, 0.1);
    color: var(--color-1);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(51, 255, 169, 0.2);
}

.work-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.work-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: var(--h3-font);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    text-decoration: none;
}

.work-btn.primary {
    background-color: var(--color-1);
    color: var(--color-2);
}

.work-btn.primary:hover {
    background-color: var(--sec-color);
    color: var(--color-2);
}

.work-btn.secondary {
    background-color: transparent;
    color: var(--sec-color);
    border: 1px solid var(--sec-color);
}

.work-btn.secondary:hover {
    background-color: var(--sec-color);
    color: var(--color-2);
}

/* Responsive Design for Work Section */
@media(max-width: 1470px) {
    .work {
        padding: 120px 4% 50px 4%;
    }
}

@media(max-width: 1220px) {
    .work-header h1 {
        font-size: 60px;
        line-height: 1.2;
    }
    .work-grid {
        gap: 25px;
    }
    .work-card {
        padding: 25px;
    }
}

@media(max-width: 1130px) {
    .work-header h1 {
        font-size: 55px;
        margin-bottom: 15px;
    }
    .work-header p {
        margin-bottom: 40px;
    }
}

@media(max-width: 1040px) {
    .work-header h1 {
        font-size: 50px;
    }
    .work-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media(max-width: 950px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .work-card {
        padding: 20px;
    }
}

@media(max-width: 900px) {
    .work-header h1 {
        font-size: 45px;
    }
    .work-header p {
        margin-bottom: 30px;
    }
}

@media(max-width: 635px) {
    .work-header h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .work-header p {
        font-size: 16px;
    }
    .work-card {
        padding: 15px;
    }
    .work-icon {
        width: 50px;
        height: 50px;
    }
    .work-icon i {
        font-size: 20px;
    }
    .work-content h3 {
        font-size: 18px;
    }
    .work-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .work-links {
        gap: 10px;
    }
}

/* Hire Me Section Styles - Add to main style.css */

.hire {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--pri-color);
    padding-top: 120px;
}

.hire-header {
    text-align: center;
    margin-bottom: 60px;
}

.hire-forth {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-0);
    margin-bottom: 15px;
    padding: 10px 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: var(--sec-color);
    font-size: var(--p-font);
    font-weight: 500;
}

.hire-forth i {
    color: var(--color-1);
    font-size: var(--p-font);
    margin-right: 5px;
}

.hire-header h1 {
    color: var(--sec-color);
    font-size: var(--h1-font);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hire-header h1 span {
    color: var(--color-1);
}

.hire-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--sec-color);
    font-size: var(--h3-font);
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Active button style */
.nv-btn .active-btn {
    background-color: var(--sec-color);
    color: var(--color-2);
}

/* Hire Content Layout */
.hire-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-bottom: 80px;
}

/* Form Section */
.hire-form-section {
    background-color: var(--color-0);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(51, 255, 169, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--sec-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--sec-color);
    opacity: 0.8;
    font-size: var(--p-font);
    line-height: 24px;
}

.hire-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--sec-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(245, 245, 245, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--sec-color);
    font-size: var(--p-font);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-1);
    box-shadow: 0 0 0 3px rgba(51, 255, 169, 0.1);
}

.form-group select {
  background-color: rgba(245, 245, 245, 0.05);   /* solid background */
  color: white;              /* readable text */
}

.form-group select option {
  background-color: rgba(10, 8, 9, 0.83);   /* dropdown options bg */
  color: white;
}


.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--sec-color);
    font-size: var(--p-font);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(245, 245, 245, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--color-1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-1);
    border-color: var(--color-1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: var(--color-2);
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form Submit */
.form-submit {
    margin-top: 10px;
}

.hire-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: var(--h3-font);
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hire-btn.primary {
    background-color: var(--color-1);
    color: var(--color-2);
}

.hire-btn.primary:hover {
    background-color: var(--sec-color);
    transform: translateY(-2px);
}

/* Services Section */
.hire-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-header {
    text-align: center;
}

.services-header h2 {
    color: var(--sec-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.services-header p {
    color: var(--sec-color);
    opacity: 0.8;
    font-size: var(--p-font);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background-color: var(--color-0);
    border: 1px solid rgba(51, 255, 169, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--color-1);
    transform: translateY(-2px);
}

.service-card.featured {
    border-color: var(--color-1);
    background: linear-gradient(145deg, rgba(51, 255, 169, 0.05), var(--color-0));
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--color-1);
    color: var(--color-2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(51, 255, 169, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 24px;
    color: var(--color-1);
}

.service-card h3 {
    color: var(--sec-color);
    font-size: var(--h2-font);
    font-weight: 600;
    margin-bottom: 10px;
}

.price {
    color: var(--sec-color);
    font-size: var(--p-font);
    margin-bottom: 15px;
}

.price span {
    color: var(--color-1);
    font-size: var(--h2-font);
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: var(--sec-color);
    font-size: var(--p-font);
    padding: 5px 0;
    opacity: 0.8;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-1);
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    background-color: var(--color-0);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(51, 255, 169, 0.1);
}

.contact-info h3 {
    color: var(--sec-color);
    font-size: var(--h2-font);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sec-color);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: rgba(51, 255, 169, 0.1);
    color: var(--color-1);
}

.contact-method i {
    font-size: 20px;
    color: var(--color-1);
    width: 24px;
}

/* Availability Status */
.availability-status {
    background-color: var(--color-0);
    border: 1px solid var(--color-1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-indicator i {
    color: var(--color-1);
    font-size: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-indicator span {
    color: var(--sec-color);
    font-weight: 600;
    font-size: var(--p-font);
}

.availability-status p {
    color: var(--sec-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media(max-width: 1470px) {
    .hire {
        padding: 120px 4% 50px 4%;
    }
}

@media(max-width: 1220px) {
    .hire-header h1 {
        font-size: 60px;
    }
    .hire-content {
        gap: 40px;
    }
    .hire-services {
        width: 350px;
    }
}

@media(max-width: 1130px) {
    .hire-header h1 {
        font-size: 55px;
    }
    .hire-content {
        grid-template-columns: 1fr 320px;
    }
}

@media(max-width: 1040px) {
    .hire-header h1 {
        font-size: 50px;
    }
    .hire-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hire-services {
        width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media(max-width: 950px) {
    .hire-form-section {
        padding: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media(max-width: 900px) {
    .hire-header h1 {
        font-size: 45px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 635px) {
    .hire-header h1 {
        font-size: 40px;
    }
    .hire-form-section {
        padding: 20px;
    }
    .service-card {
        padding: 20px;
    }
    .contact-info {
        padding: 20px;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .hire-btn {
        width: 100%;
        justify-content: center;
    }
}
