/* 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: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(46, 113, 254, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 32px;
    width: auto;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #002880;
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF005E;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #002880 0%, #0A48E9 100%);
    color: white;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 40, 128, 0.8), rgba(10, 72, 233, 0.8)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 128, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    background: linear-gradient(120deg, #42DFFE, #2E71FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight::before {
    display: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FF005E;
    color: white;
    border-color: #FF005E;
}

.btn-primary:hover {
    background: #e6004d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #002880;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #002880;
    border-color: #002880;
}

.btn-outline:hover {
    background: #002880;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF005E;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: white;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    width: 340px;
    max-width: 100%;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E71FE, #002880);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 1rem;
}

.card-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Training Section */
.trainings {
    background: #f8fafc;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.trainings .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.trainings-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.training-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,40,128,0.10);
    border: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 480px;
    flex: 1;
    max-width: 350px;
    min-width: 300px;
}
.training-card::before {
    content: '';
    display: block;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #002880 0%, #2E71FE 100%);
    position: absolute;
    top: 0; left: 0;
    border-radius: 22px 22px 0 0;
}
.training-card:hover {
    box-shadow: 0 16px 48px rgba(0,40,128,0.18);
    transform: translateY(-6px) scale(1.025);
}
.training-header {
    padding: 2.5rem 1.5rem 1.2rem 1.5rem;
    background: none;
    color: #002880;
    text-align: center;
}
.training-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002880, #2E71FE);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,40,128,0.10);
}
.training-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.training-content {
    padding: 1.5rem 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.training-features,
.training-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}
.training-features li,
.training-stats li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 1rem;
}
.training-features li b,
.training-stats li b {
    color: #002880;
    font-weight: 600;
    margin-right: 0.5rem;
}
.training-stats li {
    color: #2E71FE;
    font-weight: 500;
}

/* Call to Action Section */
.about-cta {
    background: linear-gradient(90deg, #002880 0%, #2E71FE 100%);
    color: #fff;
    padding: 2.2rem 0 2.5rem 0;
    text-align: center;
    margin-top: 0;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,40,128,0.07);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.about-cta .cta-title {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-cta .cta-description {
    color: #e0e7ef;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.about-cta .cta-buttons,
.about-cta .btn {
    color: #fff !important;
}
.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.about-cta .btn {
    min-width: 180px;
}


/* Responsive Styles */
@media (max-width: 900px) {
    .trainings-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .training-card {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
    }
}
@media (max-width: 600px) {
    .trainings-hero .hero-title {
        font-size: 2rem;
    }
    .trainings-hero {
        padding: 80px 0 40px 0;
    }
    .training-content {
        padding: 1.5rem;
    }
    .about-cta .cta-title {
        font-size: 1.4rem;
    }
    .trainings-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .training-card {
        flex: none;
        min-width: 300px;
        max-width: 380px;
        width: 100%;
    }
}

/* Enhanced mobile responsiveness for training cards only */
@media (max-width: 480px) {
    /* Only target training cards in the trainings section */
    #trainings .training-card {
        min-width: 280px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    #trainings .training-content {
        padding: 1.25rem;
    }
    
    #trainings .training-header {
        padding: 1.75rem 1.25rem 1rem 1.25rem;
    }
    
    #trainings .training-title {
        font-size: 1.2rem;
    }
    
    #trainings .training-features li {
        font-size: 0.95rem;
    }
}

/* Team Section (for main page) */
.team {
    background: white;
}

.team-highlight {
    margin-bottom: 4rem;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.director-image {
    flex-shrink: 0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.director-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.placeholder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E71FE, #002880);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.director-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 0.25rem;
}

.director-title {
    font-size: 1.1rem;
    color: #FF005E;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.director-bio {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.director-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #002880;
    color: white;
    transform: translateY(-2px);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    width: 280px;
    max-width: 100%;
}

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

.member-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.member-image .placeholder-image {
    width: 100px;
    height: 100px;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #6B7280;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.member-social .social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: #2E71FE;
    color: white;
    transform: translateY(-2px);
}

.team-cta {
    text-align: center;
}

/* Team Page Styles - Updated for right alignment */
.team-hero {
    min-height: 100vh;
    padding: 120px 0 60px 0;
}

.team-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.team-hero .container {
    max-width: 1400px;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    display: grid !important;
    grid-template-columns: 1fr 1.3fr !important;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 180px);
}

.team-hero .hero-text {
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
}

.team-hero-image {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center;
    height: 100%;
    padding-right: 0;
    margin-left: auto !important;
    width: 100%;
}

