/* Custom CSS */
:root {
    --primary-color: #0056b3;
    --secondary-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --accent-color: #28a745;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.navbar {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-get-started {
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-get-started:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 70px;
    background-color: var(--accent-color);
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}
    
/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-color);
    padding: 80px 0;
}

.choose-us-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s;
}

.choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.choose-us-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.choose-us-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-step h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step:after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.process-step:last-child:after {
    display: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.testimonial-client {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.client-info p {
    margin-bottom: 0;
    color: #6c757d;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.faq-question.active:after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
    display: none;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 50px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #1a1d20;
    padding: 20px 0;
    margin-top: 60px;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .process-step:after {
        display: none;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Careers Section Styles */

/* Main container */
.careers-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.careers-section .container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 20px;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #0066cc;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Why Join Us section */
.why-join-us {
  margin-top: 70px;
  margin-bottom: 70px;
}

.why-join-us h3 {
  font-size: 28px;
  color: #333;
  margin-top: 70px;
  margin-bottom: 30px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.benefit-card .icon {
  color: #0066cc;
  font-size: 30px;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.benefit-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Job listings */
.open-positions {
  margin-bottom: 70px;
}

.open-positions h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.job-listing {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.job-header h4 {
  font-size: 22px;
  color: #0066cc;
  margin: 0;
}

.location {
  background-color: #e6f0ff;
  color: #0066cc;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.job-description p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .job-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.job-details h5 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.job-details ul {
  padding-left: 20px;
  margin: 0;
}

.job-details li {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.apply-btn {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #004a99;
}

/* Benefits section */
.benefits-section {
  margin-bottom: 70px;
}

.benefits-section h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.benefits-section .benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.benefit-item {
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
  font-size: 28px;
  color: #0066cc;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Other opportunities section */
.other-opportunities {
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.other-opportunities h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.other-opportunities p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.other-opportunities a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.secondary-btn {
  display: inline-block;
  background-color: #fff;
  color: #0066cc;
  border: 2px solid #0066cc;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background-color: #e6f0ff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .careers-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .benefit-card, .job-listing {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .careers-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .job-header h4 {
    margin-bottom: 10px;
  }
  
  .location {
    margin-bottom: 10px;
  }
  
  .job-listing, .benefit-card, .other-opportunities {
    padding: 20px 15px;
  }
}
