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

:root {
    --primary-navy: #1a3a7c;
    --accent-teal: #00a8b5;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --text-dark: #1e293b;
    --border-color: #e2e8f0;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

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

/* Background Patterns */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.wave-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%2300a8b5"></path></svg>') repeat-x;
    opacity: 0.1;
}

.diagonal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 168, 181, 0.03) 50%, transparent 100%);
}

.dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 168, 181, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Top Header */
.top-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--accent-teal);
}

/* Contact Links Styling */
.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-teal);
    text-decoration: underline;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

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

/* Main Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo h2 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-teal);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-teal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--primary-navy);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: var(--primary-navy);
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: var(--accent-teal) url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1920&h=1080&fit=crop') center/cover;
    background-blend-mode: overlay;
}

.slide:nth-child(2) {
    background: var(--accent-teal) url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop') center/cover;
    background-blend-mode: overlay;
}

.slide:nth-child(3) {
    background: var(--accent-teal) url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&h=1080&fit=crop') center/cover;
    background-blend-mode: overlay;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--accent-teal);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Page Header */
.page-header {
        background: linear-gradient(rgb(0 168 181), rgb(0 168 181)), url(https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop) center / cover;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: #00a8b5;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    color: #00a8b5;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.read-more-btn {
    display: inline-block;
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more-btn:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Core Services Carousel */
.core-services {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
}

.services-carousel {
    position: relative;
    margin-top: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-light);
}

.service-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-teal);
    color: var(--white);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent-teal);
    transform: scale(1.2);
}

/* Key Services */
.key-services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.key-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.key-service-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-teal);
    text-align: left;
}

.key-service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.key-service-card h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.service-tagline {
    color: var(--accent-teal);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: left;
}

.key-service-card ul {
    list-style: none;
}

.key-service-card li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
    text-align: justify;
}

.key-service-card li:before {
    content: "✓";
    color: var(--accent-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.industry-content h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.industry-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-teal);
}

.commitment-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.commitment-icon {
    color: var(--accent-teal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.commitment-card h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.commitment-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Vision Mission Cards */
.vision-mission {
    padding: 80px 0;
    background: var(--light-gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.vm-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vm-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Contact Card Links */
.contact-card a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-teal);
    text-decoration: underline;
}

/* Form Styles */
.form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.submit-btn {
    background: var(--accent-teal);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Media Gallery */
.media-section {
    padding: 80px 0;
    background: var(--white);
}

.media-filters {
    text-align: center;
    margin: 3rem 0;
}

.filter-btn {
    background: var(--light-gray);
    color: var(--primary-navy);
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-teal);
    color: var(--white);
    transform: translateY(-2px);
}

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

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.media-item:hover img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 124, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Careers */
.careers-section {
    padding: 80px 0;
    background: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-teal);
}

.job-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.job-card h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.apply-btn {
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.apply-btn:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Services List */
.services-list {
    margin-top: 2rem;
}

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

.service-column ul {
    list-style: none;
    padding: 0;
}

.service-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-column li:last-child {
    border-bottom: none;
}

/* Industries and Commitment Intro */
.industries-intro,
.commitment-intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industries-intro p,
.commitment-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.commitment-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--accent-teal);
}

.closing-statement {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
        color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

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

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

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

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--accent-teal);
    width: 16px;
}

/* Footer Contact Links */
.footer .contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-info a:hover {
    color: var(--accent-teal);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 0.8rem;
    }

    .contact-info span {
        display: block;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-logo {
        flex: 1;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-heavy);
        z-index: 9999;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--light-gray);
        color: var(--primary-navy);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    /* Hamburger to X animation */
    .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);
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-btn {
        display: none;
    }

    .key-services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .services-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industries-intro,
    .commitment-intro {
        text-align: center;
        padding: 0 1rem;
    }

    .industries-intro p,
    .commitment-intro p {
        font-size: 1rem;
    }

    .commitment-closing {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .closing-statement {
        font-size: 1.1rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .key-service-card {
        padding: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 1rem auto 0;
}


/* Team Preview */
.team-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    /*max-width: 900px;*/
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--light-gray);
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: var(--gold);
    font-weight: 500;

}


/* 🔹 Common Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* 🔹 Modal Box */
.modal-content {
  background: #fff;
  width: 85%;
  max-width: 950px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s ease;
  max-height: 90vh;              /* Limit height */
  overflow-y: auto;              /* Scroll content only */
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/* 🔹 Smooth Scrollbar (Chrome, Edge, Safari) */
.modal-content::-webkit-scrollbar {
  width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 6px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* 🔹 Close Button */
.close-btn {
  float: right;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  margin-top: -10px;
}
.close-btn:hover {
  color: red;
}

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

/* 🔹 Responsive Fixes */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 25px;
  }
}
