:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #fbbf24;
    --accent-dark: #d97706;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Top Bar */
.top-bar {
    background: var(--primary) !important;
    color: white;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1002;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 1.5rem;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-social {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.top-social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.top-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links>a,
.nav-item>a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links>a::after,
.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links>a:hover::after,
.nav-links>a.active::after,
.nav-item>a:hover::after,
.nav-item>a.active::after {
    width: 100%;
}

.nav-links>a:hover,
.nav-links>a.active,
.nav-item>a:hover,
.nav-item>a.active {
    color: var(--primary);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--bg-light);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    padding-left: 2rem;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.mobile-menu {
    display: none;
}

/* Who We Are - Home Redesign */
.who-we-are-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.who-image-wrapper {
    position: relative;
    padding: 2rem;
}

.who-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    background: var(--accent);
    border-radius: 40px;
    z-index: 0;
    transform: rotate(-3deg);
    opacity: 0.15;
}

.who-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.cert-badge-premium {
    position: absolute;
    bottom: 10%;
    left: -20px;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    border-left: 5px solid var(--accent);
}

.cert-badge-premium i {
    font-size: 2.5rem;
    color: var(--primary);
}

.cert-badge-premium span {
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-module {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mv-module:last-child {
    border-bottom: none;
}

.mv-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mv-module:hover .mv-icon-box {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.mv-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.mv-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.typed-cursor {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Jobs List */
.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.job-info h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.job-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #0f172a;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 40px;
}

.footer-about p {
    margin-top: 1rem;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer-links ul li:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    opacity: 0.6;
}

.designer-credit {
    font-weight: 500;
    opacity: 0.9;
}

.pamatech-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition);
}

.pamatech-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.pamatech-link:hover {
    color: white;
}

.pamatech-link:hover::after {
    width: 100%;
    background: white;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Swiper Customizations */
.swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
}

/* Accreditation Section */
.accreditation-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.acc-item {
    text-align: center;
}

.acc-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--bg-light);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Hero Slide Backgrounds */
.hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Country Flags */
.country-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-5px);
}

.flag-img {
    width: 60px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
}

/* Services with Images */
.service-slide {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-slide:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-body {
    padding: 1.5rem;
}

.service-icon {
    background: var(--accent);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Service Detail Premium Styles */
.service-detail-hero {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.service-detail-hero .hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.service-title-main {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-meta-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .service-meta-grid {
        gap: 1rem;
    }

    .meta-card {
        width: 100%;
        justify-content: center;
    }
}

.meta-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-card i {
    color: var(--accent);
}

.content-block {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 18px;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.cta-sidebar-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.sidebar-icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: var(--text-dark);
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icon-box i {
    font-size: 2.5rem;
}

.cta-sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-sidebar-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn.full-width {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-group {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .service-title-main {
        font-size: 2.5rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 2rem;
    }
}

/* Categories Page Overhaul - Creative & Premium */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.cat-card {
    height: 450px;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: block;
}

/* Alternate sizing for "Masonry" feel */
.cat-card:nth-child(even) {
    height: 520px;
    margin-top: -30px;
}

.cat-card:nth-child(3n) {
    height: 480px;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
}

.cat-card:hover img {
    transform: scale(1.1) rotate(-1deg);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 10%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: white;
    transition: background 0.4s ease;
}

.cat-card:hover .cat-overlay {
    background: linear-gradient(to top, var(--primary) 10%, rgba(30, 58, 138, 0.6) 60%, transparent 100%);
}

.cat-icon-premium {
    width: 65px;
    height: 65px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.cat-card:hover .cat-icon-premium {
    transform: scale(1.1) rotate(15deg);
    background: white;
    color: var(--primary);
}

.cat-icon-premium i {
    font-size: 2.2rem;
}

.cat-overlay h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.cat-overlay p {
    font-size: 0.95rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-overlay p::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.cat-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .cat-card:nth-child(even) {
        height: 450px;
        margin-top: 0;
    }
}

/* Jobs Page Layout */
.jobs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .jobs-layout {
        grid-template-columns: 1fr;
    }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
}

@media (max-width: 992px) {
    .job-detail-grid {
        grid-template-columns: 1fr;
    }
}

.filter-sidebar {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.filter-group ul li {
    padding: 0.5rem 0;
}

.filter-group ul li a {
    color: var(--text-muted);
}

.filter-group ul li a:hover,
.filter-group ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

.job-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .job-actions {
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .job-actions a {
        flex: 1;
        min-width: 120px;
    }

    .job-info-grid {
        grid-template-columns: 1fr !important;
    }
}

.job-card:hover {
    transform: translateX(10px);
    border-left: 5px solid var(--accent);
}

.scroll-categories::-webkit-scrollbar {
    width: 4px;
}

.scroll-categories::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-categories::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.scroll-categories::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Accreditation Logos */
.acc-logo-img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.acc-item:hover .acc-logo-img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }

    .top-contact {
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
    }

    .top-social {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Will handle with JS */
    }

    .nav-toggle {
        display: block;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        /* Changed to 0 and will offset with margin or height if needed, actually header is sticky */
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--bg-light);
        color: var(--text-dark);
        font-weight: 500;
    }
}

/* Standout Cards - Premium Redesign */
.standout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .standout-grid {
        grid-template-columns: 1fr;
    }
}

.standout-card {
    background: var(--bg-white);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.standout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.standout-card:hover {
    transform: translateY(-15px);
    color: white;
}

.standout-card:hover::before {
    opacity: 1;
}

.standout-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.standout-card:hover h4 {
    color: white;
}

.standout-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.standout-card:hover .standout-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent);
    transform: rotate(10deg);
}

.standout-icon i,
.standout-icon span {
    font-size: 3rem;
}

.standout-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: color 0.4s ease;
}

