/* CSS Variables for Light/Dark Mode */
:root {
    /* Light Mode Colors */
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    
    /* Unified Icon Colors */
    --icon-primary: #1e40af;
    --icon-secondary: #3b82f6;
    --icon-gradient: linear-gradient(135deg, #1e40af, #3b82f6);
    --icon-shadow: rgba(30, 64, 175, 0.3);
    
    /* Unified Button Colors */
    --btn-primary-bg: rgba(30, 64, 175, 0.8);
    --btn-primary-hover: rgba(30, 64, 175, 0.9);
    --btn-primary-shadow: rgba(30, 64, 175, 0.4);
    --btn-secondary-bg: rgba(255, 255, 255, 0.1);
    --btn-secondary-hover: rgba(255, 255, 255, 0.2);
    
    /* Unified Tag Colors */
    --tag-bg: rgba(255, 255, 255, 0.15);
    --tag-hover: rgba(255, 255, 255, 0.25);
    --tag-border: rgba(255, 255, 255, 0.2);
    
    --bg-primary: #f8f8f8;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.95);
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
    
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-header: rgba(15, 23, 42, 0.95);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-light: #64748b;
    
    --border-color: #334155;
    --border-light: #475569;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
    
    /* Dark mode icon and button adjustments */
    --icon-shadow: rgba(30, 64, 175, 0.5);
    --btn-primary-shadow: rgba(30, 64, 175, 0.6);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn--primary {
    background: var(--btn-primary-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--btn-primary-shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--secondary {
    background: var(--btn-secondary-bg);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: var(--btn-secondary-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .header::before {
        background: rgba(255, 255, 255, 0.2);
    }
}

.header:hover::before {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Light mode logo icon */
[data-theme="light"] .logo-icon {
    color: #000000;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

/* Light mode header text colors */
[data-theme="light"] .logo-text {
    color: #000000;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

/* Light mode navigation links */
[data-theme="light"] .nav__link {
    color: #000000;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

/* Light mode theme toggle */
[data-theme="light"] .theme-toggle {
    color: #000000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.theme-toggle .light-icon {
    display: block;
}

.theme-toggle .dark-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .light-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .dark-icon {
    display: block;
}

/* Mobile Navigation Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Light mode hamburger menu lines */
[data-theme="light"] .nav__toggle span {
    background: #000000;
}

/* Main Content */
.main {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('img/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Removed old grid layout for cleaner centered design */

.hero__title {
    color: white;
    margin-bottom: 1.5rem;
}

.highlight {
    color: white;
}

.hero__description {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tag {
    background: var(--tag-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--tag-border);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--tag-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}



/* Hero layout improved for full-width background */
.hero__container {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.hero__visual {
    display: none; /* Hidden for cleaner design */
}

/* About Section */
.about__story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.about__story-content {
    order: 1;
    text-align: left;
}

.about__story-image {
    order: 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.about__story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about__story-image:hover img {
    transform: scale(1.05);
}

.about__subtitle {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.about__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.card__icon {
    width: 60px;
    height: 60px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--icon-shadow);
}

/* Values Grid */
.values__title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value__item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

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

.value__item h5 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

/* Services Section */
.services__header-image {
    margin: 2rem auto;
    max-width: 800px;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services__header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services__header-image:hover img {
    transform: scale(1.05);
}

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

.service__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.service__icon {
    width: 60px;
    height: 60px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--icon-shadow);
}

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

.service__features {
    list-style: none;
    margin-top: 1rem;
}

.service__features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}



/* Safety Section */
.safety__commitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.safety__commitment-content {
    order: 2;
    text-align: left;
}

.safety__commitment-image {
    order: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.safety__commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.safety__commitment-image:hover img {
    transform: scale(1.05);
}

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

.safety__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.safety__card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety__card ul {
    list-style: none;
}

.safety__card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.safety__card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Stats Grid */
.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat__item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Community Section */
.community__partnership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.community__partnership-content {
    order: 1;
    text-align: left;
}

.community__partnership-image {
    order: 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.community__partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.community__partnership-image:hover img {
    transform: scale(1.05);
}

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

.community__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.community__icon {
    width: 60px;
    height: 60px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--icon-shadow);
}

/* Employment */
.employment__stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.employment__stat {
    text-align: center;
}

.employment__number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.employment__benefits ul {
    list-style: none;
}

.employment__benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.employment__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Technology Section */
.technology__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.tech__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.tech__card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech__card ul {
    list-style: none;
}

.tech__card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.tech__card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Careers Section */
.careers__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.careers__why ul,
.careers__opportunities ul {
    list-style: none;
}

.careers__why li,
.careers__opportunities li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.careers__why li::before,
.careers__opportunities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.opportunities__list {
    display: grid;
    gap: 1rem;
}

.opportunity__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.opportunity__item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.careers__cta {
    text-align: center;
}

/* News Section */
.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform 0.3s ease;
    position: relative;
}

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

.news__card:hover .news__icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.news__icon {
    width: 60px;
    height: 60px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--icon-shadow);
}

.news__date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: grid;
    gap: 2rem;
}

.contact__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.contact__card:hover .contact__icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white !important;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px var(--icon-shadow);
    position: relative;
}

.contact__icon i {
    color: white !important;
    font-size: 1.25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact__card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact__card p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact__card i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.emergency-number {
    color: var(--error-color) !important;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Contact Form */
.contact__form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact__form-icon {
    width: 80px;
    height: 80px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px var(--icon-shadow);
}

.contact__form h3 {
    margin-bottom: 0;
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form__group {
    position: relative;
}

.form__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 1;
}

.form__group textarea + .form__icon {
    top: 1.5rem;
    transform: none;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 1rem;
    padding-left: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form__group textarea {
    padding-left: 3rem;
    padding-top: 1.5rem;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__group input:focus + .form__icon,
.form__group textarea:focus + .form__icon {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.footer__logo .logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.footer__section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.75rem;
}

.footer__section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__section ul li a:hover {
    color: var(--primary-color);
}

.social__links {
    display: flex;
    gap: 1rem;
}

.social__links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social__links a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__visual {
        order: -1;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .employment__stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header {
        width: 95%;
        top: 0.5rem;
    }
    
    .header::before {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100vw;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
    }
    
    .nav__menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Navigation Links Styling */
    .nav__menu .nav__link {
        color: var(--text-primary);
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        text-shadow: none;
    }
    
    .nav__menu .nav__link:hover {
        color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .nav__menu .nav__link::after {
        display: none;
    }
    
    /* Dark mode mobile navigation adjustments */
    [data-theme="dark"] .nav__menu {
        background: rgba(15, 23, 42, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Fallback for browsers that don't support backdrop-filter */
    @supports not (backdrop-filter: blur(20px)) {
        .nav__menu {
            background: rgba(255, 255, 255, 0.98);
        }
        
        [data-theme="dark"] .nav__menu {
            background: rgba(15, 23, 42, 0.98);
        }
    }
    
    [data-theme="dark"] .nav__menu .nav__link {
        color: var(--text-primary);
    }
    
    [data-theme="dark"] .nav__menu .nav__link:hover {
        color: var(--primary-light);
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero__description {
        font-size: 1rem;
    }
    

    
    .hero__tags {
        justify-content: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .about__grid,
    .services__grid,
    .safety__grid,
    .stats__grid,
    .community__grid,
    .technology__grid,
    .careers__grid,
    .news__grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile responsive images */
    .about__story,
    .safety__commitment,
    .community__partnership {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about__story-content,
    .safety__commitment-content,
    .community__partnership-content {
        order: 1;
        text-align: center;
    }
    
    .about__story-image,
    .safety__commitment-image,
    .community__partnership-image {
        order: 2;
    }
    
    .about__story-image,
    .safety__commitment-image,
    .community__partnership-image {
        height: 250px;
    }
    
    .services__header-image {
        height: 200px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        width: 98%;
        top: 0.25rem;
    }
    
    .header::before {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .nav {
        padding: 1rem 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    

    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .about__card,
    .service__card,
    .safety__card,
    .community__card,
    .tech__card,
    .news__card,
    .contact__card {
        padding: 1.5rem;
    }
    
    /* Hero styles cleaned up for mobile */
    

}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 100px;
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus styles for accessibility */
.btn:focus,
.nav__link:focus,
.theme-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .theme-toggle {
        display: none;
    }
    
    .main {
        margin-top: 0;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}
