/* General Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--text-color);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}
/* Initial hidden state */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state when in viewport */
.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: fadeInSlide 1s ease-in-out forwards;
}
.hero-content p {
    animation: fadeInSlide 1s ease-in-out forwards;
}
.hero-buttons{
    animation: fadeInSlide 1s ease-in-out forwards;
}
.hero-image{
    animation: fadeInSlide 1s ease-in-out forwards;
}
.service-card{
    animation: fadeInSlide 1s ease-in-out forwards;
}
section.why-choose-us{
    animation: fadeInSlide 1s ease-in-out forwards;
}
section.statistics{
    animation: fadeInSlide 1s ease-in-out forwards; 
}
section.testimonials{
    animation: fadeInSlide 1s ease-in-out forwards;
}
.testimonial-card{
    animation: fadeInSlide 1s ease-in-out forwards;
}
.about-content{
    animation: fadeInSlide 1s ease-in-out forwards;
}
.contact-grid{
    animation: fadeInSlide 1s ease-in-out forwards;
}
/* Header */
header {
    background: var(--white);
    color: var(--text-color);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
}

nav {
    margin-left: auto;
    height: fit-content;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 80%;
}

/* Sections */
section {
    padding: 8rem 1.5rem 2rem;
    max-width: 1200px;
    margin: auto;
    flex: 1;
}

h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 0.25rem;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 1rem 0;
    color: #4b5563;
}

/* Services */
#services ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

#services ul li {
    background: var(--white);
    color: var(--text-color);
    padding: 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#services ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Forms */
form {
    background: var(--white);
    padding: 2.5rem;
    max-width: 500px;
    margin: auto;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

label {
    display: block;
    text-align: left;
    margin: 1rem 0 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    color: var(--text-color);
    margin-top: auto;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Job Listings */
.job-listing {
    background: var(--white);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-align: left;
    transition: all 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.job-listing h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.job-listing p {
    margin: 0.75rem 0;
    font-size: 1rem;
    color: #4b5563;
}

.job-listing button {
    margin-top: 1rem;
    width: auto;
    padding: 0.75rem 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 0rem;
        
    }

    .header-content {
        flex-direction: column;
       
        
        gap: 1rem;
    }
    section.hero {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    section.careers-hero{
        display: flex !important;
        flex-direction: column-reverse !important; 
    }
    .about-content {
        display: flex !important;
        flex-direction: column-reverse !important;
        text-align: center !important;
        align-items: center !important;
    }

    .about-image {
        order: 1 !important; /* Move image to the top */
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    nav ul { 
       align-items: start;
      text-align: left;
     
        gap: 0.1rem;
       
    }
   
    .hero {
        display: flex;
        flex-direction: column-reverse; /* Moves the image above the text */
        text-align: center;
        padding: 6rem 1rem 3rem;
    }
   
  
    section {
        padding: 6rem 1rem 1.5rem;
        
       
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    form {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .job-listing, .position-card, .service-card, .testimonial-card {
        padding: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 1rem 3rem;
        
     
        
    }
   

    .hero-content {
        text-align: center;
       
       
    }
.hero-content h1 {
    font-size:2rem !important;
}

   

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid, .testimonials-grid, .positions-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/*animation*/
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: fadeInSlide 1s ease-in-out forwards;
}
.hero-content p {
    animation: fadeInSlide 1s ease-in-out forwards;
}

/* Form Messages */
#form-message, #register-message, #login-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.success-message {
    background-color: #dcfce7;
    color: #166534;
}

.error-message {
    background-color: #fee2e2;
    color: #991b1b;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.about-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.about-text {
    text-align: left;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.team-member p {
    color: #6b7280;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: var(--primary-color);
    margin: 1rem;
}

.service-card p {
    margin: 0 1rem 1rem;
    text-align: left;
}

.service-features {
    list-style: none;
   justify-content: center;
    padding: 0 1rem 1rem;
    text-align: left;
}

.service-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
   
}



/*.service-features li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
   
}*/


.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.contact-grid {
    display: flex;
    flex-direction: column; /* Stack by default */
    text-align: center;
}

.contact-map {
    order: -1; /* Moves the image first */
}

.contact-details {
    order: 1; /* Moves the details below */
}


.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-map img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Auth Pages (Login/Register) */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e0e7ff 100%);
    padding: 1rem;
}

.auth-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.auth-button {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--secondary-color);
}

.social-login {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.social-button {
    flex: 1;
    padding: 0.625rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.social-button:hover {
    border-color: var(--primary-color);
    background: var(--light-bg);
}

.social-button img {
    width: 18px;
    height: 18px;
}

.social-button i {
    font-size: 1.1rem;
    color: #0077b5;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px solid #e5e7eb;
}

.divider span {
    padding: 0 0.75rem;
}

/* Form Messages */
#form-message, #register-message, #login-message {
    margin-top: 0.75rem;
    padding: 0.625rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.success-message {
    background-color: #dcfce7;
    color: #166534;
}

.error-message {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Checkbox styling */
input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-group label[style*="margin: 0;"] {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6b7280;
}


/* Remember me and Forgot Password */
.form-group[style*="display: flex"] {
    margin: 0.5rem 0;
}

.form-group[style*="display: flex"] label {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.form-group[style*="display: flex"] a {
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth-card, .form, .contact-item, .value-card, .benefit-card {
        padding: 1.5rem;
    }

    .social-login, .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-grid, .features-grid, .positions-grid, .gallery-grid, .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e0e7ff 100%);
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Featured Services */
.featured-services {
    padding: 4rem 2rem;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature p {
    color: #6b7280;
}

/* Statistics */
.statistics {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
}

.testimonial-author {
    display: flex;
   justify-content: end;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    margin: 0;
}

.testimonial-author p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;

}

/* CTA Section */
.cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Careers Page Styles */
.careers-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e0e7ff 100%);
}

.why-join-us {
    padding: 4rem 2rem;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
}

.open-positions {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.position-content {
    padding: 1.5rem;
}

.position-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.location, .department {
    color: #6b7280;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location i, .department i {
    color: var(--primary-color);
}

.description {
    margin: 1rem 0;
    color: #4b5563;
}

.requirements {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.requirements li {
    color: #6b7280;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
   text-align: left;
}

.requirements li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.life-at-techpro {
    padding: 4rem 2rem;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Resume Submission Form */
.resume-submission {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.resume-submission h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.resume-submission form {
    background: var(--white);
    padding: 2.5rem;
    max-width: 500px;
    margin: auto;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.resume-submission label {
    display: block;
    text-align: left;
    margin: 1rem 0 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.resume-submission input[type="text"],
.resume-submission input[type="email"],
.resume-submission input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.resume-submission input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.resume-submission button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.resume-submission button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}