.hero-team-img {
    max-width: none !important;
    min-width: 600px !important;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin-left: auto !important;
}

.hero-team-img:hover {
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .hero-team-img {
        min-width: 500px !important;
        max-width: 700px !important;
    }
}

@media (max-width: 900px) {
    .team-hero .container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        min-height: calc(100vh - 180px);
    }
    .team-hero .hero-text {
        text-align: center;
    }
    .team-hero-image {
        justify-content: center !important;
        padding-right: 0;
    }
    .hero-team-img {
        min-width: unset !important;
        max-width: 90vw !important;
    }
}

/* Director Message Section */
.director-message {
    background: #F8FAFC;
    padding: 6rem 0;
}

.director-message .director-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.director-message .director-card .director-info {
    text-align: center;
}

.director-message .director-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3B82F6;
}

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

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: #EFF6FF;
    transform: translateX(5px);
}

.credential-item i {
    color: #2E71FE;
    font-size: 1.1rem;
}

/* Team Sections */
.team-section {
    padding: 6rem 0;
}

.team-section:nth-child(even) {
    background: #F8FAFC;
}

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

.team-section .team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.team-section .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2E71FE, #002880);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-section .team-member:hover::before {
    transform: scaleX(1);
}

.team-section .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-section .team-member .member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #F3F4F6;
    transition: border-color 0.3s ease;
}

.team-section .team-member:hover .member-image img {
    border-color: #2E71FE;
}

.team-section .member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.5rem;
}

.team-section .member-role {
    color: #FF005E;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-section .member-expertise {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.team-section .member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-section .member-social .social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-section .member-social .social-link:hover {
    background: #2E71FE;
    color: white;
    transform: translateY(-2px);
}

/* Support Staff Section */
.support-staff {
    background: white;
}

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

.support-member {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.support-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.support-member .member-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid #E5E7EB;
}

.support-member .member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.support-member .member-role {
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.support-member .member-expertise {
    color: #9CA3AF;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Research Section */
.research {
    background: #F8FAFC;
}

.research-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.research-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    width: calc(33.333% - 1.33rem);
    max-width: 350px;
    flex-shrink: 0;
}

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

.research-image {
    height: 200px;
    background: linear-gradient(135deg, #002880, #2E71FE);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.research-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placeholder-chip {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.research-content {
    padding: 2rem;
}

.research-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.75rem;
}

.research-description {
    color: #6B7280;
    margin-bottom: 1rem;
}

.research-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spec {
    background: #F3F4F6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.research-cta {
    text-align: center;
}

/* Responsive behavior for research section */
@media (max-width: 1024px) {
    .research-grid {
        flex-wrap: wrap;
    }
    
    .research-card {
        width: calc(50% - 1rem);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .research-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .research-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Industry Collaborations Section - Scoped to specific section */
.industry-collaborations {
    background: #F8FAFC;
}

/* Collaboration Categories - Scoped to industry-collaborations section */
#industry-collaborations .collaboration-category {
    margin-bottom: 4rem;
}

#industry-collaborations .collaboration-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #002880;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

#industry-collaborations .collaboration-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2E71FE, #FF005E);
    border-radius: 2px;
}

#industry-collaborations .collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-bottom: 2rem;
}

#industry-collaborations .collaboration-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#industry-collaborations .collaboration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2E71FE;
}

#industry-collaborations .collaboration-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
}

#industry-collaborations .collaboration-logo:hover {
    border-color: #2E71FE;
    transform: scale(1.05);
}

#industry-collaborations .collaboration-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#industry-collaborations .collaboration-logo:hover img {
    transform: scale(1.1);
}

#industry-collaborations .collaboration-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

/* Placement Stats Section - Scoped to industry-collaborations section */
#industry-collaborations .placement-stats-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E7EB;
}

#industry-collaborations .placement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

#industry-collaborations .placement-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#industry-collaborations .placement-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2E71FE;
}

#industry-collaborations .placement-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF005E;
    display: block;
    margin-bottom: 0.5rem;
}

#industry-collaborations .placement-stat .stat-label {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
}

/* Partnerships Section */
.partnerships {
    background: #F8FAFC;
}

.partnership-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    width: 340px;
    max-width: 100%;
}

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

.partnership-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF005E, #e6004d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.partnership-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 1rem;
}

.partnership-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Contact Section - Scoped to contact section */
#contact {
    background: white;
}

#contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

