* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #0052CC;
    --secondary-color: #0066FF;
    --accent-color: #1E88E5;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #003d99;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.15rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

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

.logo img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-bars {
    display: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-top: 0;
    position: relative;
}

.logo-top {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003d99;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    align-self: flex-start;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.2;
}

.logo-bottom {
    font-size: 0.9rem;
    font-weight: 400;
    color: #4A90E2;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border: 2px solid #4A90E2;
    border-radius: 6px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    position: relative;
    width: auto;
    max-width: 100%;
    height: auto;
}

.nav-item {
    position: relative;
    z-index: 1001;
}

.nav-item.dropdown {
    position: relative;
    z-index: 10001;
}

.nav-item.dropdown:hover {
    z-index: 10001;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.4rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    margin-top: 0.5rem;
    min-width: 250px;
    width: max-content;
    max-width: 350px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
    display: block !important;
    height: auto !important;
    clip: auto !important;
    clip-path: none !important;
    contain: none !important;
    will-change: transform;
    pointer-events: auto !important;
    isolation: auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown-menu > li {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.nav-item.dropdown:hover .dropdown-menu li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-item.dropdown:hover .dropdown-arrow,
.nav-item.dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block !important;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.75rem;
    border-left-color: var(--primary-color);
}

.dropdown-menu li {
    display: block !important;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: normal;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    position: relative;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 64, 128, 0.9) 50%, rgba(0, 82, 204, 0.9) 100%),
                url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: white;
    padding: 8rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 0;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 82, 204, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 136, 229, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color);
    color: white;
}

.cta-button-coaching {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-coaching:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.5);
    background: linear-gradient(135deg, #ffa726 0%, #ff8f00 100%);
}

