/* ================================
   ROOT VARIABLES & RESET
================================ */
:root {
    --brand-900: #01052f;
    --brand-800: #010966;
    --brand-700: #010c7d;
    --accent-500: #ff9800;
    --accent-400: #ffb74d;
    --muted: #6b7888;
    --text-dark: #283044;
    --text-muted: #6b7888;
    --bg-main: #f4f6f9;
    --bg-soft: #fbfdff;
    --card-bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-lg: 14px;
    --radius-md: 10px;
    --shadow-sm: 0 6px 18px rgba(16, 30, 50, 0.06);
    --shadow-md: 0 12px 32px rgba(16, 30, 50, 0.10);
    --shadow-lg: 0 18px 48px rgba(16, 30, 50, 0.14);
    --navbar-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background: linear-gradient(180deg, #fbfdff 0%, #f4f6f9 100%);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ================================
   LAYOUT
================================ */
.container {
    padding: 1rem;
    margin: auto;
}

.section {
    position: relative;
    z-index: 1;
    padding-bottom: 10PX;
}

#services.section,
#values.section {
    padding: 20px 0;
}

#initiatives.section {
    padding: 40px 0;
}

.bg-light {
    background: var(--bg-main);
}

.bg-dark {
    background: var(--brand-900);
    color: #fff;
}

/* ================================
   NAVBAR
================================ */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 1002;
    background: #ffffff;
    will-change: transform;
    overflow: visible;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10PX;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    overflow: visible;
    position: relative;
    z-index: 1002;
}