#contact .contact-map {
    width: 100%;
    margin-bottom: 2rem;
}

#contact .map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

#contact .map-embed {
    width: 100%;
    height: 100%;
}

#contact .map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

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

#contact .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E71FE, #002880);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

#contact .contact-details h4 {
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.5rem;
}

#contact .contact-details p {
    color: #6B7280;
    line-height: 1.6;
}

#contact .form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

#contact .form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

#contact .form-input:focus {
    outline: none;
    border-color: #2E71FE;
}

#contact .form-input::placeholder {
    color: #9CA3AF;
}

/* Responsive Design for Industry Collaborations - Scoped to specific section */
@media (max-width: 1024px) {
    #industry-collaborations .collaboration-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    #industry-collaborations .collaboration-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    #industry-collaborations .collaboration-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    #industry-collaborations .collaboration-item {
        padding: 1.5rem;
    }
    
    #industry-collaborations .collaboration-logo {
        width: 80px;
        height: 80px;
    }
    
    #industry-collaborations .placement-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #industry-collaborations .placement-stat {
        padding: 1.5rem;
    }
    
    #industry-collaborations .placement-stat .stat-number {
        font-size: 2rem;
    }
    
    #industry-collaborations .collaboration-category {
        margin-bottom: 2rem;
    }
    
    #contact .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #industry-collaborations .collaboration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #industry-collaborations .collaboration-item {
        padding: 1rem;
    }
    
    #industry-collaborations .collaboration-logo {
        width: 60px;
        height: 60px;
    }
    
    #industry-collaborations .collaboration-name {
        font-size: 0.85rem;
    }
    
    #industry-collaborations .collaboration-section-title {
        font-size: 1.25rem;
    }
    
    #contact .map-container {
        height: 250px;
    }
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collab-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.industry-image:hover .collab-image {
    transform: scale(1.05);
}

.industry-info {
    padding: 2rem 0;
}

.industry-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 1.5rem;
}

.industry-description {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.industry-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #EFF6FF;
    transform: translateX(5px);
}

.feature-item i {
    color: #2E71FE;
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    font-weight: 500;
    color: #374151;
}

/* Footer */
.footer {
    background: #002880;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-partners {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.partner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-links .social-link:hover {
    background: #FF005E;
}

.footer-links {
    list-style: none;
}

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

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -300% 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 300% 0;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 40, 128, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .director-message .director-card {
        padding: 2rem;
        margin: 0 1rem;
    }

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

    .credential-item {
        font-size: 0.9rem;
    }

    .team-section .team-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .placement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .container {
        padding: 0 1rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .footer-partners {
        justify-content: center;
        gap: 0.75rem;
    }

    .partner-logo {
        height: 40px;
    }

    /* Team page specific mobile styles - center align team member cards */
    .team-page .team-section .team-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-page .team-section .team-member {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .team-page .support-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-page .support-member {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Smooth scrolling and enhanced interactions */
.nav-link,
.btn,
.about-card,
.training-card,
.team-member,
.research-card,
.partnership-card {
    will-change: transform;
}

/* Loading animation for stats */
.stat-number[data-count] {
    counter-reset: count 0;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        counter-increment: count 0;
    }
    to {
        counter-increment: count var(--count);
    }
}

/* === ABOUT PAGE STYLES === */

.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002880 0%, #2E71FE 100%);
    color: #fff;
    position: relative;
    padding: 120px 0 60px 0;
}
.about-hero .hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,40,128,0.8), rgba(46,113,254,0.8)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.about-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,40,128,0.3);
    z-index: 2;
}
.about-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}
.about-hero-text .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-hero-text .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.mission-vision {
    background: #f8fafc;
    padding: 60px 0;
}
.mission-vision-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.mission-card, .vision-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07);
    padding: 2rem 2rem 1.5rem 2rem;
    flex: 1 1 320px;
    max-width: 420px;
    text-align: center;
}
.mission-card .card-icon, .vision-card .card-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.our-story {
    padding: 80px 0;
    background: #fff;
}
.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 4rem;
}
.story-image {
    text-align: center;
    position: relative;
    width: 100%;
    order: -1;
}
.story-img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30,58,138,0.15);
    transition: transform 0.3s ease;
}
.story-img:hover {
    transform: scale(1.02);
}
.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    text-align: center;
    max-width: 800px;
    order: 1;
}
.story-text p {
    margin-bottom: 1.5rem;
}
.story-text p:last-child {
    margin-bottom: 0;
}

.core-values {
    display: none;
}

