/* ===================================
   CSS Variables & Reset
   =================================== */

/* Font Awesome Icons - Ensure quick display */
.fa, .fas, .far, .fal, .fad {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #00a86b;
    --accent-color: #00bfa5;
    --dark-blue: #003d82;
    --light-blue: #e6f2ff;
    --dark-green: #006b3f;
    --light-green: #e8f5e9;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    cursor: pointer;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Hero Animations Container */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Floating Icons */
.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatIcon 6s ease-in-out infinite;
    pointer-events: none;
}

.tech-icon {
    animation: floatIcon 5s ease-in-out infinite, rotateIcon 10s linear infinite;
}

.health-icon {
    animation: floatIcon 7s ease-in-out infinite, pulseIcon 3s ease-in-out infinite;
}

.agri-icon {
    animation: floatIcon 6s ease-in-out infinite, growIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes rotateIcon {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes pulseIcon {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

@keyframes growIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connect-line {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 5, 5;
    animation: dashLine 4s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 1s; }
.line-3 { animation-delay: 2s; }
.line-4 { animation-delay: 3s; }

@keyframes dashLine {
    0% { stroke-dashoffset: 0; opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { stroke-dashoffset: 100; opacity: 0.3; }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 10s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 30%; animation-duration: 8s; animation-delay: 0s; }
.particle-2 { top: 50%; left: 60%; animation-duration: 12s; animation-delay: 2s; }
.particle-3 { top: 70%; left: 20%; animation-duration: 10s; animation-delay: 1s; }
.particle-4 { top: 30%; right: 25%; animation-duration: 9s; animation-delay: 3s; }
.particle-5 { top: 60%; right: 40%; animation-duration: 11s; animation-delay: 1.5s; }
.particle-6 { top: 85%; left: 50%; animation-duration: 13s; animation-delay: 0.5s; }

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease, textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 215, 0, 0.3); }
}

.hero-title .highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: bounceIn 1s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.7s; }
.stat-item:nth-child(2) { animation-delay: 0.9s; }
.stat-item:nth-child(3) { animation-delay: 1.1s; }

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.stat-item:nth-child(1) i { animation-delay: 0s; }
.stat-item:nth-child(2) i { animation-delay: 0.7s; }
.stat-item:nth-child(3) i { animation-delay: 1.4s; }

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.stat-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: 2px solid var(--white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--white);
    width: 28px;
    height: 28px;
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 5rem 0;
}

