@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: #121212;
    color: #f0f0f0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: #292929;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 0 5rem;
}

.navbar .logo img {
    height: 80px;
    /* width: 100px; */
}
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.navbar .nav-links li {
    display: inline;
}
.navbar .nav-links a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    background: white;
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.3s;
}
.navbar .nav-links a:hover {
    color: #068bdf;
}
.navbar .toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #f0f0f0;
    font-size: 1.5rem;
    z-index: 150;
}

.navbar .toggle-btn i {
    transition: transform 0.3s ease;
}

.navbar .toggle-btn.active i {
    transform: rotate(90deg);
}


.hero {
    margin-top: 80px;
    position: relative;
    height: 70vh;
    background: url('../images/technollogy\ career\ page\ 2.png') no-repeat center center/cover;
    padding-top: 80px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #04da76, #068bdf);
    -webkit-background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero a{
    text-decoration: none;
}
.hero-button {
    background: linear-gradient(90deg, #df2190, #30a0e6);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s ease;
}
.hero-button:hover {
    transform: scale(1.1);
}



.find-a-job {
    position: relative;
    background-color: #2b2929f6; 
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.find-a-job-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
}

.find-a-job-left {
    width: 50%;
    padding-right: 2rem;
    color: #fff;
}

.find-a-job-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #1DBF73, #17A4FB); 
    -webkit-background-clip: text;
    color: transparent;
}

.find-a-job-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
}

.find-a-job-right {
    width: 35%;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6); 
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.find-a-job-right h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff7a00, #ff2a68);
    -webkit-background-clip: text;
    color: transparent;
}