.impact-achievements {
    background: #fff;
    padding: 60px 0;
}
.achievements-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.achievement-card {
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
}
.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 0.5rem;
}
.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.achievement-description {
    font-size: 0.98rem;
    color: #555;
}

.facilities {
    background: #f8fafc;
    padding: 60px 0;
}
.facilities-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.facility-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,58,138,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}
.facility-icon {
    font-size: 2rem;
    color: #2E71FE;
    margin-bottom: 0.5rem;
}
.facility-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.facility-description {
    font-size: 1rem;
    color: #555;
}

.leadership {
    background: #fff;
    padding: 60px 0;
}
.leadership-highlight {
    display: flex;
    justify-content: center;
}

.timeline {
    background: #f8fafc;
    padding: 60px 0;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Central vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2E71FE, #002880);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Right side items (odd - 1st, 3rd, 5th) */
.timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2rem;
    text-align: right;
}

/* Left side items (even - 2nd, 4th, 6th) */
.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2rem;
    text-align: left;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #002880;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px #f8fafc;
}

/* Active marker for first item */
.timeline-item:first-child .timeline-marker {
    background: #FF005E;
    border-color: #FF005E;
    box-shadow: 0 0 0 4px #f8fafc, 0 0 20px rgba(255, 0, 94, 0.3);
}

.timeline-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 40, 128, 0.08);
    padding: 1.5rem 2rem;
    max-width: 380px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 40, 128, 0.15);
}

/* Content arrows pointing towards center */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    transform: translateY(-50%);
}

/* Arrow for right side items (pointing right - away from center) */
.timeline-item:nth-child(odd) .timeline-content::before {
    left: -24px;
    border-right-color: #fff;
}

/* Arrow for left side items (pointing left - away from center) */
.timeline-item:nth-child(even) .timeline-content::before {
    right: -24px;
    border-left-color: #fff;
}

.timeline-date {
    font-size: 1rem;
    font-weight: 600;
    color: #2E71FE;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.timeline-description {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .timeline-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Remove central line on mobile */
    .timeline-container::before {
        display: none;
    }
    
    /* Stack all items on left side for mobile */
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-item .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
        text-align: left;
        max-width: calc(100% - 3rem);
    }
    
    /* Position marker on the left for mobile */
    .timeline-marker {
        left: 1rem;
        transform: translateX(0);
    }
    
    /* Remove content arrows on mobile */
    .timeline-content::before {
        display: none;
    }
    
    /* Add left border for mobile timeline */
    .timeline-container {
        position: relative;
        padding-left: 2rem;
    }
    
    .timeline-container::after {
        content: '';
        position: absolute;
        left: 1rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, #2E71FE, #002880);
        transform: translateX(-50%);
    }
}

.about-cta {
    background: linear-gradient(90deg, #002880 0%, #2E71FE 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .mission-vision-grid, .values-grid, .achievements-grid, .facilities-grid {
        flex-direction: column;
        align-items: center;
    }
    .story-content {
        gap: 3rem;
        padding: 0 1rem;
    }
    .story-img {
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .story-content {
        gap: 2.5rem;
    }
    .story-img {
        max-width: 100%;
    }
    .story-text {
        font-size: 1rem;
        text-align: left;
    }
}

/* === TRAININGS PAGE STYLES === */

.trainings-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002880 0%, #2E71FE 100%);
    color: #fff;
    position: relative;
    padding: 120px 0 60px 0;
}
.trainings-hero .hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,40,128,0.8), rgba(46,113,254,0.8));
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.trainings-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,40,128,0.3);
    z-index: 2;
}
.trainings-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}
.trainings-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.trainings-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
}

.trainings .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trainings-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.training-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,40,128,0.10);
    border: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 480px;
    flex: 1;
    max-width: 350px;
    min-width: 300px;
}
.training-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,40,128,0.13);
}
.training-header {
    padding: 2rem 1.5rem 1rem 1.5rem;
    background: linear-gradient(135deg, #002880, #2E71FE);
    color: #fff;
    text-align: center;
}
.training-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}
.training-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.training-content {
    padding: 1.5rem 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.training-features,
.training-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}
.training-features li,
.training-stats li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 1rem;
}
.training-features li b,
.training-stats li b {
    color: #002880;
    font-weight: 600;
    margin-right: 0.5rem;
}
.training-stats li {
    color: #2E71FE;
    font-weight: 500;
}