.page-section {
    padding-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-box,
.mission-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.mission-box {
    border-left-color: var(--secondary-color);
}

.vision-box i,
.mission-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-box i {
    color: var(--secondary-color);
}

.vision-box h4,
.mission-box h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.vision-box p,
.mission-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-category {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-category:hover {
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--gray-medium);
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Impact Section
   =================================== */
.impact {
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.impact-stat {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.impact-stat i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impact-stat h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.impact-initiatives {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.initiative-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.initiative-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.initiative-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.initiative-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--dark-green));
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   Careers Page Styles
   =================================== */
.careers.page-section {
    padding: 4rem 0 2rem 0;
    background: #f8fafc;
    min-height: 100vh;
    margin-top: 50px;
}
.careers .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.careers .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #0066cc);
}
.careers .section-title span {
    color: var(--secondary-color, #00a86b);
}
.careers .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
}
.careers-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
}
.why-join-section {
    margin-bottom: 2.5rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.benefit-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}
.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color, #0066cc);
    margin-bottom: 0.7rem;
}
.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.benefit-card p {
    color: #555;
    font-size: 0.98rem;
}
.benefit-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.openings-section {
    margin-bottom: 2.5rem;
}
.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}
.job-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: box-shadow 0.2s;
}
.job-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}
.job-header h4 {
    flex: 1 1 auto;
    margin: 0;
}
.job-type {
    align-self: flex-start;
    margin-left: 0.5rem;
    margin-top: 0.1rem;
    white-space: nowrap;
}
.job-details {
    font-size: 0.97rem;
    color: #555;
    margin-bottom: 0.3rem;
}
.job-details p {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    column-gap: 10px;
    margin: 6px 0;
    line-height: 1.5;
}
.job-details i {
    color: var(--primary-color, #0066cc);
    font-size: 14px;
    margin-top: 2px;
}
.job-description {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
    text-align: justify;
}
.job-card .btn {
    align-self: flex-start;
    margin-top: 0.2rem;
    font-size: 0.97rem;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: var(--primary-color, #0066cc);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.job-card .btn:hover {
    background: var(--secondary-color, #00a86b);
}
.spontaneous-application {
    text-align: center;
    margin: 2.5rem 0 2rem 0;
}
.spontaneous-application h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.spontaneous-application p {
    color: #555;
    margin-bottom: 0.7rem;
}
.spontaneous-application .btn-secondary {
    background: #fff;
    color: var(--primary-color, #0066cc);
    border: 1px solid var(--primary-color, #0066cc);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.spontaneous-application .btn-secondary:hover {
    background: var(--primary-color, #0066cc);
    color: #fff;
}
.hiring-process {
    margin: 2.5rem 0 0 0;
}
.hiring-process h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.step {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 1.2rem 1.5rem;
    text-align: center;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-number {
    background: var(--primary-color, #0066cc);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}
.step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.step p {
    color: #555;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .careers.page-section {
        padding: 2.5rem 0 1rem 0;
        margin-top: 50px;
    }
    .benefits-grid, .job-listings, .process-steps {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .step {
        width: 100%;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    /* Keep animations visible on tablets */
    .float-icon {
        font-size: 1.8rem;
        opacity: 0.4;
    }
    
    .particle {
        width: 3px;
        height: 3px;
        opacity: 0.6;
    }
    
    .connect-line {
        stroke: rgba(255, 255, 255, 0.1);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-initiatives {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .service-items {
        grid-template-columns: 1fr;
    }
    
    /* Optimize animations for mobile - keep visible but lighter */
    .float-icon {
        font-size: 1.5rem;
        opacity: 0.35;
        animation-duration: 8s;
    }
    
    .connection-lines {
        opacity: 0.6;
    }
    
    .connect-line {
        stroke: rgba(255, 255, 255, 0.08);
        stroke-width: 0.5;
    }
    
    .particle {
        width: 2px;
        height: 2px;
        opacity: 0.5;
    }
    
    .hero-animation {
        opacity: 0.8;
    }
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background: var(--gray-light);
    padding: 80px 0;
}

.gallery .section-header {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 75%;
    background: var(--gray-medium);
    flex-shrink: 0;
}

.gallery-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 36px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-info h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    word-break: break-word;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 14px;
    word-break: break-word;
}

/* Gallery Responsive Design */
/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-image-wrapper {
        padding-bottom: 75%;
    }

    .gallery-overlay i {
        font-size: 32px;
    }

    .gallery-info {
        padding: 18px;
    }

    .gallery-info h3 {
        font-size: 16px;
    }

    .gallery-info p {
        font-size: 13px;
    }
}

/* Small Tablet (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .gallery {
        padding: 50px 0;
    }

    .gallery .section-header {
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-image-wrapper {
        padding-bottom: 80%;
    }

    .gallery-overlay i {
        font-size: 28px;
    }

    .gallery-info {
        padding: 15px;
    }

    .gallery-info h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .gallery-info p {
        font-size: 12px;
    }
}

/* Mobile (less than 576px) */
@media (max-width: 575px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery .section-header {
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image-wrapper {
        padding-bottom: 80%;
    }

    .gallery-overlay i {
        font-size: 24px;
    }

    .gallery-info {
        padding: 12px;
    }

    .gallery-info h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .gallery-info p {
        font-size: 11px;
    }
}

/* Extra Small Mobile (less than 360px) */
@media (max-width: 359px) {
    .gallery {
        padding: 30px 0;
    }

    .gallery-grid {
        gap: 10px;
    }

    .gallery-info {
        padding: 10px;
    }

    .gallery-info h3 {
        font-size: 13px;
    }

    .gallery-info p {
        font-size: 10px;
    }
}
/* ===================================
   Gallery Lightbox / Modal
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 0;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxSlideIn 0.3s ease-out;
    z-index: 1;
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 70vh;
    overflow: hidden;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
}

.lightbox-info {
    padding: 25px;
    background: var(--white);
    text-align: center;
}

.lightbox-info h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.lightbox-info p {
    color: var(--text-light);
    font-size: 15px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    visibility: hidden;
    opacity: 0;
}

.lightbox.active .lightbox-nav {
    visibility: visible;
    opacity: 1;
}

.lightbox-nav:hover {
    background: rgba(0, 102, 204, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

/* Lightbox Responsive Design */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .lightbox-image-container {
        height: 60vh;
        max-height: 60vh;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-info {
        padding: 20px;
    }

    .lightbox-info h3 {
        font-size: 18px;
    }

    .lightbox-info p {
        font-size: 14px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
        visibility: hidden;
        opacity: 0;
    }

    .lightbox.active .lightbox-nav {
        visibility: visible;
        opacity: 1;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100%;
        border-radius: 0;
    }

    .lightbox-image-container {
        height: 50vh;
        max-height: 50vh;
    }

    .lightbox-image {
        max-height: 50vh;
    }

    .lightbox-info {
        padding: 15px;
    }

    .lightbox-info h3 {
        font-size: 16px;
    }

    .lightbox-info p {
        font-size: 13px;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}