.apply-now-button {
    background: linear-gradient(90deg, #df2190, #30a0e6); /* Button gradient */
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.apply-now-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.apply-now-button:active {
    transform: scale(1);
}



/* Why Us Section */
.why-us {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1c1c1c;
}
.why-us h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(0deg, #0ae780, #068bdf);
    -webkit-background-clip: text;
    color: transparent;
}
.perks {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.perk {
    background: #292929;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.perk img {
    width: 300px;
    height: 160px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.perk:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.perk:hover img {
    transform: scale(1.03); 
}


/* Tech Stack Section */
.tech-stack {
    padding: 4rem 2rem;
    text-align: center;
    /* background-color: #fff; */
}
.tech-stack h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    background: linear-gradient(0deg, #08f78b, #068bdf);
    -webkit-background-clip: text;
    color: transparent;
}
.tech-icons-container {
    position: relative;
    max-width: 445px;
    margin: auto;
    overflow: hidden;
}

.tech-icons-wrapper {
    display: flex;
    overflow: hidden;
}

.tech-icons {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 2rem;
}

.tech-icons img {
    width: 120px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.tech-icons img:hover {
    transform: scale(1.2);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: -2px;
}

.next-btn {
    right: 0;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Meet Our Team Section */
/* .team {
    padding: 3rem 2rem;
    text-align: center;
}
.team h2 {
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #04da76, #068bdf);
    -webkit-background-clip: text;
    color: transparent;
}
.team-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.team-member img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
} */



/* Open Roles Section */
.open-roles {
    padding: 3rem 2rem;
    text-align: center;
}
.open-roles h2{
    background: linear-gradient(0deg, #04da76, #068bdf);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2rem;
}
#roles-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    justify-content: center;
}
.role {
    flex: 0 0 auto;
    background: #292929;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.role:hover {
    transform: scale(1.05); 
}
.role h3 {
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #04da76, #068bdf);
    -webkit-background-clip: text;
    color: transparent;
}

.apply-button {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(90deg, #1DBF73, #17A4FB);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}
.apply-button:hover {
    background: #1A85C7;
}


footer {
    background: #1c1c1c;
    color: #ccc;
    text-align: center;
    padding: 1rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}
.footer-content p {
    margin-bottom: 1rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-icon img {
    width: 30px;
    transition: transform 0.3s ease;
}
.social-icon img:hover {
    transform: scale(1.2);
}





/* media queries */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero a {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }


    .find-a-job-container {
        flex-direction: column; 
        align-items: flex-start;
    }

    .find-a-job-left, .find-a-job-right {
        width: 100%; 
        text-align: left; 
    }

    .find-a-job-left h2 {
        font-size: 2.2rem;
    }

    .find-a-job-left p {
        font-size: 1rem; 
    }

    .find-a-job-right {
        margin-top: 2rem;
    }

    .find-a-job-right h3 {
        font-size: 1.8rem; 
    }

    .apply-now-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem; 
    }


    .tech-stack {
        padding: 3rem 1.5rem;
    }
    .tech-stack h2 {
        font-size: 1.8rem;
    }
    .tech-icons img {
        width: 100px; /* Slightly smaller icons */
    }
    .prev-btn, .next-btn {
        font-size: 1rem; /* Adjust button size */
        padding: 8px;    /* Smaller buttons */
    }
   
    .open-roles h2 {
        font-size: 1.8rem;
        text-align: center; /* Center the heading */
    }

    #roles-container {
        display: flex;
        flex-direction: column; /* Stack items in a column */
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
        width: 90%;  /* Adjust width of the container */
        margin: 0 auto;  /* Center the container horizontally */
    }

    .role {
        background: #292929;
        padding: 1rem;
        border-radius: 8px;
        text-align: center; /* Center the text */
        width: 250px; /* Set the width for role cards */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }
    footer {
        padding: 1rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-content p {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }

    .social-icon img {
        width: 35px; /* Adjust the size of social icons */
    }
}

@media (max-width: 768px) {
    /* Navbar: Toggle visibility */
    .navbar .toggle-btn {
        display: block;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background: #292929d2;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid #444;
        justify-content: center; 
        align-items: center;
        text-align: center;
    }

    .navbar .nav-links.show {
        display: flex;
    }

    .navbar .nav-links a {
        padding: 1rem;
        text-align: center;
        background: linear-gradient(90deg, #04da76, #068bdf);
        -webkit-background-clip: text;
        color: transparent;
        font-weight: 700;
        font-size: 1.2rem;
        transition: 0.3s;
        opacity: 0;
        transform: translateY(-20px);
    }


    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .hero{
        height: 50vh;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }


    .find-a-job-container {
        flex-direction: column; 
        align-items: center;
    }

    .find-a-job-left, .find-a-job-right {
        width: 90%;
        text-align: center; 
        align-items: center;
        padding-right: 0;
    }

    .find-a-job-left h2 {
        font-size: 1.8rem;
        /* text-align: center;  */
    }

    .find-a-job-left p {
        font-size: 1rem; 
        max-width: 100%;
        /* text-align: center;
        align-items: center;   */
    }

    .find-a-job-right {
        margin-top: 1.5rem; 
        padding: 1.5rem; 
    }

    .find-a-job-right h3 {
        font-size: 1.6rem; 
    }

    .apply-now-button {
        font-size: 1rem; 
        padding: 0.8rem 1.5rem; 
    }
    
    .why-us h2 {
        font-size: 1.5rem;
    }

    .perks {
        flex-direction: column;
        gap: 1.5rem;
    }

    .perk {
        width: 100%;
        padding: 1rem;
    }

    .perk img {
        width: 100%;
        height: 200px;
    }

    .tech-stack {
        padding: 2rem 1rem;
    }
    .tech-stack h2 {
        font-size: 1.6rem;
    }
    .tech-icons img {
        width: 95px; /* Smaller icons */
    }
    .tech-icons-container {
        max-width: 350px; /* Adjust container width */
    }
    .prev-btn, .next-btn {
        font-size: 0.9rem;
        padding: 6px;
    }
    
    .open-roles h2 {
        font-size: 1.6rem;
        text-align: center; /* Center the heading */
    }

    #roles-container {
        display: flex;
        flex-direction: column; /* Stack items in a column */
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
        width: 100%;  /* Decrease width of the container */
        margin: 0 auto;  /* Center the container horizontally */
    }

    .role {
        background: #292929;
        padding: 1rem;
        border-radius: 8px;
        text-align: center; /* Center the text */
        width: 300px; /* Set the width for role cards */
    }

    .role h3 {
        font-size: 1.1rem;
    }

    .apply-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    footer {
        padding: 1rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-content p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .social-icon img {
        width: 30px; /* Adjust the size of social icons */
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0 1rem;
    }

    .hero{
        height: 50vh;
    }
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }


    .tech-stack {
        padding: 1.5rem 0.5rem;
    }
    .tech-stack h2 {
        font-size: 1.5rem;
    }
    /* .tech-icons{
        gap: 0.8rem;
    } */
    .tech-icons img {
        width: 80px; /* Even smaller icons */
    }
    .tech-icons-container {
        max-width: 300px; /* Narrow container */
    }
    .prev-btn, .next-btn {
        font-size: 0.8rem;
        padding: 5px;
    }

    .open-roles h2 {
        font-size: 1.5rem;
        text-align: center; /* Center the heading */
    }

    #roles-container {
        display: flex;
        flex-direction: column; /* Stack items in a column */
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        padding: 1rem 0;
        width: 100%;  /* Decrease width of the container */
        margin: 0 auto;  /* Center the container horizontally */
    }

    .role {
        background: #292929;
        padding: 1rem;
        border-radius: 8px;
        text-align: center; /* Center the text */
        width: 300px; /* Set the width for role cards */
    }

    .footer-content {
        display: flex;
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
    }

    .social-icon img {
        width: 25px; 
    }
    
}



::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(42deg, #7436bb 0.01%, #b520a3 100%);
    border-radius: 10px;
}