/* Call to Action Section */
.about-cta {
    background: linear-gradient(90deg, #002880 0%, #2E71FE 100%);
    color: #fff;
    padding: 2.2rem 0 2.5rem 0;
    text-align: center;
    margin-top: 0;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,40,128,0.07);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.about-cta .cta-title {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-cta .cta-description {
    color: #e0e7ef;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.about-cta .cta-buttons,
.about-cta .btn {
    color: #fff !important;
}
.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.about-cta .btn {
    min-width: 180px;
}


/* Responsive Styles */
@media (max-width: 900px) {
    .trainings-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .training-card {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
    }
}
@media (max-width: 600px) {
    .trainings-hero .hero-title {
        font-size: 2rem;
    }
    .trainings-hero {
        padding: 80px 0 40px 0;
    }
    .training-content {
        padding: 1.5rem;
    }
    .about-cta .cta-title {
        font-size: 1.4rem;
    }
    .trainings-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .training-card {
        flex: none;
        min-width: 300px;
        max-width: 380px;
        width: 100%;
    }
}

/* Enhanced mobile responsiveness for training cards only */
@media (max-width: 480px) {
    /* Only target training cards in the trainings section */
    #trainings .training-card {
        min-width: 280px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    #trainings .training-content {
        padding: 1.25rem;
    }
    
    #trainings .training-header {
        padding: 1.75rem 1.25rem 1rem 1.25rem;
    }
    
    #trainings .training-title {
        font-size: 1.2rem;
    }
    
    #trainings .training-features li {
        font-size: 0.95rem;
    }
}

/* === ENHANCED SPLIT SECTION TRAININGS PAGE (renamed to .split-training-*) === */
.split-training {
    width: 100%;
    padding: 4.5rem 0 4.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(120deg, #f8fafc 60%, #e8f0fa 100%);
}
.split-training-dark {
    background: linear-gradient(120deg, #fff 60%, #f3f6fa 100%);
}
.split-training-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    max-width: 1050px;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(30,58,138,0.10), 0 1.5px 8px rgba(30,58,138,0.04);
    padding: 3.5rem 3rem 3.5rem 3rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.split-training:hover .split-training-content {
    box-shadow: 0 16px 56px rgba(30,58,138,0.16), 0 2px 12px rgba(30,58,138,0.07);
    transform: translateY(-4px) scale(1.012);
}
.split-training-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 260px;
}
.split-training-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    box-shadow: 0 2px 18px 6px rgba(46,113,254,0.13);
    position: relative;
    z-index: 1;
}
.split-training-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(46,113,254,0.13) 0%, rgba(0,40,128,0.04) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.split-training-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #002880;
    margin-bottom: 1.3rem;
    letter-spacing: -1px;
}
.split-training-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #374151;
    font-size: 1.13rem;
}
.split-training-features li {
    margin-bottom: 0.45rem;
}
.split-training-features li:first-child {
    font-weight: 800;
    color: #002880;
    margin-bottom: 0.2rem;
    font-size: 1.15rem;
}
.split-training-bullets {
    margin-left: 1.5rem;
    margin-top: 0.2rem;
    margin-bottom: 1.2rem;
    color: #374151;
    font-size: 1.08rem;
    list-style: disc inside;
    padding-left: 0;
}
.split-training-bullets li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}
.split-training-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 220px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem 2rem 2rem 2.5rem;
    box-shadow: 0 1px 8px rgba(0,40,128,0.04);
    border-left: 5px solid #2E71FE;
    margin-left: 1rem;
    align-self: flex-end;
    margin-top: 2.5rem;
}
.split-training-dark .split-training-right {
    background: #f3f6fa;
    border-left: 5px solid #002880;
}
.split-training-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.split-training-stats li {
    font-size: 1.25rem;
    color: #002880;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.5px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: color 0.2s;
}
.split-training-stats li span {
    color: #2E71FE;
    font-weight: 900;
    font-size: 1.35rem;
    margin-right: 0.7rem;
    min-width: 2.2em;
    display: inline-block;
    text-align: right;
}
.split-training-dark .split-training-stats li span {
    color: #002880;
}
.training-divider {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #e0e7ef 0%, #f8fafc 50%, #e0e7ef 100%);
    border: none;
}
@media (max-width: 1100px) {
    .split-training-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
        padding: 2.2rem 1.2rem 2.2rem 1.2rem;
    }
    .split-training-right {
        margin-left: 0;
        padding: 1.5rem 1.2rem 1.5rem 1.2rem;
    }
}
@media (max-width: 700px) {
    .split-training {
        padding: 2rem 0.5rem;
    }
    .split-training-content {
        padding: 1.5rem 1rem;
        border-radius: 18px;
        margin: 0 0.5rem;
    }
    .split-training-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .split-training-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }
    .split-training-icon::before {
        width: 90px;
        height: 90px;
    }
    .split-training-right {
        padding: 1.25rem;
        border-radius: 12px;
        margin-top: 1.5rem;
    }
    .split-training-stats li {
        font-size: 1.1rem;
    }
    .split-training-stats li span {
        font-size: 1.2rem;
    }
    .split-training-bullets {
        font-size: 1rem;
        margin-left: 1rem;
    }
}

