/* ========================
   GLOBAL RESET & BASE
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* WhatsApp Icon */
#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
#whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* ========================
   HERO SECTION (Medfrontier)
======================== */
.hero-section {
    background: linear-gradient(135deg, #1e63d0, #1c4fbf);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero-logo img {
    width: 180px;
    max-width: 80%;
    height: auto;
    margin: 0 auto 25px;
    display: block;
    border-radius: 15px;
}
.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.hero-title span {
    color: #ff9f1c;
}
.hero-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e6e6e6;
    max-width: 700px;
    margin: 0 auto 20px;
}
.hero-points.modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    max-width: 700px;
    margin: 20px auto;
    list-style: none;
    padding: 0;
}
.hero-points.modern li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
}
.hero-points.modern li:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(6px);
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}
.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}
.primary-btn {
    background: white;
    color: #1e63d0;
}
.primary-btn:hover {
    background: #f3f3f3;
}
.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: #fff;
}
.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.stat-card {
    background: rgba(255, 255, 255, 0.14);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 180px;
    backdrop-filter: blur(4px);
}
.stat-card h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}
.stat-card p {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .hero-title { font-size: 30px; }
    .hero-logo img { width: 140px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .hero-points.modern { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .stat-card { min-width: 140px; padding: 15px 20px; }
    .stat-card h2 { font-size: 26px; }
}

/* ========================
   PROGRAMS SECTION
======================== */
.programs-section {
    padding: 80px 5%;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .tag {
    background: #eef3ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}
.section-header h2 {
    font-size: 38px;
    font-weight: 700;
}
.section-header h2 span {
    color: #316BFF;
}
.section-header p {
    color: #555;
    max-width: 600px;
    margin: auto;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.program-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-top: 6px solid;
    transition: 0.3s ease;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.program-card.blue { border-color: #316BFF; }
.program-card.orange { border-color: #ff7a00; }
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.card-header img {
    width: 50px;
}
.program-card p {
    color: #555;
    margin-bottom: 15px;
}
.animated-list li {
    opacity: 0;
    transform: translateY(15px);
    transition: 0.5s ease;
    list-style: none;
    margin: 6px 0;
    position: relative;
}
.animated-list li::before {
    content: "›";
    color: #316BFF;
    margin-right: 8px;
}
li.show {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .programs-grid { gap: 20px; }
    .section-header h2 { font-size: 32px; }
}
@media (max-width: 768px) {
    .programs-section { padding: 60px 20px; }
    .programs-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 26px; }
    .card-header { flex-direction: column; align-items: flex-start; }
    .card-header img { width: 42px; }
}
@media (max-width: 480px) {
    .programs-section { padding: 40px 15px; }
    .program-card { padding: 18px; }
    .section-header h2 { font-size: 22px; }
}

/* ========================
   MBBS ABROAD SECTION
======================== */
.mbbs-section {
    padding: 80px 6%;
    background: #ffffff;
    overflow: hidden;
}
.mbbs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 80px;
}
.mbbs-left {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.mbbs-left.animate {
    opacity: 1;
    transform: translateX(0);
}
.mbbs-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.mbbs-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.mbbs-image-wrapper:hover .mbbs-img {
    transform: scale(1.05);
}
.mbbs-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}
.mbbs-badge span {
    color: #2563eb;
    font-weight: 600;
    font-size: 15px;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.mbbs-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.mbbs-right.animate {
    opacity: 1;
    transform: translateX(0);
}
.mbbs-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.mbbs-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.mbbs-title span {
    color: #f97316;
}
.mbbs-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}
.mbbs-benefits {
    margin-bottom: 30px;
}
.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.check-icon {
    width: 20px;
    height: 20px;
    stroke: #10b981;
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}
.country-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.country-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.country-card.animate {
    opacity: 1;
    transform: translateY(0);
}
.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}
.country-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}
.info-icon {
    width: 16px;
    height: 16px;
    stroke: #9ca3af;
    stroke-width: 2;
    fill: none;
}
.info-item .price {
    color: #f97316;
    font-weight: 600;
}
@media (max-width: 1200px) {
    .country-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .mbbs-container { grid-template-columns: 1fr; gap: 40px; }
    .mbbs-title { font-size: 36px; }
    .benefit-row { grid-template-columns: 1fr; }
    .country-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mbbs-section { padding: 0px 5%; }
    .mbbs-title { font-size: 28px; }
    .mbbs-badge { bottom: 20px; left: 20px; padding: 10px 20px; }
}
@media (max-width: 600px) {
    .country-cards { grid-template-columns: 1fr; }
    .mbbs-title { font-size: 24px; }
}

/* ========================
   INTERNSHIP & OBSERVERSHIP
======================== */
.io-section {
    padding: 80px 20px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.io-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
}
.io-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    margin-top: 70px;
}
.io-image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(233, 242, 255, 0.95);
    border: 1px solid rgba(47, 95, 208, 0.20);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 10px 25px rgba(47, 95, 208, 0.12);
}
.io-badge-title {
    font-size: 12px;
    font-weight: 700;
    color: #2F5FD0;
}
.io-badge-sub {
    margin-top: 2px;
    font-size: 11px;
    color: #3b4a66;
}
.io-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2F5FD0;
    font-size: 12px;
    font-weight: 700;
}
.io-title {
    margin: 14px 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
}
.io-title span {
    color: #FF7A00;
}
.io-subtitle {
    margin: 0 0 18px;
    color: #5b6475;
    font-size: 14px;
    line-height: 1.6;
}
.io-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}
.io-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.06);
    padding: 14px 14px 12px;
}
.io-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.io-hospital {
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
}
.io-meta {
    margin-top: 4px;
    font-size: 12px;
    color: #5b6475;
}
.io-dot { margin: 0 6px; opacity: 0.6; }
.io-rating {
    color: #FF7A00;
    font-weight: 700;
}
.io-duration {
    font-size: 11px;
    font-weight: 700;
    color: #2F5FD0;
    background: #eef4ff;
    border: 1px solid rgba(47, 95, 208, 0.18);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.io-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.io-tag {
    font-size: 11px;
    font-weight: 700;
    color: #3b4a66;
    background: #f3f6fb;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 5px 10px;
    border-radius: 999px;
}
.io-cta {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, #2F5FD0 0%, #2b78ff 100%);
    box-shadow: 0 14px 30px rgba(47, 95, 208, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.io-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(47, 95, 208, 0.32);
}
.io-image-card,
.io-content {
    opacity: 0;
    transition: all 0.9s ease;
}
.io-image-card { transform: translateX(-80px); }
.io-content { transform: translateX(80px); }
.io-show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
@media (max-width: 1024px) {
    .io-container { grid-template-columns: 1fr; gap: 26px; }
    .io-image { height: 320px; }
}
@media (max-width: 640px) {
    .io-section { padding: 0px 16px; }
    .io-title { font-size: 26px; }
    .io-image { height: 240px; }
    .io-card-top { flex-direction: column; align-items: flex-start; }
    .io-duration { margin-top: 8px; }
}

/* ========================
   FMGE SECTION
======================== */
.fmge-section {
    background: linear-gradient(180deg, #2f5fd0 0%, #3b6fe0 100%);
    padding: 80px 20px;
    color: #fff;
}
.fmge-container {
    max-width: 1200px;
    margin: auto;
}
.fmge-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.fmge-video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.fmge-video-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.fmge-pill {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.fmge-content h2 {
    margin: 14px 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}
.fmge-content h2 span { color: #ff7a00; }
.fmge-content p {
    color: #e4eaff;
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 15px;
}
.fmge-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.fmge-feature {
    background: rgba(255,255,255,0.12);
    padding: 16px;
    border-radius: 12px;
}
.fmge-feature h4 {
    font-size: 14px;
    margin-bottom: 6px;
}
.fmge-feature p {
    font-size: 13px;
    color: #e4eaff;
}
.fmge-bottom {
    margin-top: 60px;
}
.fmge-course-card {
    background: #fff;
    color: #0f172a;
    border-radius: 18px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.fmge-course-pill {
    font-size: 12px;
    font-weight: 600;
    color: #2f5fd0;
}
.fmge-course-left h3 {
    margin: 10px 0;
    font-size: 22px;
}
.fmge-price {
    margin: 12px 0;
}
.price-main {
    font-size: 26px;
    font-weight: 800;
    color: #2f5fd0;
}
.price-old {
    margin-left: 10px;
    text-decoration: line-through;
    color: #94a3b8;
}
.fmge-include-title {
    font-weight: 600;
    margin-top: 16px;
}
.fmge-list {
    columns: 2;
    margin-top: 10px;
    padding-left: 16px;
}
.fmge-list li {
    margin-bottom: 8px;
    font-size: 14px;
}
.fmge-checklist {
    list-style: none;
    padding: 0;
}
.fmge-checklist li {
    margin-bottom: 12px;
    font-weight: 600;
}
.fmge-cta {
    margin-top: 16px;
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f5fd0, #4c7fff);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
@media (max-width: 900px) {
    .fmge-top { grid-template-columns: 1fr; }
    .fmge-features { grid-template-columns: 1fr; }
    .fmge-course-card { grid-template-columns: 1fr; }
}

/* ========================
   FELLOWSHIP SECTION
======================== */
.fellowship-section {
    background: #fff;
    padding: 50px 20px;
}
.fellowship-container {
    max-width: 1200px;
    margin: auto;
}
.fellowship-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}
.fellowship-image-wrap {
    position: relative;
}
.fellowship-image-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.fellowship-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #eef4ff;
    color: #2f5fd0;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
}
.fellowship-pill {
    display: inline-block;
    background: #eef4ff;
    color: #2f5fd0;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}
.fellowship-content h2 {
    margin: 14px 0;
    font-size: 32px;
    color: #0f172a;
    font-weight: 700;
}
.fellowship-content span { color: #ff7a00; }
.fellowship-content p {
    color: #5b6475;
    max-width: 520px;
}
.fellowship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fellowship-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    border-top: 6px solid;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}
.fellowship-card.show {
    opacity: 1;
    transform: translateY(0);
}
.fellowship-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.tags span {
    background: #f3f6fb;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}
.fellowship-card p {
    font-size: 13px;
    margin: 4px 0;
}
/* colors */
.red { border-color: #ef4444; }
.blue { border-color: #2563eb; }
.purple { border-color: #9333ea; }
.orange { border-color: #f97316; }
.green { border-color: #16a34a; }
.pink { border-color: #db2777; }

.skills-layout .fellowship-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.skills-layout .fellowship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.skills-layout .second-pill {
    margin-top: 20px;
    display: inline-block;
}
.skills-layout .second-heading {
    margin-top: 10px;
}
@media (max-width: 900px) {
    .fellowship-top { grid-template-columns: 1fr; }
    .fellowship-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .skills-layout .fellowship-top { grid-template-columns: 1fr; }
    .skills-layout .fellowship-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .fellowship-grid { grid-template-columns: 1fr; }
    .fellowship-content h2 { font-size: 26px; }
}

/* ========================
   PARTNER SECTION
======================== */
.partner-section {
    padding: 20px 20px;
    background: #ffffff;
}
.partner-card {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.partner-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.partner-subtitle {
    font-size: 14px;
    color: #5b6475;
    margin-bottom: 20px;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.partner-pill {
    background: #f1f5ff;
    color: #2f5fd0;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(47, 95, 208, 0.18);
}
@media (max-width: 640px) {
    .partner-card { padding: 28px 16px; }
    .partner-title { font-size: 16px; }
}

/* ========================
   CAREER JOURNEY SECTION
======================== */
.career-section {
    background: #ffffff;
    padding: 20px 20px;
}
.career-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.career-card {
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(15,23,42,.12);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.career-left {
    background: #ffffff;
    transform: translateX(-80px);
}
.career-right {
    background: linear-gradient(160deg, #0f172a, #020617);
    color: #ffffff;
    transform: translateX(80px);
    border-radius: 28px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.career-card.show {
    opacity: 1;
    transform: translateX(0);
}
.career-pill {
    display: inline-block;
    background: #eef4ff;
    color: #2f5fd0;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.career-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}
.career-desc {
    font-size: 14px;
    color: #5b6475;
    margin-bottom: 18px;
}
.career-right .career-desc {
    color: #cbd5f5;
}
.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
    font-size: 14px;
}
.career-form textarea {
    resize: none;
    height: 90px;
}
.career-submit {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f5fd0, #4c7dff);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}
.career-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 10px;
    text-align: center;
}
.career-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    background: rgba(255,255,255,.08);
    margin-bottom: 24px;
}
.career-cta {
    width: 100%;
    max-width: 520px;
    padding: 16px 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7a00, #ff9a3c);
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(255,122,0,.35);
    transition: all 0.25s ease;
    display: block;
    text-align: center;
    margin: 18px 0;
}
.career-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255,122,0,.45);
}
.career-contact {
    text-align: center;
    margin-top: 6px;
}
.career-contact span {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.career-contact p {
    font-size: 14px;
    margin: 4px 0;
    color: #e2e8f0;
}
@media (max-width: 900px) {
    .career-container { grid-template-columns: 1fr; }
    .career-left, .career-right { transform: translateY(40px); }
    .career-card.show { transform: translateY(0); }
    .career-right { padding: 45px 22px; border-radius: 22px; }
    .career-right h3 { font-size: 22px; }
}

/* ========================
   FOOTER
======================== */
.bv-footer {
    background: #1f4ea3;
    color: #fff;
    padding-top: 60px;
    font-size: 14px;
}
.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
}
.footer-logo {
    height: 90px;
    margin-bottom: 18px;
    margin-left: 20px;
}
.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}
.footer-col h3 {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}
.footer-col a:hover {
    opacity: 1;
    padding-left: 6px;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #ff7a00;
}
.contact-info i {
    margin-right: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 50px;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}