.navbar-wrapper.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.navbar-wrapper.scrolled .site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-left ul,
.nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-left ul {
    justify-content: flex-end;
    padding-right: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-right ul {
    justify-content: flex-start;
    padding-left: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-left ul li,
.nav-right ul li {
    flex: 0 1 auto;
}

.site-header ul li {
    padding: 0;
    margin: 0;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    text-align: center;
    padding: 8px 14px;
    display: inline-block;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--brand-700);
    background: rgba(1, 12, 125, 0.08);
    border-radius: 4px;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: calc(100% - 28px);
}

.nav-left a.active,
.nav-right a.active {
    color: var(--brand-700);
    background: rgba(1, 12, 125, 0.12);
    border-radius: 4px;
}

.nav-left a.active::after,
.nav-right a.active::after {
    width: calc(100% - 28px);
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    flex-shrink: 0;
    min-width: fit-content;
    z-index: 1003;
}

.logo {
    color: #fff;
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: fit-content;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-wrap:hover .logo-img {
    transform: scale(1.05);
}

.logo-wrap a:focus,
.logo-wrap a:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.logo-wrap a:focus-visible {
    outline: none;
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: all .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.25);
    font-weight: 600;
    border: none;
}

.btn-secondary {
    background: #010c7d;
    color: #fff;
    border: 2px solid #010c7d;
    padding: 12px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #010966;
    border-color: #010966;
    box-shadow: 0 10px 30px rgba(1, 12, 125, 0.25);
}

/* ================================
   HERO
================================ */
.hero {
    position: relative;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    background-image: url('images/toya.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(1, 12, 125, 0.35) 0%, rgba(1, 12, 125, 0.25) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60%;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeUp .7s ease both;
    letter-spacing: -0.5px;
    font-weight: 700;
    max-width: min(800px, 100%);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p.lead {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    opacity: .95;
    margin-bottom: 14px;
    animation: fadeUp .9s ease both;
    max-width: min(720px, 100%);
    line-height: 1.65;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p {
    max-width: min(700px, 100%);
    opacity: 0.9;
    animation: fadeUp 1s ease both;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p strong {
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    display: block;
    margin-top: 6px;
}

.hero-buttons {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn {
    font-size: clamp(0.9rem, 1vw, 1rem);
    padding: 12px 24px;
}

/* ================================
   TYPOGRAPHY
================================ */
h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin-bottom: 20px;
    color: var(--brand-700);
}

.bg-dark h2 {
    color: #fff;
}

h3 {
    font-size: 1.35rem;

}

p {
    margin-bottom: 14px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* ================================
   SERVICES
================================ */
#services h2 {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 32px;
    background: linear-gradient(180deg, #ffffff, #fdfefe);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(12, 24, 44, 0.05);
    transition: all .35s cubic-bezier(.2, .9, .2, 1);
    transform-origin: center bottom;
    animation: fadeUp .6s ease both;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 152, 0, 0.12),
            rgba(255, 183, 77, 0.04));
    opacity: 0;
    transition: opacity .35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    color: var(--brand-700);
    margin-bottom: 6px;
}

.service-card h4 {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.service-card ul {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
}

.service-card ul li::before {
    content: "•";
    color: var(--accent-500);
    margin-right: 8px;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   UTILITIES
================================ */
.container .fade-delay-1 {
    animation-delay: .15s;
}

.container .fade-delay-2 {
    animation-delay: .25s;
}

.container .fade-delay-3 {
    animation-delay: .35s;
}

/* ================================
   ABOUT TOYA
================================ */
.about-hr-banner {
    background: linear-gradient(135deg, #010c7d 0%, #010966 50%, #ff9800 100%);
    padding: 14px 0;
    margin-bottom: 10px;
    display: none;
    margin-top: 0px;
}

.about-hr-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hr-banner-text {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.about-hr-banner-btn {
    padding: 10px 24px;
    background: #fff;
    color: #010c7d;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.about-hr-banner-btn:hover {
    background: #ff9800;
    color: #fff;
}

.about-card-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 56px;
}

.about-card {
    flex: 2;
    max-width: 720px;
    text-align: left;
    background: #ffffff;
    padding: 32px 36px;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(16, 30, 50, 0.06);
    border: 1px solid rgba(12, 24, 44, 0.05);
}

.about-card h2 {
    margin-bottom: 8px;
}

.about-card h3 {
    margin-bottom: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.about-card p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-highlights {
    margin-top: 18px;
    padding-left: 18px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-highlights li+li {
    margin-top: 4px;
}

.about-meta {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 12px 32px rgba(1, 12, 125, 0.1);
    border: 1px solid rgba(1, 12, 125, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-self: stretch;
}

.about-meta h4 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #010c7d;
    margin: 0;
    padding: 20px 24px 16px;
    background: linear-gradient(135deg, #f0f2ff 0%, #e8ebfc 100%);
    border-bottom: 3px solid #010c7d;
}

.about-meta-list {
    list-style: none;
    margin: 0;
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-meta-list li {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 16px;
    border-left: 3px solid rgba(1, 12, 125, 0.2);
    transition: border-color 0.2s ease;
}

.about-meta-list li:hover {
    border-left-color: #010c7d;
}

.about-meta-value {
    font-size: 1rem;
    font-weight: 700;
    color: #010c7d;
    letter-spacing: 0.02em;
}

.about-meta-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

.about-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.about-stat {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-stat:first-child {
    border-top: none;
}

.about-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.about-stat-label {
    display: block;
    font-size: 0.88rem;
    opacity: 0.85;
    margin-top: 2px;
}

/* ================================
   MISSION & VISION
================================ */
.mv-circles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 40px);
    width: 94%;
    margin: 32px auto 40px;
    padding: 0;
    border-radius: 18px;
}

.circle-card {
    border-radius: 16px;
    background: rgba(1, 12, 125, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 24px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    border: 1px solid rgba(1, 12, 125, 0.3);
}

.circle-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #010C7D;
    font-weight: 600;
}

.circle-card p {
    color: var(--text-dark);
    font-weight: 400;
}

/* ================================
   OUR VALUES
================================ */
.values-heading {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 600px;
    font-size: clamp(26px, 3.2vw, 36px);
    color: var(--brand-700);
}

.values-fullwidth {
    width: 100%;
    padding-left: clamp(32px, 6vw, 120px);
    padding-right: clamp(32px, 6vw, 120px);
    display: flex;
    justify-content: center;
}

.values-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    max-width: 1400px;
}

.value-box {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(16, 30, 50, 0.08);
    border: 1px solid rgba(12, 24, 44, 0.05);
}

.value-box h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-box p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.value-box.integrity {
    border-top: 4px solid #f5a623;
}

.value-box.empathy {
    border-top: 4px solid #010c7d;
}

.value-box.impact {
    border-top: 4px solid #e53935;
}

.value-box.collaboration {
    border-top: 4px solid #3949ab;
}

#values {
    padding-left: 24px;
    padding-right: 24px;
}

#values .container {
    max-width: 1240px;
}

@media (min-width: 1400px) {
    #values {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ================================
   4P FRAMEWORK
================================ */
.framework-dark {
    background: #000;
    color: #ffffff;
}

.framework-title {
    text-align: center;
    margin-bottom: 12px;
    color: #ffffff;
}

.framework-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 56px;
    font-size: 1rem;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.framework-item h3 {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 1.15rem;
    color: #ffffff;
}

.framework-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.framework-circle {
    width: clamp(50px, 12vw, 100px);
    height: clamp(50px, 12vw, 100px);
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    color: #ffffff;
}

.framework-circle.p1 {
    background: #010c7d;

    /* integrity */
}

.framework-circle.p2 {
    background: #010c7d;

    /* empathy */
}

.framework-circle.p3 {
    background: #010c7d;

    /* impact */
}

.framework-circle.p4 {
    background: #010c7d;

    /* collaboration */
}

.framework-footer {
    max-width: 1100px;
    margin: 36px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 28px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    min-height: 100px;
}

/* ================================
   CENTERED SECTIONS
================================ */
.center-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.center-section h2 {
    margin-bottom: 32px;
}

.center-section h3 {
    margin-bottom: 8px;
}

.center-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.center-list li {
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-dark);
}

/* ================================
   INITIATIVES
================================ */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.timeline-item {
    background: #ffffff;
    padding: 28px 32px;
    border-left: 5px solid var(--accent-500);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(16, 30, 50, 0.08);
}

.timeline-item h3 {
    color: var(--brand-700);
}

.timeline-item h3 a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.timeline-item h3 a:hover {
    color: var(--accent-500);
    transform: translateX(5px);
}

/* ================================
   WHY TOYA
================================ */
.why-toya {
    padding: 50px 0;
    background: radial-gradient(circle at center top, rgb(239 239 239), rgb(1, 9, 102));
}

.centered-title {
    text-align: center;
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.why-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(16, 30, 50, 0.08);
    text-align: center;
}

.why-item h3 {
    margin-bottom: 10px;
    color: var(--brand-700);
}

/* ================================
   WHO WE WORK WITH
================================ */
.who-we-work-with {
    background: linear-gradient(180deg, #fbfdff, #f4f6f9);
}

.audience-intro {
    margin-bottom: 32px;
    font-size: 1rem;
    color: var(--text-muted);
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.audience-pill {
    padding: 12px 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(12, 24, 44, 0.08);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-700);
    box-shadow: 0 6px 16px rgba(16, 30, 50, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* ================================
   CONTACT
================================ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: auto;
    background: var(--brand-900);
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-left {
    padding: 40px 64px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #fff;
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 32px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    margin-bottom: 40px;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

.contact-info h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.contact-info p {
    font-size: 0.95rem;
    color: #cfcfcf;
    margin-bottom: 12px;
}

.timings {
    margin-top: 24px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

#contact,
section#contact {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.section:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
}


main,
.site-content {
    margin-bottom: 0;
    padding-bottom: 0;

}

/* ================================
   SITE FOOTER
================================ */
.site-footer {
    background: var(--brand-900);
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
}

.site-footer-text {
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}


main:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ================================
   MOBILE MENU
================================ */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1003;
    position: relative;
    min-width: 44px;
    /* Touch target size */
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
    align-items: center;
}

.hamburger:focus,
.hamburger:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu {
    display: none;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   DROPDOWN MENU
================================ */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    /* Touch target size */
}

.dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
}

.dropdown-toggle:active {
    background: rgba(0, 0, 0, 0.05);
}

.dropdown-toggle .chevron {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.has-dropdown.active .dropdown-toggle {
    background: rgba(0, 0, 0, 0.05);
}

.has-dropdown.active .dropdown-toggle .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fafafa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.has-dropdown.active .dropdown-menu {
    max-height: 400px;
}

.dropdown-menu li {
    border-top: 1px solid #eee;
}

.dropdown-menu a {
    display: block;
    padding: 14px;
    font-size: 0.95rem;
    text-decoration: none;
    color: #444;
    text-align: center;
    transition: background 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    /* Touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dropdown-menu a:active {
    background: rgba(0, 0, 0, 0.08);
}

/* ================================
   ACCESSIBILITY
================================ */
a:focus,
button:focus {
    outline: 3px solid rgba(34, 139, 230, 0.18);
    outline-offset: 3px;
}

.nav-left a:focus,
.nav-right a:focus,
.mobile-menu a:focus {
    outline: none;
    box-shadow: none;
}

.nav-left a:focus-visible,
.nav-right a:focus-visible,
.mobile-menu a:focus-visible {
    outline: 2px solid rgba(255, 152, 0, 0.6);
    outline-offset: 4px;
}

/* Ensure all anchor targets scroll correctly */
section[id] {
    scroll-margin-top: var(--navbar-height);
}

/* ================================
   RESPONSIVE
================================ */

/* Large Desktops (1400px+) */
@media (min-width: 1400px) {


    .mv-circles {
        width: 90%;
    }

    .values-fullwidth {
        padding-left: 120px;
        padding-right: 120px;
    }

    #values {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Desktops (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {


    .mv-circles {
        width: 90%;
    }

    .nav-left ul {
        gap: 18px;
        padding-right: 15px;
    }

    .nav-right ul {
        gap: 18px;
        padding-left: 15px;
    }
}

/* Tablets Landscape & Small Desktops (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {



    .nav-left ul {
        gap: 16px;
        padding-right: 15px;
    }

    .nav-right ul {
        gap: 16px;
        padding-left: 15px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 28px;
    }

    .contact-left {
        padding: 70px 50px;
    }

    .contact-left h2 {
        font-size: 2.5rem;
    }
}

/* Tablets Landscape (1024px) */
@media (max-width: 1024px) {
    .values-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 960px;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }

    .mv-circles {
        gap: 32px;
    }

    .contact-left {
        padding: 60px 40px;
    }

    .contact-left h2 {
        font-size: 2.3rem;
    }
}

/* Tablets (900px - 1023px) */
@media (max-width: 1023px) and (min-width: 900px) {


    .nav-left ul,
    .nav-right ul {
        gap: 14px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
}

/* Tablets Portrait (900px) */
@media (max-width: 900px) {


    .hero::after {
        display: none;
    }

    .about-card-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .about-meta {
        width: 100%;
        max-width: none;
    }

    .framework-footer {
        margin: 24px auto 0;
        padding: 20px 16px;
        min-height: 0;
        font-size: 0.98rem;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 48px 24px;
    }

    .contact-left h2 {
        font-size: 2.2rem;
    }

    .contact-map iframe {
        height: 420px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .about-card {
        padding: 24px 28px;
    }


}

/* Tablets Portrait & Mobile Landscape (768px - 899px) */
@media (max-width: 899px) and (min-width: 768px) {

    .nav-left ul,
    .nav-right ul {
        gap: 12px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 0.75rem;
        padding: 8px 12px;
        color: var(--text-dark);
    }

    .logo-img {
        max-height: 55px;
    }

    .hero h1 {
        font-size: clamp(26px, 4vw, 42px);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Tablets (820px - 899px) */
@media (max-width: 899px) and (min-width: 820px) {

    .nav-left ul,
    .nav-right ul {
        gap: 14px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 0.75rem;
    }
}

/* Mission & Vision Cards - Stack at 646px */
@media (max-width: 646px) {
    .mv-circles {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .circle-card h3 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }
}

/* Tablets Portrait (768px) */
@media (max-width: 768px) {

    .hero {
        height: 90vh;
    }

    .logo-img {
        height: 56px;
        max-height: 56px;
    }



    .hero h1 {
        font-size: clamp(24px, 5vw, 38px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mv-circles {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .circle-card {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

/* Mobile Landscape & Small Tablets (720px) */
@media (max-width: 720px) {
    .site-header {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        gap: 10px;
        z-index: 1002;
        background: #ffffff;
    }

    .navbar-wrapper {
        background: #ffffff;
    }

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .logo-wrap {
        padding: 0;
        flex: 1;
        display: flex;
        justify-content: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1004;
        margin-left: auto;
        cursor: pointer;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        padding: 66px 0 10px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0.4s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }

    .mobile-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0);
        pointer-events: auto !important;
        display: block !important;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .mobile-menu li {
        width: 100%;
        display: block;
        margin: 0;
    }

    .mobile-menu.active li {
        padding: 0;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
        opacity: 0;
        animation: fadeInUp 0.4s ease forwards;
    }

    .mobile-menu.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .mobile-menu.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .mobile-menu.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .mobile-menu.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .mobile-menu.active li:nth-child(5) {
        animation-delay: 0.3s;
    }

    .mobile-menu.active li:nth-child(6) {
        animation-delay: 0.35s;
    }

    .mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu a {
        color: var(--text-dark);
        font-size: 1rem;
        font-family: "Poppins", Arial, sans-serif;
        text-decoration: none;
        display: block;
        width: 100%;
        box-sizing: border-box;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        padding: 15px 20px;
        position: relative;
        text-align: center;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--brand-700);
        transition: width 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--brand-700);
        background: rgba(1, 12, 125, 0.08);
    }

    .mobile-menu a:hover::after {
        width: 100%;
    }

    .mobile-menu a.active {
        color: var(--brand-700);
        background: rgba(1, 12, 125, 0.12);
        font-weight: 600;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu a.active::after {
        width: 100%;
    }

    .mobile-menu a:hover {
        width: 100%;
        box-sizing: border-box;
    }

    /* Dropdown menu styles for mobile */
    .has-dropdown {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-toggle {
        width: 100%;
        background: none;
        border: none;
        padding: 15px;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: background 0.25s ease;
    }

    .dropdown-toggle:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    .dropdown-toggle .chevron {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .has-dropdown.active .dropdown-toggle .chevron {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #fafafa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-menu li {
        border-top: 1px solid #eee;
    }

    .dropdown-menu a {
        display: block;
        padding: 14px;
        font-size: 0.95rem;
        text-decoration: none;
        color: #444;
        text-align: center;
        transition: background 0.25s ease;
    }

    .dropdown-menu a:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .framework-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Mobile (600px) */
@media (max-width: 600px) {
    .container {
        width: 94%;
    }



    .hero h1 {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: 20px;
    }

    .hero-buttons {
        margin-top: 16px;
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero p.lead {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .hero::after {
        bottom: 0;
        width: 60%;
        height: 60%;
        pointer-events: none;
    }

    .values-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-box {
        padding: 24px 20px;
    }

    .value-box h3 {
        font-size: 1.2rem;
    }

    .values-heading {
        margin-bottom: 32px;
        font-size: clamp(22px, 5vw, 28px);
    }

    #values {
        padding-left: 16px;
        padding-right: 16px;
    }

    .framework-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .framework-subtitle {
        margin-bottom: 36px;
        font-size: 0.9rem;
    }

    .framework-circle {
        width: clamp(50px, 14vw, 100px);
        height: clamp(50px, 14vw, 100px);
        font-size: clamp(0.7rem, 2vw, 0.85rem);
    }

    .values-fullwidth {
        padding-left: 16px;
        padding-right: 16px;
    }

    .center-section {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .center-section h2 {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 24px;
    }

    .audience-pill {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .mv-circles {
        margin-bottom: 48px;
        gap: 20px;
    }

    .circle-card {
        width: min(240px, 90%);
        height: 240px;
        padding: 24px;
    }

    .circle-card h3 {
        font-size: 1.1rem;
    }

    .about-card {
        max-width: 100%;
        padding: 24px 20px;
    }

    .about-card h2 {
        font-size: clamp(22px, 5vw, 28px);
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .timeline-item {
        padding: 20px;
    }

    .why-item {
        padding: 20px;
    }

    .contact-left h2 {
        font-size: 1.8rem;
    }

    .contact-desc {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    h2 {
        font-size: clamp(22px, 5vw, 28px);
    }

    h3 {
        font-size: 1.2rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    body {
        font-size: 0.875rem;
    }

    h1 {
        font-size: clamp(18px, 6vw, 24px);
    }

    h2 {
        font-size: clamp(20px, 5.5vw, 24px);
    }

    h3 {
        font-size: 1rem;
    }

    p,
    .hero p,
    .about-card p {
        font-size: 0.875rem;
    }

    .hero p.lead {
        font-size: 0.85rem;
    }

    .about-hr-banner-text {
        font-size: 0.9rem;
    }

    .about-hr-banner-btn {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .about-meta-value {
        font-size: 0.9rem;
    }

    .about-meta-desc {
        font-size: 0.8rem;
    }

    .site-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #ffffff;
    }

    .navbar-wrapper {
        background: #ffffff;
    }

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .logo-wrap {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
    }

    .logo-img {
        max-height: 50px;
    }

    .hamburger {
        display: flex !important;
        background: transparent;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        padding: 6px;
        z-index: 1003;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 66px 0 10px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.35s ease;
        z-index: 1001;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .mobile-menu li {
        width: 100%;
        display: block;
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
    }

    .mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 14px 20px;
        font-size: 0.95rem;
        font-family: "Poppins", Arial, sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-dark);
        text-decoration: none;
        transition: all 0.25s ease;
        position: relative;
    }

    .mobile-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--brand-700);
        transition: width 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--brand-700);
        background: rgba(1, 12, 125, 0.08);
    }

    .mobile-menu a:hover::after {
        width: 100%;
    }

    .mobile-menu a.active {
        color: var(--brand-700);
        background: rgba(1, 12, 125, 0.12);
        font-weight: 600;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu a.active::after {
        width: 100%;
    }

    /* Dropdown menu for small mobile */
    .has-dropdown {
        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-toggle {
        padding: 14px;
        font-size: 0.95rem;
    }

    .dropdown-menu a {
        padding: 12px;
        font-size: 0.9rem;
    }

    .container {
        width: 92%;
    }



    .hero h1 {
        font-size: clamp(18px, 6vw, 24px);
    }

    .service-card {
        padding: 18px;
    }

    .service-card h3,
    .value-box h3 {
        font-size: 0.95rem;
    }

    .value-box {
        padding: 20px 18px;
    }

    .value-box p {
        font-size: 0.85rem;
    }

    .about-card {
        padding: 20px 18px;
    }

    .about-card h2 {
        font-size: clamp(20px, 5vw, 24px);
    }

    .about-highlights {
        font-size: 0.875rem;
    }

    .contact-left {
        padding: 40px 20px;
    }

    .contact-left h2 {
        font-size: 1.35rem;
    }

    .contact-desc {
        font-size: 0.85rem;
    }

    .contact-map iframe {
        height: 350px;
    }

    .mv-circles {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 92%;
        padding: 0;
    }

    .circle-card {
        width: 190px;
        height: 190px;
        min-width: 190px;
        min-height: 190px;
        border-radius: 50%;
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .circle-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .circle-card p {
        font-size: 0.78rem;
        line-height: 1.3;
        margin: 0;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 900px) and (orientation: landscape) {


    .section {
        padding: 48px 0;
    }
}

/* Very Small Mobile (360px) */
@media (max-width: 360px) {


    .logo-img {
        max-height: 45px;
    }

    .hamburger {
        padding: 5px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }



    .mobile-menu a {
        padding: 12px;
        font-size: 0.9rem;
    }

    .dropdown-toggle {
        padding: 12px;
        font-size: 0.9rem;
    }

    .dropdown-menu a {
        padding: 10px;
        font-size: 0.85rem;
    }

    .container {
        width: 90%;
    }





    .hero h1 {
        font-size: clamp(18px, 6vw, 24px);
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 16px;
    }

    .value-box {
        padding: 18px 16px;
    }

    .about-card {
        padding: 18px 16px;
    }

    .contact-left {
        padding: 36px 16px;
    }

    .contact-left h2 {
        font-size: 1.4rem;
    }

    .contact-desc {
        font-size: 0.85rem;
    }

    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .contact-map iframe {
        height: 300px;
    }

    .mv-circles {
        gap: 12px;
        width: 90%;
    }

    .circle-card {
        width: min(180px, 90%);
        height: 180px;
        padding: 18px;
    }

    .circle-card h3 {
        font-size: 1rem;
    }

    .audience-pill {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    h2 {
        font-size: clamp(20px, 6vw, 24px);
    }

    h3 {
        font-size: 1.1rem;
    }
}

/* ================================
   MYSURU HR AWARDS 2026 POPUP
================================ */
.hr-awards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.hr-awards-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hr-awards-overlay.hr-awards-overlay--closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hr-awards-popup {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: 90%;
    max-width: 480px;
    height: auto;
    max-height: 75vh;
    overflow-y: auto;
    cursor: default;
}

.hr-awards-popup.hr-awards-popup--closing {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.hr-awards-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(1, 12, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease;
    color: #010c7d;
    font-size: 24px;
    line-height: 1;
    padding: 0;
}

.hr-awards-close:hover {
    background: rgba(1, 12, 125, 0.2);
    transform: rotate(90deg);
}

.hr-awards-close span {
    display: block;
    font-weight: 300;
}

.hr-awards-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 100%;
}

.hr-awards-header {
    text-align: center;
    margin-bottom: 18px;
    padding-top: 4px;
}

.hr-awards-header h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #010c7d;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.hr-awards-header h2 a,
.hr-awards-popup-title-link {
    color: #010c7d;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.hr-awards-popup-title-link:hover {
    opacity: 0.85;
    color: #010c7d;
}

.hr-awards-tagline {
    font-size: clamp(13px, 1.3vw, 14px);
    color: #666;
    margin: 0 0 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hr-awards-presented {
    font-size: clamp(11px, 1.1vw, 12px);
    color: #888;
    margin: 0 0 16px 0;
    font-style: italic;
}

.hr-awards-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #010c7d, transparent);
    margin: 16px auto;
    max-width: 200px;
}

.hr-awards-body {
    color: #333;
}

.hr-awards-body h4 {
    font-size: clamp(16px, 1.8vw, 20px);
    color: #010c7d;
    margin: 0 0 14px 0;
    font-weight: 600;
    line-height: 1.3;
}

.hr-awards-body p {
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.6;
    color: #555;
    margin: 0 0 18px 0;
}

.hr-awards-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding: 16px;
    background: rgba(1, 12, 125, 0.05);
    border-radius: 8px;
    border-left: 3px solid #010c7d;
}

.hr-awards-info-item {
    display: flex;
    align-items: center;
    font-size: clamp(12px, 1.2vw, 14px);
    color: #333;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFade 0.5s ease forwards;
}

.hr-awards-info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.hr-awards-info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.hr-awards-info-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hr-awards-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hr-awards-buttons .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 24px;
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}


/* Mobile Responsive - same content at all sizes, box fits viewport */
@media (max-width: 768px) {
    .hr-awards-popup {
        width: calc(100% - 40px);
        max-width: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .hr-awards-content {
        padding: 20px;
        padding-top: 48px;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
    }

    .hr-awards-header h2 {
        font-size: clamp(16px, 4vw, 20px);
    }

    .hr-awards-tagline {
        font-size: 0.85rem;
    }

    .hr-awards-body p.hr-awards-desc {
        font-size: 0.9rem;
    }

    .hr-awards-info {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hr-awards-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .hr-awards-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hr-awards-popup {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        overflow-y: auto;
    }

    .hr-awards-content {
        padding: 16px;
        padding-top: 44px;
        overflow-y: auto;
    }

    .hr-awards-header h2 {
        font-size: clamp(14px, 4vw, 18px);
    }

    .hr-awards-tagline {
        font-size: 0.8rem;
    }

    .hr-awards-body p.hr-awards-desc {
        font-size: 0.85rem;
    }

    .hr-awards-info {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .hr-awards-pill {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .hr-awards-buttons .btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* ================================
   HR AWARDS FLOAT (home page only, text + button)
================================ */
.hr-awards-float-wrap {
    position: fixed;
    bottom: 2%;
    right: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
}

.hr-awards-float-wrap.hr-awards-float--visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: hrAwardsFloatFloat 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes hrAwardsFloatFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    45% {
        transform: translateY(-6px) scale(1.04);
    }

    70% {
        transform: translateY(-2px) scale(1.01);
    }
}

.hr-awards-float-text {
    font-size: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    /* required for visibility */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    color: #000000;
    max-width: 100px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hr-awards-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #010c7d 0%, #ff9800 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(1, 12, 125, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.hr-awards-float:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(1, 12, 125, 0.5);
}

.hr-awards-float:focus,
.hr-awards-float:active {
    outline: none;
    border: none;
    box-shadow: 0 4px 20px rgba(1, 12, 125, 0.4);
}

.hr-awards-float-icon {
    font-size: 1.5rem;
    line-height: 1;
}