/* Additional mobile improvements for very small screens */
@media (max-width: 480px) {
    .split-training {
        padding: 1.5rem 0.25rem;
    }
    .split-training-content {
        padding: 1.25rem 0.75rem;
        margin: 0 0.25rem;
    }
    .split-training-title {
        font-size: 1.25rem;
    }
    .split-training-features {
        font-size: 0.95rem;
    }
    .split-training-bullets {
        font-size: 0.9rem;
        margin-left: 0.75rem;
    }
    .split-training-right {
        padding: 1rem 0.75rem;
        text-align: left;
    }
    .split-training-stats {
        align-items: flex-start;
    }
    .split-training-stats li {
        justify-content: flex-start;
        text-align: left;
    }
    .split-training-stats li span {
        text-align: left;
        min-width: auto;
        margin-right: 0.5rem;
    }
}

/* Mobile alignment fix for training stats on all screen sizes below 700px */
@media (max-width: 700px) {
    .split-training-right {
        text-align: left;
    }
    .split-training-stats {
        align-items: flex-start;
    }
    .split-training-stats li {
        justify-content: flex-start;
        text-align: left;
    }
    .split-training-stats li span {
        text-align: left;
        min-width: auto;
        margin-right: 0.5rem;
    }
}

/* TRAINING PAGE ONLY - Mobile responsive fixes with high specificity */
@media (max-width: 700px) {
    /* Center align the entire content */
    .split-training .split-training-content {
        text-align: center !important;
        align-items: center !important;
    }
    
    /* Center align the icon */
    .split-training .split-training-content .split-training-icon {
        margin: 0 auto 1.5rem auto !important;
    }
    
    /* Center align title */
    .split-training .split-training-content .split-training-title {
        text-align: center !important;
    }
    
    /* Center align and remove bullets from topic lists */
    .split-training .split-training-content .split-training-bullets {
        list-style: none !important;
        text-align: center !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .split-training .split-training-content .split-training-bullets li {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Reduce spacing between topics and stats */
    .split-training .split-training-content .split-training-right {
        margin-top: 1rem !important;
        text-align: center !important;
        align-self: center !important;
    }
    
    /* Center align stats container and fix number alignment */
    .split-training .split-training-content .split-training-right .split-training-stats {
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .split-training .split-training-content .split-training-right .split-training-stats li {
        justify-content: flex-start !important;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
        margin-bottom: 0 !important;
        width: fit-content !important;
        margin-left: auto !important;
        margin-right: auto !important;
        min-width: 200px !important;
    }
    
    .split-training .split-training-content .split-training-right .split-training-stats li span {
        text-align: left !important;
        min-width: 2.5rem !important;
        margin-right: 1.5rem !important;
        display: inline-block !important;
        font-weight: 900 !important;
        flex-shrink: 0 !important;
    }
}

/* Careers Page Styles */
.careers-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #002880 0%, #2E71FE 100%);
    color: #fff;
    position: relative;
    padding: 120px 0 60px 0;
}

.careers-hero .hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,40,128,0.8), rgba(46,113,254,0.8));
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.careers-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,40,128,0.3);
    z-index: 2;
}

.careers-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.careers-hero-text .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.careers-hero-text .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    text-align: center;
    animation: fadeInUp 1s ease 0.2s both;
}

.careers-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Why Join Section */
.why-join {
    padding: 80px 0;
    background: #f8fafc;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E71FE, #002880);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #002880;
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
}