/* Content Sections */
.content-section {
    padding: 5rem 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.content-section.alt-bg {
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 700;
}

.internship-info > h3,
.jobs-grid + h3,
.tips-box + h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.internship-info > h3:first-of-type {
    margin-top: 1.5rem;
}

.internship-info > h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.job-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.job-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.job-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.detail-item {
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 140px;
}

.job-card ul {
    list-style: none;
    padding-left: 0;
}

.job-card ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.job-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Internship Sections */
.internship-info {
    margin-top: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 2rem;
    max-width: 900px;
}

/* Company List Styles */
.company-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.company-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.company-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.company-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

/* Tabs Styles */
.tabs-container {
    margin-top: 2rem;
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    bottom: -2px;
}

.tab-button:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.internship-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.internship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.internship-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.internship-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tips-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.tips-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tips-box ul {
    list-style: none;
    padding-left: 0;
}

.tips-box ul li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.tips-box ul li:last-child {
    border-bottom: none;
}

.tips-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Salary Section */
.salary-info {
    margin-top: 2rem;
}

.salary-table {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.salary-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.salary-row:last-child {
    border-bottom: none;
}

.salary-row.header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-bottom: none;
}

.salary-row:not(.header):hover {
    background-color: var(--bg-light);
}

.salary-cell {
    padding: 0.5rem;
}

.salary-note {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.salary-note p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Comparison Table */
.comparison-table {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table td {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.comparison-table tr:hover {
    background-color: #f0f9ff;
}

.comparison-table ul {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.comparison-table li {
    margin-bottom: 0.5rem;
}

.comparison-table li:last-child {
    margin-bottom: 0;
}

/* Footer */
main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

header {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    position: relative;
    z-index: 10000;
}

footer {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f4f8 100%);
    color: var(--text-dark);
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
    }
    
    body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
        position: relative !important;
        height: auto !important;
        min-height: 100vh !important;
    }
    
    main {
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 80px 0 0 0;
        gap: 0;
        overflow-y: auto !important;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 10001 !important;
        list-style: none;
        margin: 0;
        align-items: stretch;
    }

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

    .nav-menu li {
        margin: 0;
        width: 100%;
        display: block;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        display: block;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .nav-menu .nav-link:active {
        background-color: var(--bg-light);
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background-color: var(--bg-light);
        margin-top: 0;
        margin-left: 0;
        padding: 0;
        border-radius: 0;
        width: 100%;
        max-height: none !important;
        display: none !important;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu .dropdown-menu.show {
        display: block !important;
    }

    .dropdown-link {
        padding: 1rem 2rem;
        display: block !important;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.95rem;
        font-weight: 400;
        color: var(--text-light);
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:active {
        background-color: rgba(0, 82, 204, 0.1);
        color: var(--primary-color);
    }
    
    .dropdown-menu li {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .dropdown-arrow {
        display: none;
    }

    .tabs {
        flex-direction: column;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-button {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        border-left: 3px solid transparent;
        padding: 1rem;
    }

    .tab-button.active {
        border-bottom: 1px solid var(--border-color);
        border-left: 3px solid var(--accent-color);
    }

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

    .firms-scroll {
        gap: 2rem;
    }

    .firm-logo-item {
        padding: 0.75rem 1.5rem;
        min-width: 120px;
        height: 70px;
    }

    .firm-logo-item img {
        max-height: 50px;
        max-width: 120px;
    }

    .firm-logo-item span {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

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

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

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

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

    .salary-row.header {
        display: none;
    }

    .salary-cell {
        padding: 0.3rem;
    }

    .salary-cell:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--primary-color);
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .comparison-table ul {
        padding-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 1rem;
        min-height: 500px;
    }

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

    .content-section {
        padding: 3rem 1rem;
    }

    .firms-logos-section {
        padding: 2rem 0;
    }

    .firms-scroll {
        gap: 1.5rem;
    }

    .firm-logo-item {
        padding: 0.5rem 1rem;
        min-width: 100px;
        height: 60px;
    }

    .firm-logo-item img {
        max-height: 40px;
        max-width: 100px;
    }

    .firm-logo-item span {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .logo-top {
        font-size: 1rem;
    }
    
    .logo-bottom {
        font-size: 1.4rem;
    }
    
    .bar-1 {
        width: 24px;
    }
    
    .bar-2 {
        width: 19px;
    }
    
    .bar-3 {
        width: 14px;
    }
}

/* Blog Carousel Styles */
.blog-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    z-index: 0;
    overflow: visible;
}

.blog-carousel-container {
    display: flex;
    gap: 2rem;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    padding: 1rem 0;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.blog-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 300px;
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.blog-card-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel-btn:hover {
    background-color: var(--hover-color);
    transform: scale(1.1);
}

.blog-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.blog-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blog-carousel-dot.active {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 calc(100% - 2rem);
        min-width: 280px;
    }
    
    .blog-carousel-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
}

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

/* Active Section Highlight */
section {
    scroll-margin-top: 80px;
}

/* Firms Logos Scrolling Section */
.firms-logos-section {
    position: relative;
}

.firms-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.firms-scroll {
    display: flex;
    gap: 3rem;
    animation: scroll-horizontal 40s linear infinite;
    width: fit-content;
}

.firm-logo-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
}

.firm-logo-item img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.firm-logo-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.firm-logo-item:hover {
    opacity: 1;
}

.firm-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.firms-scroll:hover {
    animation-play-state: paused;
}

/* Scroll Animation Classes */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.scroll-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.scroll-slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.scroll-fade-in.delay-1 { transition-delay: 0.1s; }
.scroll-fade-in.delay-2 { transition-delay: 0.2s; }
.scroll-fade-in.delay-3 { transition-delay: 0.3s; }
.scroll-fade-in.delay-4 { transition-delay: 0.4s; }

.scroll-slide-up.delay-1 { transition-delay: 0.1s; }
.scroll-slide-up.delay-2 { transition-delay: 0.2s; }
.scroll-slide-up.delay-3 { transition-delay: 0.3s; }
.scroll-slide-up.delay-4 { transition-delay: 0.4s; }


