/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
}

/* Navigation Bar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    gap: 15px;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-right .brand-name {
    color: #0068cf; /* Deep Blue */
    font-size: 32px;
    font-weight: 700;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #003366;
}

/* Login Button */
.login-btn {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #003366;
    color: white;
}

/* Register Button */
.register-btn {
    background-color: #FF6600; /* Orange */
    color: white;
    border: 2px solid #FF6600;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-title {
    color: #003366;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: #666;
    font-size: 20px;
    margin-bottom: 30px;
}

/* Search Container */
.search-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.search-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.search-input, .search-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus, .search-select:focus {
    border-color: #003366;
}

.search-btn {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #002244;
}

/* Advertisement Section */
.ad-container {
    padding: 0 20px;
}

.ad-image {
    width: 100%;
    max-width: 1000px;
    height: 200px;
    /* object-fit: cover; */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Cards Section */
.cards-section {
    padding: 40px 20px;
    background-color: #fff;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.card-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.card-row:first-child {
    justify-content: center;
}

.card-row:last-child {
    justify-content: center;
}

.card {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    min-width: 150px;
    max-width: 160px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.card-text {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    font-size: 14px;
}

.card-arrow {
    color: #003366;
    font-weight: bold;
    font-size: 16px;
}

/* First row cards */
.card-row:first-child .card {
    background-color: #e6f0ff;
    border: 1px solid #cce0ff;
}

/* Second row cards */
.card-row:last-child .card {
    background-color: #fff2e6;
    border: 1px solid #ffdac9;
}

/* Companies Section */
.companies-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 15px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.company-card {
    flex: 0 0 auto;
    width: 200px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.company-category {
    font-weight: 600;
    color: #003366;
    font-size: 16px;
}

.arrow-icon {
    color: #FF6600;
    font-weight: bold;
    font-size: 16px;
}

.hiring-count {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.logos-container {
    display: flex;
    gap: 5px;
}

.company-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 2px;
}

/* Featured Companies Section */
.featured-companies-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.featured-companies-section .section-title {
    text-align: center;
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.featured-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.featured-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.featured-company-card {
    flex: 0 0 auto;
    width: 300px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.featured-company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.companylogo-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.companylogo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.company-name {
    color: #003366;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-stars {
    color: #FF6600;
    font-size: 16px;
}

.rating-value {
    font-weight: 600;
    color: #333;
}

.reviews {
    color: #666;
    font-size: 14px;
}

.company-description {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-jobs-btn {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.view-jobs-btn:hover {
    background-color: #002244;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background-color: #f0f0f0;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    background-color: #FF6600;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #e65c00;
}

/* Career Platform Section */
.career-platform-section {
    padding: 40px 20px;
    background-color: #f0f8ff;
}

.career-platform-container {
    max-width: 1000px;
    width: 100%;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.2);
}

.platform-content {
    width: 100%;
    color: white;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.nc-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.platform-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.platform-description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
}

.platform-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 16px;
}

.arrow {
    color: #FF6600;
    font-weight: bold;
}

.explore-btn {
    background-color: #FF6600;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.explore-btn:hover {
    background-color: #e65c00;
}

/* Discover Jobs Section */
.discover-jobs-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.discover-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left Side */
.discover-left {
    flex: 1;
    padding-right: 20px;
}

.discover-heading {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.discover-subtext {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 400px;
}

/* Right Side */
.discover-right {
    flex: 1.5;
}

.jobs-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #003366;
}

.job-content {
    flex-grow: 1;
}

.job-title {
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.job-count {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.arrow-icon {
    color: #FF6600;
    font-size: 20px;
    font-weight: bold;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #003366;
}

.dot:hover {
    background-color: #002244;
}

/* Slider Arrow */
.slider-arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #003366;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background: #002244;
}

/* SECTION 1 — Sponsored Companies Slider */
.sponsored-companies-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.sponsored-companies-section .section-title {
    text-align: center;
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-pill {
    background-color: #f0f5ff;
    color: #003366;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover, .filter-pill.active {
    background-color: #003366;
    color: white;
}

.companies-grid-container {
    position: relative;
    margin-bottom: 40px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: #003366;
}

.company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.company-name {
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rating {
    margin-bottom: 15px;
}

.stars {
    color: #FF6600;
    font-size: 16px;
}

.reviews {
    color: #666;
    font-size: 12px;
}

.tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background-color: #f0f8ff;
    color: #003366;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
}

.view-all-companies-btn {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.view-all-companies-btn:hover {
    background-color: #003366;
    color: white;
}

.slider-arrow-right {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #003366;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow-right:hover {
    background-color: #f0f5ff;
    transform: translateY(-50%) scale(1.1);
}

/* SECTION 2 — Upcoming Events & Challenges */
.events-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.events-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.events-left {
    flex: 1;
}

.event-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.events-right {
    flex: 2;
}

.events-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.event-card {
    flex: 0 0 auto;
    width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: #003366;
}

.event-banner {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.event-title {
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-company {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.event-tag {
    background-color: #f0f8ff;
    color: #003366;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.event-date, .event-participants {
    color: #666;
    font-size: 12px;
}

.event-type {
    background-color: #fff2e6;
    color: #FF6600;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.view-details-btn {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-details-btn:hover {
    background-color: #002244;
}

/* SECTION 3 — Interview Questions by Company & Role */
.interview-questions-section {
    padding: 60px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.interview-questions-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.interview-content {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.interview-column {
    flex: 1;
}

.interview-column .section-title {
    color: #003366;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.interview-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.interview-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.interview-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #003366;
}

.company-logo-small {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 15px;
}

.interview-info {
    flex: 1;
}

.interview-info .company-name {
    color: #003366;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.interview-count {
    color: #666;
    font-size: 14px;
}

.roles-list {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.role-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.role-item:last-child {
    border-bottom: none;
}

.role-name {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.question-count {
    color: #666;
    font-size: 14px;
}

.interview-column .view-all-btn {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interview-column .view-all-btn:hover {
    background-color: #003366;
    color: white;
}

/* SECTION 4 — Accelerate Your Job Search (Premium Services) */
.premium-services-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 20px;
    margin: 0 20px 60px;
}

.premium-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.premium-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 3;
}

.premium-illustration {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
}

.premium-text .section-title {
    color: #003366;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background-color: #e6f0ff;
    color: #003366;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
}

.premium-right {
    flex: 1;
    text-align: center;
}

.learn-more-btn {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.includes-text {
    color: #666;
    font-size: 12px;
    margin-top: 10px;
}

/* App Promotion Banner */
.app-promotion-banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e6f0ff 0%, #d1e3ff 100%);
    border-radius: 20px;
    margin: 0 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
}

.app-promotion-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.app-promotion-left {
    flex: 1;
}

.banner-title {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.banner-subtext {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

.mobile-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.mobile-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #003366;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.mobile-input:focus {
    border-color: #0066cc;
}

.get-link-btn {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-link-btn:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.qr-code {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-text {
    color: #003366;
    font-size: 16px;
    font-weight: 600;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.store-icon {
    height: 40px;
    border-radius: 8px;
}

.app-promotion-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.illustration-container {
    position: relative;
}

.person-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.mobile-ui-preview {
    position: absolute;
    top: 20px;
    right: -50px;
    width: 150px;
}

.video-profile-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    margin-right: 10px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    color: #003366;
    font-size: 12px;
    font-weight: 600;
}

.profile-role {
    color: #666;
    font-size: 10px;
}

.profile-video-preview {
    height: 60px;
    background: linear-gradient(135deg, #e6f0ff, #d1e3ff);
    border-radius: 8px;
}

/* Footer */
.main-footer {
    background-color: #ffffff;
    padding: 50px 20px 20px;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    color: #003366;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f5ff;
    color: #003366;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #003366;
    color: white;
    transform: translateY(-3px);
}

.footer-middle {
    flex: 2;
    display: flex;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #003366;
    text-decoration: underline;
}

.footer-right {
    flex: 1;
}

.apply-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.apply-title {
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.apply-subtext {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.apply-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apply-store-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: fit-content;
}

.apply-store-btn:hover {
    transform: translateY(-3px);
}

.apply-store-icon {
    height: 30px;
    border-radius: 6px;
}

.footer-bottom {
    padding-top: 30px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.legal-text, .company-info, .copyright {
    color: #999;
    font-size: 12px;
}

.partner-brands {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.partner-logo {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .app-promotion-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-input-container {
        flex-direction: column;
    }
    
    .qr-section {
        justify-content: center;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-middle {
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .app-promotion-banner {
        margin: 0 10px 30px;
        padding: 40px 15px;
    }
    
    .banner-title {
        font-size: 26px;
    }
    
    .banner-subtext {
        font-size: 16px;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 20px;
    }
    
    .apply-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 22px;
    }
    
    .mobile-ui-preview {
        display: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .partner-brands {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}