/* Mobile responsiveness for benefits grid */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .why-join {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .why-join {
        padding: 50px 0;
    }
    
    .benefits-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1.25rem;
        border-radius: 10px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .benefits-grid {
        padding: 0 0.5rem;
    }
    
    .benefit-card {
        padding: 1.25rem 1rem;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
}

/* Open Positions Section */
.open-positions {
    padding: 80px 0;
}

.positions-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title i {
    color: #2E71FE;
}

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

.position-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.position-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.position-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.position-type {
    background: #e8f2ff;
    color: #002880;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.position-salary {
    background: #ffe8f1;
    color: #FF005E;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.position-count {
    background: #e8ffe8;
    color: #002880;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.position-content {
    padding: 1.5rem;
}

.position-description {
    margin-bottom: 1.5rem;
}

.position-description p {
    color: #64748b;
    line-height: 1.6;
}

.position-requirements,
.position-responsibilities {
    margin-bottom: 1.5rem;
}

.position-requirements h5,
.position-responsibilities h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.75rem;
}

.position-requirements ul,
.position-responsibilities ul {
    list-style: none;
    padding: 0;
}

.position-requirements li,
.position-responsibilities li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.position-requirements li::before,
.position-responsibilities li::before {
    content: '•';
    color: #2E71FE;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Application Process Section */
.application-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #2E71FE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E71FE, #002880);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 1rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E71FE;
    font-size: 1.5rem;
    margin: 0 0.25rem;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.process-arrow i {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.process-arrow:hover i {
    opacity: 1;
    transform: translateX(3px);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Application Deadline Section */
.application-deadline {
    padding: 60px 0;
    background: linear-gradient(135deg, #002880, #2E71FE);
    color: white;
}

.deadline-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.deadline-icon {
    font-size: 3rem;
    color: #42DFFE;
}

.deadline-text {
    flex: 1;
}

.deadline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.deadline-date {
    font-size: 2rem;
    font-weight: 700;
    color: #42DFFE;
    margin-bottom: 1rem;
}

.deadline-description {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.deadline-action {
    flex-shrink: 0;
}

/* Careers Contact Section */
.careers-contact {
    padding: 80px 0;
}

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

.careers-contact .contact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.careers-contact .contact-item:hover {
    transform: translateY(-3px);
}

.careers-contact .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E71FE, #002880);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.careers-contact .contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 0.5rem;
}

.careers-contact .contact-details p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .process-step {
        max-width: 100%;
        min-width: auto;
    }
    
    .deadline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .position-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .careers-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .position-card {
        margin: 0 1rem;
    }
}

.director-social {
    display: flex;
    gap: 1rem;
}

.director-message .director-social {
    justify-content: center;
    margin-top: 1.5rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #2E71FE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E71FE, #002880);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 1rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .process-grid {
        max-width: 1100px;
        margin: 3rem auto 0;
    }
    
    .process-arrow {
        margin: 0 0.5rem;
    }
    
    .process-step {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .process-step {
        max-width: 100%;
        min-width: auto;
    }
    
    .deadline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .position-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .careers-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .position-card {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive styles for director card in index.html */
@media (max-width: 768px) {
    .director-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
        margin: 0 1rem;
    }

    .director-image {
        margin-bottom: 0;
    }

    .director-info {
        order: 2;
    }
}

/* Modern Training Cards - New Design */
.modern-trainings {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fa 100%);
    min-height: 100vh;
}

.trainings-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.training-card-modern {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 40, 128, 0.08), 0 2px 8px rgba(0, 40, 128, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(46, 113, 254, 0.1);
    scroll-margin-top: 100px; /* Account for fixed header */
}

.training-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 40, 128, 0.15), 0 8px 32px rgba(0, 40, 128, 0.08);
    border-color: rgba(46, 113, 254, 0.2);
}

.training-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002880 0%, #2E71FE 50%, #FF005E 100%);
    border-radius: 24px 24px 0 0;
}

.training-header-modern {
    padding: 2.5rem 3rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.training-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 40, 128, 0.2);
}

