/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d1117;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Navbar */
  header {
    background: #0d1117;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2937;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo {
    height: 50px;
  }
  
  nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #f97316;
  }
  
  /* Hero */
  .hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #1e293b, #0f172a);
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .hero span {
    color: #f97316;
    text-shadow: 0 0 10px #f97316;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    background: #f97316;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .btn:hover {
    background: #ea580c;
  }
  
  /* Pages */
  .page {
    padding: 50px;
    max-width: 900px;
    margin: auto;
  }
  
  /* Apps Section */
  .apps {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .apps h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f97316;
  }
  
  .app-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }
  
  .app-card:hover {
    background: #334155;
    transform: translateY(-5px);
  }
  
  .app-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f97316;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
  }
  
  .app-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
  }

  /* Services Page */
  .services-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0d1117 0%, #1e293b 100%);
    min-height: calc(100vh - 140px);
  }
  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-container h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f97316;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
  }
  
  .services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .service-card {
    background: linear-gradient(145deg, #1e293b, #2d3748);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
  }
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.3));
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    color: #f97316;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .service-card > p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .service-features {
    list-style: none;
    padding: 0;
  }
  
  .service-features li {
    color: #cbd5e1;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
  }
  
  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
  }
  
  /* CTA Section */
  .cta-section {
    text-align: center;
    background: linear-gradient(145deg, #1e293b, #2d3748);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #374151;
  }
  
  .cta-section h2 {
    color: #f97316;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(45deg, #ea580c, #dc2626);
  }

  /* Careers Page */
  .careers-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0d1117 0%, #1e293b 50%, #0f172a 100%);
    min-height: calc(100vh - 140px);
  }
  
  .careers-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .careers-container h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f97316, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
  }
  
  .careers-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Career Stats */
  .careers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .stat-card {
    background: linear-gradient(145deg, #1e293b, #334155);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .stat-card:hover::before {
    transform: scaleX(1);
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #f97316;
    margin-bottom: 8px;
  }
  
  .stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
  }
  
  /* Jobs Section */
  .jobs-section h2 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .job-card {
    background: linear-gradient(145deg, #1e293b, #2d3748);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
  }
  
  .job-card:hover::before {
    transform: scaleX(1);
  }
  
  /* Job Header */
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .job-badge {
    background: linear-gradient(45deg, #f97316, #fbbf24);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .job-posted {
    color: #94a3b8;
    font-size: 0.9rem;
  }
  
  .job-title {
    font-size: 2rem;
    color: #f97316;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .job-meta span {
    background: #374151;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #e2e8f0;
  }
  
  .job-description {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
  }
  
  /* Job Requirements */
  .job-requirements {
    margin-bottom: 25px;
  }
  
  .job-requirements h4 {
    color: #f97316;
    margin-bottom: 12px;
    font-size: 1.2rem;
  }
  
  .job-requirements ul {
    list-style: none;
    padding: 0;
  }
  
  .job-requirements li {
    color: #cbd5e1;
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
  }
  
  .job-requirements li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.8rem;
  }
  
  /* Job Perks */
  .job-perks h4 {
    color: #f97316;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  
  .perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .perk-item {
    background: linear-gradient(45deg, #374151, #4b5563);
    padding: 10px 15px;
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .perk-item:hover {
    background: linear-gradient(45deg, #f97316, #fbbf24);
    color: white;
    transform: translateY(-2px);
  }
  
  /* How to Apply Section */
  .how-to-apply {
    margin-top: 25px;
    background: linear-gradient(145deg, #374151, #4b5563);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #6b7280;
  }
  
  .how-to-apply h4 {
    color: #f97316;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
  }
  
  .apply-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .apply-method {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #1e293b, #2d3748);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
  }
  
  .apply-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
  }
  
  .apply-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.3));
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .apply-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .apply-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .apply-link {
    color: #f97316;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .apply-link:hover {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
  }
  
  .apply-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    transition: width 0.3s ease;
  }
  
  .apply-link:hover::after {
    width: 100%;
  }
  
  .apply-divider {
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
    from { box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2); }
    to { box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4); }
  }
  
  /* Coming Soon Card */
  .coming-soon {
    background: linear-gradient(145deg, #374151, #4b5563);
    text-align: center;
    border: 2px dashed #6b7280;
  }
  
  .coming-soon-content h3 {
    color: #fbbf24;
    margin-bottom: 15px;
  }
  
  .coming-soon-content p {
    color: #d1d5db;
    margin-bottom: 20px;
  }
  
  .btn-notify {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  }
  
  /* Why Join Section */
  .why-join-section {
    margin-top: 60px;
  }
  
  .why-join-section h2 {
    font-size: 2.5rem;
    color: #f97316;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .benefit-card {
    background: linear-gradient(145deg, #1e293b, #2d3748);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .benefit-card h4 {
    color: #f97316;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .benefit-card p {
    color: #cbd5e1;
    line-height: 1.5;
  }

  /* Team Page */
  .team-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0d1117 0%, #1e293b 50%, #0f172a 100%);
    min-height: calc(100vh - 140px);
  }
  
  .team-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .team-container h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f97316, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
  }
  
  .team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .team-card {
    background: linear-gradient(145deg, #1e293b, #2d3748);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
  }
  
  .team-card:hover::before {
    transform: scaleX(1);
  }
  
  /* Team Image */
  .team-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
  }
  
  .team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .team-card:hover .team-image {
    transform: scale(1.1);
  }
  
  .team-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #374151, #4b5563);
    color: #e2e8f0;
  }
  
  .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 8px;
  }
  
  .placeholder-text {
    font-size: 0.8rem;
    text-align: center;
  }
  
  /* Team Info */
  .team-info {
    text-align: center;
  }
  
  .team-name {
    color: #f97316;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
  }
  
  .team-role {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .team-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  
  /* Skills */
  .team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .skill-tag {
    background: linear-gradient(45deg, #374151, #4b5563);
    color: #e2e8f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  
  .skill-tag:hover {
    background: linear-gradient(45deg, #f97316, #fbbf24);
    color: white;
    transform: translateY(-2px);
  }
  
  /* Social Links */
  .team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .social-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #374151;
  }
  
  .social-link:hover {
    color: #f97316;
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
  }
  
  /* Team Values */
  .team-values {
    margin-top: 60px;
  }
  
  .team-values h2 {
    font-size: 2.5rem;
    color: #f97316;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .value-card {
    background: linear-gradient(145deg, #1e293b, #2d3748);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
  }
  
  .value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .value-card h4 {
    color: #f97316;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .value-card p {
    color: #cbd5e1;
    line-height: 1.5;
  }
  
  /* Contact Page */
  .content {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 12px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background: #ea580c;
  }
  
  .contact-info {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
  }
  
  .contact-info h3 {
    color: #f97316;
    margin-bottom: 20px;
  }
  
  /* Form Status Messages */
  .form-status {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    display: none;
  }
  
  .form-status.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
  }
  
  .form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
  }
  
  /* Button Loading State */
  .contact-form button {
    position: relative;
    overflow: hidden;
  }
  
  .contact-form button:disabled {
    background: #6b7280;
    cursor: not-allowed;
  }
  
  .btn-loading {
    display: none;
  }
  
  .contact-form button.loading .btn-text {
    display: none;
  }
  
  .contact-form button.loading .btn-loading {
    display: inline;
  }
  
  /* Mobile Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #0f172a;
    margin-top: 50px;
  }

  /* Responsive Design */
  
  /* Tablet Styles (768px and below) */
  @media (max-width: 768px) {
    /* Header adjustments */
    header {
      padding: 15px 20px;
      position: relative;
    }
    
    nav {
      position: relative;
    }
    
    nav ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #0d1117;
      flex-direction: column;
      padding: 20px 0;
      border-top: 1px solid #1f2937;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: slideDown 0.3s ease;
    }
    
    nav ul.show {
      display: flex;
    }
    
    nav ul li {
      margin: 0;
      text-align: center;
    }
    
    nav ul li a {
      display: block;
      padding: 12px 20px;
      border-bottom: 1px solid #1f2937;
      transition: all 0.3s ease;
    }
    
    nav ul li:last-child a {
      border-bottom: none;
    }
    
    nav ul li a:hover {
      background: #1e293b;
      transform: translateX(5px);
    }
    
    .hamburger {
      display: flex;
    }
    
    /* Slide down animation */
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Hero section */
    .hero {
      padding: 60px 20px;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    /* Apps section */
    .apps {
      padding: 40px 15px;
    }
    
    .apps h2 {
      font-size: 2rem;
    }
    
    .app-card {
      padding: 25px;
    }
    
    .app-card h3 {
      font-size: 1.5rem;
    }
    
    .app-card p {
      font-size: 1rem;
    }
    
    /* Contact page */
    .contact-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .content {
      padding: 30px 15px;
    }
    
    /* Pages */
    .page {
      padding: 30px 20px;
    }
    
    /* Services page */
    .services-section {
      padding: 40px 15px;
    }
    
    .services-container h1 {
      font-size: 2.2rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .service-card {
      padding: 25px;
    }
    
    .cta-section {
      padding: 30px 20px;
    }
    
    .cta-section h2 {
      font-size: 1.7rem;
    }
    
    /* Careers page */
    .careers-section {
      padding: 40px 15px;
    }
    
    .careers-container h1 {
      font-size: 2.2rem;
    }
    
    .careers-stats {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .job-card {
      padding: 25px;
    }
    
    .job-title {
      font-size: 1.6rem;
    }
    
    .job-meta {
      flex-direction: column;
      gap: 10px;
    }
    
    .apply-methods {
      flex-direction: column;
      gap: 15px;
    }
    
    .apply-method {
      min-width: auto;
    }
    
    .apply-divider {
      padding: 8px 15px;
      font-size: 1rem;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    /* Team page */
    .team-section {
      padding: 40px 15px;
    }
    
    .team-container h1 {
      font-size: 2.2rem;
    }
    
    .team-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .team-card {
      padding: 25px;
    }
    
    .team-image-container {
      width: 120px;
      height: 120px;
    }
    
    .team-name {
      font-size: 1.3rem;
    }
    
    .team-skills {
      justify-content: center;
    }
    
    .team-social {
      flex-direction: column;
      gap: 10px;
    }
    
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }
  
  /* Mobile Styles (480px and below) */
  @media (max-width: 480px) {
    /* Header */
    header {
      padding: 10px 15px;
    }
    
    .logo {
      height: 40px;
    }
    
    /* Hero section */
    .hero {
      padding: 40px 15px;
    }
    
    .hero h1 {
      font-size: 1.8rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    
    /* Apps section */
    .apps {
      padding: 30px 10px;
    }
    
    .apps h2 {
      font-size: 1.7rem;
    }
    
    .app-card {
      padding: 20px 15px;
    }
    
    .app-card h3 {
      font-size: 1.3rem;
    }
    
    .app-card p {
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    /* Contact page */
    .content {
      padding: 20px 10px;
    }
    
    .content h2 {
      font-size: 1.8rem;
    }
    
    .contact-info {
      padding: 20px;
    }
    
    /* Pages */
    .page {
      padding: 20px 15px;
    }
    
    .page h1 {
      font-size: 1.8rem;
    }
    
    /* Services page mobile */
    .services-section {
      padding: 30px 10px;
    }
    
    .services-container h1 {
      font-size: 1.8rem;
    }
    
    .services-intro {
      font-size: 1rem;
      margin-bottom: 30px;
    }
    
    .services-grid {
      gap: 15px;
    }
    
    .service-card {
      padding: 20px;
    }
    
    .service-icon {
      font-size: 2.5rem;
    }
    
    .service-card h3 {
      font-size: 1.3rem;
    }
    
    .cta-section {
      padding: 25px 15px;
    }
    
    .cta-section h2 {
      font-size: 1.5rem;
    }
    
    .btn-primary {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
    
    /* Careers page mobile */
    .careers-section {
      padding: 30px 10px;
    }
    
    .careers-container h1 {
      font-size: 1.8rem;
    }
    
    .careers-intro {
      font-size: 1rem;
      margin-bottom: 30px;
    }
    
    .stat-card {
      padding: 20px;
    }
    
    .stat-number {
      font-size: 1.5rem;
    }
    
    .jobs-section h2 {
      font-size: 2rem;
    }
    
    .job-card {
      padding: 20px;
    }
    
    .job-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    
    .job-title {
      font-size: 1.4rem;
    }
    
    .job-meta span {
      font-size: 0.8rem;
      padding: 4px 8px;
    }
    
    .job-requirements h4,
    .job-perks h4 {
      font-size: 1rem;
    }
    
    .perks-grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }
    
    .how-to-apply {
      padding: 20px;
    }
    
    .how-to-apply h4 {
      font-size: 1.1rem;
    }
    
    .apply-method {
      padding: 15px;
      gap: 12px;
    }
    
    .apply-icon {
      font-size: 2rem;
    }
    
    .apply-link {
      font-size: 1rem;
    }
    
    .why-join-section h2 {
      font-size: 2rem;
    }
    
    .benefit-card {
      padding: 20px;
    }
    
    .benefit-icon {
      font-size: 2rem;
    }
    
    /* Team page mobile */
    .team-section {
      padding: 30px 10px;
    }
    
    .team-container h1 {
      font-size: 1.8rem;
    }
    
    .team-intro {
      font-size: 1rem;
      margin-bottom: 30px;
    }
    
    .team-card {
      padding: 20px;
    }
    
    .team-image-container {
      width: 100px;
      height: 100px;
      border-width: 3px;
    }
    
    .team-name {
      font-size: 1.2rem;
    }
    
    .team-role {
      font-size: 1rem;
    }
    
    .team-description {
      font-size: 0.9rem;
    }
    
    .skill-tag {
      font-size: 0.7rem;
      padding: 4px 8px;
    }
    
    .social-link {
      font-size: 0.8rem;
      padding: 6px 10px;
    }
    
    .team-values h2 {
      font-size: 2rem;
    }
    
    .values-grid {
      grid-template-columns: 1fr;
    }
    
    .value-card {
      padding: 20px;
    }
    
    .value-icon {
      font-size: 2rem;
    }
    
    /* Footer */
    footer {
      padding: 15px;
      font-size: 0.9rem;
    }
  }