.standout-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.standout-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.standout-card:hover .standout-number {
    color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 576px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .who-we-are-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cert-badge-premium {
        position: absolute;
        bottom: 20px;
        left: 20px;
        padding: 1rem 1.5rem;
    }
}

/* Accreditations Premium Redesign */
.accreditation-card-premium {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.accreditation-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.acc-logo-wrapper {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.accreditation-card-premium:hover .acc-logo-wrapper {
    transform: scale(1.05);
}

.acc-logo-img-premium {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.accreditation-card-premium:hover .acc-logo-img-premium {
    filter: grayscale(0);
    opacity: 1;
}

.acc-info-premium h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    text-align: center;
}

.acc-info-premium p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

/* Mega Menu & Typing Sync */
.dropdown-menu.mega-menu {
    width: 480px;
    padding: 2rem;
    left: -150px;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.mega-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-dark);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
}

.mega-job-item {
    display: block !important;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease;
}

.mega-job-item:hover {
    background: transparent !important;
    transform: translateX(8px);
}

.mj-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.2;
}

.mj-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.cta-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Typing Animation Support */
.typed-hero {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.typed-hero.active {
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Contact Social Showcase - Premium */
.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-social-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.contact-social-card i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-social-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.contact-social-card:hover i {
    color: var(--accent-dark);
}

.whatsapp-premium-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.wp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.btn-whatsapp-cta {
    background: white;
    color: #128C7E;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
    transform: scale(1.05);
    background: var(--text-dark);
    color: white;
}

@media (max-width: 576px) {
    .whatsapp-premium-card>div {
        flex-direction: column;
        text-align: center;
    }

    .btn-whatsapp-cta {
        margin: 1rem auto 0;
    }
}

/* Team Card Premium Interactions */
.team-card {
    padding: 0 !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: transform 0.6s ease;
}

.team-social-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
}

.team-social-overlay .social-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
}

.team-social-overlay .social-icon:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px) !important;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-card:hover .team-image {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    visibility: visible;
}

.team-card:hover .social-icon {
    transform: translateY(0);
}

.team-card:hover .social-icon:nth-child(2) {
    transition-delay: 0.1s;
}

.team-card:hover .social-icon:nth-child(3) {
    transition-delay: 0.2s;
}

.team-card h3 {
    margin: 1.5rem 1rem 0.5rem;
}

.team-card .team-role {
    margin: 1.5rem 1rem 0;
}

.team-card p {
    margin: 0 1rem 1.5rem;
}

/* Job Card Premium */
.job-card-premium {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.job-cat-badge {
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-title-premium {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.job-loc-premium {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.job-salary {
    display: flex;
    flex-direction: column;
}

.salary-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.btn-job-view {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-job-view:hover {
    background: var(--accent);
    color: var(--text-dark);
}

/* Custom Swiper Navigation */
.job-prev,
.job-next {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-prev:hover,
.job-next:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.job-prev.swiper-button-disabled,
.job-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}