* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #2d3748;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 5%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.65rem;
    font-weight: 600;
    color: #006d77;
    letter-spacing: -0.01em;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ec2815;
}

.nav-link.active {
    color: #ec2815;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ec2815;
    border-radius: 1px;
}

.nav-link.login-button {
    background-color: #ec2815;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.nav-link.login-button:hover {
    background-color: #d12413;
    transform: translateY(-1px);
    color: white;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: #1a1a1a;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Modern Button Pair Styles */
.button-pair {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    /* Ensure buttons stay above any background effects */
}

.apply-button {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ec2815 0%, #ff4d3d 100%);
    color: white !important;
    /* Ensure text color is always white */
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(236, 40, 21, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    z-index: 2;
    /* Ensure button stays above any background effects */
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.apply-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(236, 40, 21, 0.35);
    background: linear-gradient(135deg, #ff4d3d 0%, #ec2815 100%);
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(236, 40, 21, 0.2);
}

.get-in-touch-button {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    /* Ensure text color is always white */
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    z-index: 2;
    /* Ensure button stays above any background effects */
}

.get-in-touch-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.get-in-touch-button:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.get-in-touch-button:hover::before {
    transform: translateX(0);
}

.get-in-touch-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Add arrow icons to both buttons */
.apply-button::after,
.get-in-touch-button::after {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.apply-button:hover::after,
.get-in-touch-button:hover::after {
    transform: translateX(6px);
    opacity: 1;
}

/* Add a subtle glow effect on hover */
.apply-button::after {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for button pair */
@media (max-width: 768px) {
    .button-pair {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .apply-button,
    .get-in-touch-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* Add a subtle animation for the button pair container */
.button-pair {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section Styles */
.services-section {
    padding: 6rem 5%;
    background-color: #e6f3ff;
}

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

.services-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.services-title:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #006d77;
    border-radius: 2px;
}

.service-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(11, 111, 212, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(20, 204, 164, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 167, 228, 0.486) 0%, rgba(0, 165, 176, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-section:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-section:hover::before {
    opacity: 1;
}

.service-section h2 {
    color: #ec2815;
    margin-bottom: 20px;
    font-size: 1.8em;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ec2815;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-section:hover h2::after {
    width: 100%;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-point {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ec2815;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-point:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-point:hover::before {
    transform: scaleY(1);
}

.service-point h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-point:hover h3 {
    color: #ec2815;
}

.service-point p {
    color: #4b5563;
    font-size: 1em;
    line-height: 1.6;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
}

.service-point:hover p {
    color: #2d3748;
}

/* Service Point Active State */
.service-point.active {
    background: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-point.active::before {
    transform: scaleY(1);
}

.service-point.active p {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
}

/* Add a visual indicator for clickable state */
.service-point::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.2em;
    color: #4b5563;
    transition: transform 0.3s ease;
}

.service-point.active::after {
    transform: rotate(45deg);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .service-point {
        padding: 20px;
    }

    .service-point::after {
        right: 15px;
        top: 15px;
    }
}

/* Service Header Styles */
.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-section:hover .service-image {
    transform: scale(1.1) rotate(5deg);
}

.service-header h2 {
    margin: 0;
    padding: 0;
    border: none;
}

.service-header h2::after {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 4rem 5%;
    }

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

    .service-section {
        padding: 25px;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-point {
        padding: 20px;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-image {
        width: 60px;
        height: 60px;
    }
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

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

.about-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.about-title:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #006d77;
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro,
.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.what-we-do {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.what-we-do h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.capability-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.capability-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.capability-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.vision-statement {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.partnership-cta {
    font-size: 1.4rem;
    color: #006d77;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 5%;
    }

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

    .what-we-do {
        padding: 2rem;
    }

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

    .about-intro,
    .about-description {
        font-size: 1rem;
    }

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

    .partnership-cta {
        font-size: 1.2rem;
    }
}

/* Community Section */
.community-section {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

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

.community-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.community-hero h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.expertise-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.expertise-block h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.3rem;
    color: #006d77;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.benefit-card {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

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

.benefit-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-choose-us {
    text-align: center;
    padding: 4rem 0;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #006d77;
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.feature-card {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    color: white;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .community-section {
        padding: 4rem 5%;
    }

    .community-hero h2 {
        font-size: 2.2rem;
    }

    .expertise-block {
        padding: 1.5rem;
    }

    .expertise-block h3 {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

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

    .why-choose-us h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

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

/* Opportunities Section */
.opportunities-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.opportunities-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 16px;
    padding: 2rem;
}

.opportunities-header {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 109, 119, 0.15);
    position: relative;
    overflow: hidden;
}

.opportunities-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.year-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.opportunities-header h2 {
    font-size: 2.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.opportunities-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 109, 119, 0.1);
}

.opportunities-hero h3 {
    font-size: 1.8rem;
    color: #006d77;
    margin-bottom: 1.5rem;
}

.opportunities-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

.opportunities-main {
    padding: 2rem 0;
}

.opportunities-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.opportunities-intro h3 {
    font-size: 2rem;
    color: #006d77;
    margin-bottom: 1rem;
}

.opportunities-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
}

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

.opportunity-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 109, 119, 0.1);
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #006d77, #00a5b0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 109, 119, 0.15);
}

.opportunity-card:hover::before {
    transform: scaleX(1);
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.opportunity-card h4 {
    font-size: 1.5rem;
    color: #006d77;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Add specific styles for the opportunity titles that need to be in white */
.opportunity-card:nth-child(1) h4,
/* Annotation */
.opportunity-card:nth-child(2) h4,
/* Generalist Tasks */
.opportunity-card:nth-child(3) h4,
/* Coding & Software Development */
.opportunity-card:nth-child(4) h4,
/* Translation & Localization */
.opportunity-card:nth-child(5) h4 {
    /* Engineering */
    color: #ffffff;
}

.opportunity-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Add specific styles for the opportunity subtitles to be pure black */
.opportunity-card:nth-child(1) p,
/* Annotation subtitle */
.opportunity-card:nth-child(2) p,
/* Generalist Tasks subtitle */
.opportunity-card:nth-child(3) p,
/* Coding & Software Development subtitle */
.opportunity-card:nth-child(4) p,
/* Translation & Localization subtitle */
.opportunity-card:nth-child(5) p {
    /* Engineering subtitle */
    color: #000000;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    color: #006d77;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #006d77;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

/* Add specific styles for the explore role links to be white */
.opportunity-card:nth-child(1) .explore-link,
/* Annotation explore link */
.opportunity-card:nth-child(2) .explore-link,
/* Generalist Tasks explore link */
.opportunity-card:nth-child(3) .explore-link,
/* Coding & Software Development explore link */
.opportunity-card:nth-child(4) .explore-link,
/* Translation & Localization explore link */
.opportunity-card:nth-child(5) .explore-link {
    /* Engineering explore link */
    color: #ffffff;
    border-color: #ffffff;
}

.explore-link:hover {
    background: #006d77;
    color: white;
    transform: translateX(5px);
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.explore-link:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .opportunities-section {
        padding: 4rem 5%;
    }

    .opportunities-header {
        padding: 2rem 1.5rem;
    }

    .opportunities-header h2 {
        font-size: 2rem;
    }

    .opportunities-hero {
        padding: 2rem 1.5rem;
    }

    .opportunities-hero h3 {
        font-size: 1.5rem;
    }

    .opportunities-hero p {
        font-size: 1rem;
    }

    .opportunities-intro h3 {
        font-size: 1.8rem;
    }

    .opportunities-subtitle {
        font-size: 1.1rem;
    }

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

    .opportunity-card {
        padding: 1.5rem;
    }

    .opportunity-card h4 {
        font-size: 1.3rem;
    }
}

/* Blog Section */
.blog-section {
    padding: var(--section-padding) var(--container-padding);
    background-color: #f8f9fa;
    min-height: 100vh;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.blog-post {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(15, 3, 3);
    opacity: 1 !important;
    transform: none !important;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 165, 176, 0.1);
}

.blog-post h2 {
    color: rgba(34, 69, 224, 0.87);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-date {
    color: rgba(177, 16, 16, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post p {
    color: rgba(12, 1, 1, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: white !important;
    /* White text */
    text-decoration: none;
    font-weight: 600;
    /* Make it bold */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* Add gap for arrow */
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    /* Adjust padding for button feel */
    border-radius: 8px;
    /* Rounded corners */

    /* New unique styling */
    background: #ec2815;
    /* Solid red background */
    border: 2px solid #ec2815;
    /* Matching border */
    box-shadow: 0 4px 10px rgba(236, 40, 21, 0.2);
    /* Subtle shadow */
}

.read-more:hover {
    /* Hover effect */
    background-color: #d12413;
    /* Darker red on hover */
    border-color: #d12413;
    transform: translateY(-2px);
    /* Lift slightly on hover */
    box-shadow: 0 6px 12px rgba(236, 40, 21, 0.3);
    color: white;
    /* Ensure text stays white */
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 5%;
    }

    .blog-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .blog-post h2 {
        font-size: 1.3rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) var(--container-padding);
    background-color: #f8f9fa;
    min-height: 100vh;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-category {
    margin-bottom: 3rem;
    opacity: 1;
    visibility: visible;
}

.faq-category h2 {
    font-size: 1.8rem;
    color: #006d77;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 1;
    visibility: visible;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 5%;
    }

    .faq-container {
        padding: 2rem;
    }

    .faq-category h2 {
        font-size: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 5%;
    }

    .faq-container {
        padding: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }
}

/* Apply Section */
.apply-section {
    padding: 6rem 5%;
    background: #1a1a1a;
}

.apply-container {
    max-width: 800px;
    margin: 0 auto;
    background: #2d2d2d;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apply-title {
    font-size: 2.5rem;
    color: #00a5b0;
    text-align: center;
    margin-bottom: 1rem;
}

.apply-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 3rem;
}

.apply-form-container {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group label {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: #e5e7eb;
    background: #3d3d3d;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a5b0;
    background: #3d3d3d;
    box-shadow: 0 0 0 2px rgba(0, 165, 176, 0.3);
}

.submit-button {
    padding: 1rem 2rem;
    background: #00a5b0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #008c96;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .apply-section {
        padding: 4rem 5%;
    }

    .apply-container {
        padding: 2rem;
    }

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

    .apply-subtitle {
        font-size: 1.1rem;
    }

    .apply-form-container {
        padding: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* Login Section */
.login-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 450px;
    width: 100%;
}

.login-box {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    color: white;
}

.login-title {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1.1rem;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

.members-only {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-login {
    margin-bottom: 1.5rem;
    text-align: center;
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #4b5563;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #006d77;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #006d77;
}

.forgot-password {
    color: #006d77;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #005a62;
}

.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.login-button {
    padding: 1rem;
    background-color: white;
    color: #006d77;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.signup-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.signup-link a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.signup-link a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-section {
        padding: 4rem 5%;
    }

    .login-box {
        padding: 2rem;
    }

    .login-title {
        font-size: 1.8rem;
    }

    .login-subtitle {
        font-size: 1rem;
    }
}

/* Page Container Styles */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
    margin: 2rem 0;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Accent Colors */
.accent-border {
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.accent-bg {
    background: rgba(79, 70, 229, 0.05);
}

/* Blog Page Specific */
.blog-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.blog-post {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

/* FAQ Page Specific */
.faq-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

/* Opportunities Page Specific */
.opportunities-container {
    background: transparent;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: none;
    border: none;
}

.opportunity-card {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 165, 176, 0.1);
    background: linear-gradient(135deg, #005a62 0%, #008c96 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    .card,
    .blog-post,
    .faq-item,
    .opportunity-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor Pointer for Service Points */
.service-point {
    cursor: pointer;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #1a17f5;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d12413;
}

.explore-link {
    align-self: flex-start;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(236, 40, 21, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.email-link {
    color: #00a5b0;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.email-link:hover {
    color: #008c96;
    background-color: rgba(0, 165, 176, 0.1);
}

.email-link:active {
    color: #006d77;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .explore-link {
        margin-top: 1.5rem;
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-header {
    text-align: left;
    margin-bottom: 0;
    padding: 0 1rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.form-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin: 0;
    position: relative;
    padding: 0 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: none;
    background: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-control:focus {
    background: #f1f5f9;
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 0 1rem;
}

.form-actions {
    text-align: left;
    margin-top: 1rem;
    padding: 0 1rem;
}

.submit-button {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background: #000;
}

.submit-button:hover::after {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        gap: 1.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

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

    .form-control {
        padding: 0.8rem;
    }

    .submit-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    background: #1a1a1a;
    color: white;
}

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

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-button {
    padding: 1rem 2rem;
    background: #00a5b0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #008c96;
    transform: translateY(-2px);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #00a5b0;
    text-decoration: none;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #00a5b0;
    text-decoration: none;
}

.know-more {
    display: inline-block;
    margin-top: 1rem;
    color: #00a5b0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.know-more:hover {
    color: #008c96;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        text-align: center;
    }
}

/* Base Mobile Optimization */
:root {
    --container-padding: 5%;
    --section-padding: 6rem;
    --mobile-section-padding: 3rem;
    --heading-font-size: 2.5rem;
    --mobile-heading-font-size: 1.8rem;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
    }

    .logo-container {
        z-index: 1001;
    }

    /* Add padding to body to account for fixed navbar */
    body {
        padding-top: 70px;
    }
}

/* Mobile-First Typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    p {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
    }
}

/* Enhanced Mobile Services Section */
@media (max-width: 768px) {
    .services-section {
        padding: var(--mobile-section-padding) var(--container-padding);
    }

    .service-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .service-point {
        padding: 1rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* Mobile-Optimized Forms */
@media (max-width: 768px) {
    .form-container {
        padding: 1rem;
    }

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

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

    input,
    select,
    textarea {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }
}

/* Touch-Friendly Buttons */
@media (max-width: 768px) {

    .button,
    .apply-button,
    .contact-button {
        padding: 0.8rem 1.5rem;
        min-height: 44px;
        /* Minimum touch target size */
        width: 100%;
        /* Full width on mobile */
    }
}

/* Mobile Grid Layouts */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid,
    .features-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Images */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .service-image {
        width: 60px;
        height: 60px;
    }
}

/* Mobile-Optimized Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
        background-attachment: scroll;
        padding: 1rem;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 400px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=80');
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Enhanced Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    /* Reduce animation complexity on mobile */
    .service-section:hover,
    .service-point:hover,
    .blog-post:hover {
        transform: none;
    }

    /* Optimize images for mobile */
    .hero-section {
        background-image: url('path-to-mobile-optimized-hero-image.jpg');
    }

    /* Improve touch targets */
    .nav-link,
    .button,
    .service-point {
        padding: 0.8rem;
        margin: 0.2rem 0;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {

    /* Fixed navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Body padding to account for fixed navbar */
    body {
        padding-top: 70px;
    }

    /* Menu toggle button */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .menu-icon {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #1a1a1a;
        position: relative;
        transition: background-color 0.3s;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #1a1a1a;
        transition: transform 0.3s;
    }

    .menu-icon::before {
        top: -6px;
    }

    .menu-icon::after {
        bottom: -6px;
    }

    /* Active menu icon state */
    .menu-toggle.active .menu-icon {
        background-color: transparent;
    }

    .menu-toggle.active .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-toggle.active .menu-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* Mobile navigation links */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem;
        width: 100%;
        text-align: center;
        border-radius: 6px;
    }

    .nav-link:hover {
        background-color: #f1f5f9;
    }

    /* Special buttons in nav */
    .nav-link.login-button,
    .nav-link.logout-button {
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }

    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Know More Page Styles */
.know-more-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.section-block {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 109, 119, 0.1);
}

.section-block h2 {
    color: #006d77;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.section-block p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 109, 119, 0.1);
    color: #4b5563;
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    line-height: 1.6;
}

.highlight-block {
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    color: white;
}

.highlight-block h2,
.highlight-block p,
.highlight-block strong {
    color: white;
}

.highlight-block a {
    color: white;
    text-decoration: underline;
}

.highlight-block a:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .know-more-content {
        padding: 1rem;
    }

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

    .section-block {
        padding: 1.5rem;
    }

    .section-block h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Specific Styles */
.contact-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link.linkedin {
    background: #f3f8ff;
    color: #0066cc;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link.coming-soon {
    background: #f8f9fa;
    color: #6b7280;
    cursor: not-allowed;
    position: relative;
}

.coming-soon-badge {
    font-size: 0.75rem;
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.location-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.support-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.support-info p {
    margin-bottom: 1rem;
}

.support-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-page-content {
        padding: 1rem;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .contact-email {
        font-size: 1rem;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-form input,
.contact-form textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #006d77;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-button {
    background: #006d77;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .submit-button:hover {
    background: #005a62;
    transform: translateY(-2px);
}

.contact-form .submit-button:active {
    transform: translateY(0);
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .contact-form {
        margin-top: 1.5rem;
        gap: 1.25rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .contact-form .submit-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

.apply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #006d77 0%, #00a5b0 100%);
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 109, 119, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.apply-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.apply-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 109, 119, 0.3);
    background: linear-gradient(135deg, #005a62 0%, #008c96 100%);
}

.apply-link:hover::before {
    left: 100%;
}

.apply-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 109, 119, 0.2);
}

/* Add a subtle arrow icon */
.apply-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.apply-link:hover::after {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .apply-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}