.training-icon-modern::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(46, 113, 254, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.verification-icon {
    background: linear-gradient(135deg, #002880 0%, #2E71FE 100%);
}

.design-icon {
    background: linear-gradient(135deg, #2E71FE 0%, #002880 100%);
}

.analog-icon {
    background: linear-gradient(135deg, #002880 0%, #FF005E 100%);
}

.training-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: #002880;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.training-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.training-badge {
    background: linear-gradient(135deg, #FF005E 0%, #e6004d 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 0, 94, 0.3);
}

.training-badge.secondary {
    background: linear-gradient(135deg, #2E71FE 0%, #002880 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(46, 113, 254, 0.3);
}

.training-badge.tertiary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.training-content-modern {
    padding: 0 3rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.training-description-modern {
    min-height: 200px;
}

.topics-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8f0fa;
    padding-bottom: 0.5rem;
}

.topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topics-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.topic-bullet {
    color: #2E71FE;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.training-stats-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fa 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(46, 113, 254, 0.1);
    box-shadow: 0 4px 16px rgba(0, 40, 128, 0.04);
}

.training-stats-modern .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.training-stats-modern .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(46, 113, 254, 0.08);
    transition: all 0.3s ease;
}

.training-stats-modern .stat-item:hover {
    background: #f8fafc;
    border-color: rgba(46, 113, 254, 0.2);
    transform: translateX(4px);
}

.training-stats-modern .stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2E71FE;
    min-width: 2.5rem;
    text-align: center;
}

.training-stats-modern .stat-item:nth-child(odd) .stat-number {
    color: #002880;
}

.training-stats-modern .stat-item:nth-child(3n) .stat-number {
    color: #FF005E;
}







/* Responsive Design */
@media (max-width: 1024px) {
    .modern-trainings {
        padding: 60px 0;
    }
    
    .training-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem 2.5rem;
    }
    
    .training-header-modern {
        padding: 2rem 2rem 1.5rem;
    }
    
    .training-description-modern {
        min-height: auto;
    }
    
    .training-stats-modern .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    

@media (max-width: 768px) {
    .trainings-grid-modern {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .training-card-modern {
        border-radius: 20px;
        margin: 0 0.5rem;
    }
    
    .training-header-modern {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .training-content-modern {
        padding: 0 1.5rem 2rem;
        gap: 1.5rem;
    }
    
    .training-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .training-title-modern {
        font-size: 1.5rem;
    }
    
    .topics-title {
        font-size: 1.1rem;
    }
    
    .topics-list li {
        font-size: 0.9rem;
    }
    
    .training-stats-modern {
        padding: 1.5rem;
    }
    
    .training-stats-modern .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .training-stats-modern .stat-item {
        padding: 0.5rem 0.75rem;
    }
    
    .training-stats-modern .stat-number {
        font-size: 1.25rem;
        min-width: 2rem;
    }
    

@media (max-width: 480px) {
    .modern-trainings {
        padding: 40px 0;
    }
    
    .trainings-grid-modern {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .training-card-modern {
        margin: 0;
        border-radius: 16px;
    }
    
    .training-header-modern {
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .training-content-modern {
        padding: 0 1rem 1.5rem;
        gap: 1.25rem;
    }
    
    .training-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .training-title-modern {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .training-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .topics-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .topics-list li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .training-stats-modern {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .training-stats-modern .stat-item {
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .training-stats-modern .stat-number {
        font-size: 1.125rem;
        min-width: 1.75rem;
    }
    

/* Animation for training cards appearing */
@keyframes fadeInUpTraining {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.training-card-modern {
    animation: fadeInUpTraining 0.6s ease-out;
}

.training-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.training-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.training-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}


/* IPs Page Styles */
.ips-hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #002880 0%, #0A48E9 100%);
    color: white;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.ips-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 40, 128, 0.8), rgba(10, 72, 233, 0.8)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ips-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 128, 0.3);
}

.ips-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ips-hero .hero-text {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.ips-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.ips-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.ips-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* IPs Gallery Section */
.ips-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.ip-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E71FE, #42DFFE);
    z-index: 1;
}

.ip-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.ip-content {
    padding: 2rem;
}

.ip-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #002880;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ip-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ip-specs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ip-specs .spec {
    background: linear-gradient(135deg, #2E71FE, #42DFFE);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.ip-content .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Responsive Design for IPs Page */
@media (max-width: 1024px) {
    .ips-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .ip-card {
        border-radius: 16px;
    }
    
    .ip-content {
        padding: 1.5rem;
    }
    
    .ip-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ips-gallery {
        padding: 60px 0;
    }
    
    .ips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .ip-card {
        border-radius: 12px;
    }
    
    .ip-image {
        height: 200px;
    }
    
    .ip-content {
        padding: 1.25rem;
    }
    
    .ip-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .ip-summary {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .ip-specs {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .ip-specs .spec {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ips-hero {
        padding: 100px 0 60px 0;
    }
    
    .ips-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ips-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .ips-gallery {
        padding: 40px 0;
    }
    
    .ips-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .ip-card {
        border-radius: 10px;
    }
    
    .ip-image {
        height: 180px;
    }
    
    .ip-content {
        padding: 1rem;
    }
    
    .ip-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .ip-summary {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .ip-specs {
        margin-bottom: 0.75rem;
    }
    
    .ip-specs .spec {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}
