:root {
    --primary: #0d4c9a;
    --primary-dark: #08356d;
    --primary-light: #edf4ff;
    --secondary: #f4a024;
    --secondary-soft: #fff4df;
    --dark: #0f172a;
    --heading: #10233f;
    --text: #425466;
    --muted: #6b7a90;
    --white: #ffffff;
    --border: #dfe7f1;
    --border-soft: #edf2f7;
    --section: #f7fafc;
    --surface: #fdfefe;
    --footer-bg: #0b1220;
    --footer-top: #101a2d;
    --success: #1f7a4d;
    --danger: #dc3545;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --transition: all 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

::selection {
    background: rgba(13, 76, 154, 0.12);
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    color: var(--text);
    margin-bottom: 1rem;
}

/* ============================================================
COMMON UTILITIES
============================================================ */
.bg-primary-light {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.rounded-4 {
    border-radius: var(--radius) !important;
}

.shadow,
.shadow-sm,
.shadow-lg {
    box-shadow: 0 10px 30px rgba(2, 32, 71, 0.06) !important;
}

/* ============================================================
SCROLL PROGRESS
============================================================ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    z-index: 9999;
    transition: width 0.15s linear;
}

/* ============================================================
TOP BAR
============================================================ */
.topbar {
    background: linear-gradient(90deg, var(--primary-dark), #0a417f);
    padding: 11px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-contact,
.social-links,
.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 500;
}

.topbar-contact li i {
    color: var(--secondary);
    font-size: 14px;
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.94);
}

.topbar-contact a:hover {
    color: #ffe7b4;
}

.topbar-right {
    display: flex;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a,
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover,
.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ============================================================
HEADER / NAVBAR
============================================================ */
.header-area {
    position: relative;
    z-index: 1000;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}

.navbar-custom.navbar-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.navbar-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
}

.logo-text span {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: var(--muted);
    font-weight: 600;
    max-width: 220px;
}

.navbar-nav {
    gap: 6px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 14px !important;
    border-radius: 999px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    padding: 8px 10px;
    color: var(--primary-dark);
    font-size: 28px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.header-btn {
    display: flex;
    align-items: center;
}

/* ============================================================
BUTTONS
============================================================ */
.btn {
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: none !important;
    outline: none;
}

.btn:hover,
.btn:focus,
.btn:active {
    box-shadow: none !important;
    outline: none;
}

.btn-primary-custom,
.btn-gradient {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary-custom:hover,
.btn-gradient:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light {
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-1px);
}

/* ============================================================
HERO SECTION / CAROUSEL
============================================================ */
#home {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 88vh;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 22, 48, 0.86) 0%, rgba(8, 35, 74, 0.68) 42%, rgba(8, 35, 74, 0.26) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .col-lg-7,
.hero-slide .col-md-9,
.hero-slide .col-12 {
    padding: 20px 0;
}

.hero-slide h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 700px;
}

.hero-slide p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    max-width: 600px;
    margin-bottom: 12px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn {
    min-width: 170px;
}

.carousel-fade .carousel-item {
    transition: opacity 0.9s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.18);
    background-size: 55% 55%;
    backdrop-filter: blur(8px);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: var(--secondary);
}

/* ============================================================
SECTIONS - COMMON
============================================================ */
.py-5 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.badge.bg-primary-light {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.35px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--heading);
    margin: 14px 0 16px;
}

.section-title span {
    color: var(--primary);
}

.section-title.text-white span {
    color: #ffd27a;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 10px;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

/* ============================================================
ABOUT SECTION - PROFESSIONAL VERSION
============================================================ */
.about-org-section {
    background: var(--section);
    position: relative;
    overflow: hidden;
}

.about-org-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 76, 154, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.about-org-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 160, 36, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-org-image-wrapper {
    position: relative;
    padding-right: 20px;
}

.about-org-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(2, 32, 71, 0.10);
}

.about-org-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.about-org-image-main:hover img {
    transform: scale(1.02);
}

.about-org-image-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-org-image-badge i {
    color: var(--secondary);
    font-size: 18px;
}

.about-org-experience-card {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--primary);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(13, 76, 154, 0.25);
    text-align: center;
    min-width: 140px;
    border: 3px solid var(--white);
}

.about-org-exp-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.about-org-exp-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-org-content {
    position: relative;
    z-index: 1;
}

.about-org-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-org-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-org-title span {
    color: var(--primary);
    position: relative;
}

.about-org-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.about-org-description {
    margin-bottom: 28px;
}

.about-org-text-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--heading);
    line-height: 1.7;
}

.about-org-description p {
    color: var(--text);
    line-height: 1.8;
}

.about-org-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.about-org-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-org-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(13, 76, 154, 0.15);
}

.about-org-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-org-stat-icon i {
    font-size: 18px;
    color: var(--primary);
}

.about-org-stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-org-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.about-org-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    word-break: break-word;
}

.about-org-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.about-org-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
}

.about-org-actions .btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.about-org-actions .btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 76, 154, 0.2);
}

.about-org-actions .btn-outline-primary-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.about-org-actions .btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
MISSION VISION SECTION - SECONDARY BACKGROUND
============================================================ */
.mission-vision-section {
    background: var(--secondary) !important;
    position: relative;
}

.mission-vision-section .section-title {
    color: var(--white) !important;
}

.mission-vision-section .section-title span {
    color: var(--white) !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 6px;
}

.mission-vision-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.mission-vision-section .badge.bg-primary-light {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
}

.mv-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    height: 100%;
    transition: var(--transition);
    text-align: center !important;
}

.mv-card:hover {
    background: var(--white) !important;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mv-card h5 {
    color: var(--primary-dark) !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mv-card p {
    color: var(--text) !important;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mv-icon-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--secondary) !important;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* ============================================================
FOCUS AREAS SECTION - WHAT WE DO
============================================================ */
.focus-areas-section {
    background: var(--white);
    position: relative;
}

.focus-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    height: 100%;
    transition: var(--transition);
    text-align: center !important;
}

.focus-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 76, 154, 0.18);
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.focus-icon-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto !important;
    background: linear-gradient(135deg, var(--primary-light), #dceaff);
    color: var(--primary);
    font-size: 30px;
    flex-shrink: 0;
}

.focus-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 12px;
}

.focus-card p {
    color: var(--muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
WHY CHOOSE SECTION
============================================================ */
.why-choose-section {
    background: var(--section);
    position: relative;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 76, 154, 0.18);
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.why-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    background: linear-gradient(135deg, var(--primary-light), #dceaff);
    color: var(--primary);
    font-size: 28px;
    flex-shrink: 0;
}

.why-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
GALLERY SECTION
============================================================ */
.gallery-section {
    background: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(13, 76, 154, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 76, 154, 0.56);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ============================================================
CTA SECTION
============================================================ */
.cta-section {
    position: relative;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================================
MODAL / LIGHTBOX
============================================================ */
.modal-content {
    border-radius: 0 !important;
}

#lightboxImage {
    border-radius: 22px !important;
}

/* ============================================================
CONTACT
============================================================ */
#contact iframe {
    border-radius: var(--radius-lg);
    min-height: 300px;
}

#contact .bg-white {
    border-radius: var(--radius-lg) !important;
    border: 1px solid rgba(13, 76, 154, 0.08);
}

.form-control {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #dbe4ef;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--dark);
    box-shadow: none !important;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-control::placeholder {
    color: #8ea0b5;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none !important;
}

.is-invalid {
    border-color: var(--danger) !important;
}

/* ============================================================
FOOTER
============================================================ */
.footer-area {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.82);
    padding-top: 82px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.footer-logo h4 {
    color: var(--white);
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.footer-logo span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.45;
}

.footer-about {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 24px;
    max-width: 95%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 15px;
    min-width: 16px;
}

.footer-contact li span {
    display: inline-block;
}

.footer-meta {
    margin-top: 55px;
    padding: 14px 0;
    background: var(--footer-top);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.8;
}

.footer-bottom {
    padding: 18px 0;
    background: #09101c;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--white);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* ============================================================
BACK TO TOP
============================================================ */
#backToTop {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: none !important;
}

#backToTop.visible,
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--primary-dark);
}

/* ============================================================
FOCUS STATES
============================================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.navbar-toggler:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    box-shadow: none !important;
}

/* ============================================================
RESPONSIVE BREAKPOINTS
============================================================ */

/* Large screens (1200px and below) */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        margin-top: 16px;
        padding: 18px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        width: 100%;
        border-radius: 12px;
    }

    .header-btn {
        margin-top: 16px;
        width: 100%;
    }

    .header-btn .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tablets (992px and below) */
@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 76vh;
    }

    .hero-slide h1 {
        font-size: clamp(2rem, 7vw, 3.4rem);
    }

    .hero-slide p {
        font-size: 16px;
    }

    .py-5 {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .footer-area {
        padding-top: 65px;
    }

    .hero-actions .btn {
        min-width: 140px;
    }

    .about-org-image-wrapper {
        padding-right: 0;
    }

    .about-org-image-main img {
        height: 380px;
    }

    .about-org-experience-card {
        bottom: -15px;
        right: 20px;
        padding: 16px 22px;
        min-width: 120px;
    }

    .about-org-exp-number {
        font-size: 30px;
    }

    .about-org-exp-text {
        font-size: 12px;
    }
}

/* Small tablets & large phones (768px and below) */
@media (max-width: 767.98px) {
    .navbar-brand img {
        width: 48px;
        height: 48px;
    }

    .logo-text h4 {
        font-size: 17px;
    }

    .logo-text span {
        font-size: 11px;
        max-width: 170px;
    }

    .hero-slide {
        min-height: 68vh;
        text-align: left;
    }

    .hero-slide .col-lg-7,
    .hero-slide .col-md-9,
    .hero-slide .col-12 {
        padding: 10px 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        min-width: auto;
        width: 100%;
    }

    .about-org-section {
        padding: 60px 0 !important;
    }

    .about-org-image-main img {
        height: 300px;
    }

    .about-org-image-badge {
        top: 16px;
        left: 16px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .about-org-image-badge i {
        font-size: 15px;
    }

    .about-org-experience-card {
        bottom: -12px;
        right: 16px;
        padding: 14px 18px;
        min-width: 100px;
    }

    .about-org-exp-number {
        font-size: 26px;
    }

    .about-org-exp-text {
        font-size: 11px;
    }

    .about-org-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-org-stat-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .about-org-stat-icon {
        width: 36px;
        height: 36px;
    }

    .about-org-stat-icon i {
        font-size: 15px;
    }

    .about-org-stat-value {
        font-size: 13px;
    }

    .about-org-actions {
        flex-direction: column;
        width: 100%;
    }

    .about-org-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-org-title span::after {
        display: none;
    }

    .about-org-text-lead {
        font-size: 1rem;
    }

    .mv-card {
        padding: 24px 18px !important;
    }

    .focus-card {
        padding: 24px 18px !important;
    }

    .why-card {
        padding: 24px 18px !important;
    }

    .gallery-item img {
        height: 180px;
    }

    .footer-meta p {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-area {
        padding-top: 50px;
    }

    .footer-meta .mx-2 {
        display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .topbar-contact {
        gap: 12px;
        justify-content: center;
    }

    .topbar-right {
        justify-content: center;
        margin-top: 8px;
    }

    .topbar .row {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile phones (576px and below) */
@media (max-width: 575.98px) {
    body {
        font-size: 15px;
    }

    .btn,
    .btn-primary-custom,
    .btn-gradient,
    .btn-outline-primary-custom,
    .btn-outline-light {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .mv-card h5,
    .focus-card h5,
    .why-card h6 {
        font-size: 1rem !important;
    }

    .mv-card p,
    .focus-card p,
    .why-card p {
        font-size: 0.85rem !important;
    }

    .mv-icon-circle,
    .focus-icon-circle,
    .why-icon-wrapper {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
    }

    .mv-icon-circle {
        margin: 0 auto 16px auto !important;
    }

    .about-org-image-main img {
        height: 240px;
    }

    .about-org-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-org-experience-card {
        bottom: -10px;
        right: 12px;
        padding: 12px 16px;
        min-width: 90px;
        border-width: 2px;
    }

    .about-org-exp-number {
        font-size: 22px;
    }

    .about-org-exp-text {
        font-size: 10px;
    }

    .about-org-stat-item {
        padding: 10px 12px;
    }

    .about-org-actions .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .gallery-item img {
        height: 150px;
    }

    #backToTop {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .hero-slide h1 {
        font-size: 1.8rem;
    }

    .hero-slide p {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .py-5 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .d-flex.gap-2,
    .hero-actions {
        gap: 8px !important;
    }

    .footer-meta p span {
        display: inline;
    }

    .footer-logo h4 {
        font-size: 18px;
    }

    .footer-logo img {
        width: 48px;
        height: 48px;
    }

    .footer-contact li {
        font-size: 14px;
    }

    .footer-title {
        font-size: 16px;
        margin-top: 20px;
    }

    #about img {
        margin-bottom: 10px;
    }

    .hero-actions .btn {
        font-size: 14px;
    }

    .mission-vision-section .mv-card {
        padding: 20px 16px !important;
    }

    .mission-vision-section .mv-icon-circle {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2rem !important;
    }
}

/* Extra small devices (400px and below) */
@media (max-width: 399.98px) {
    .hero-slide h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .mv-card {
        padding: 16px 12px !important;
    }

    .focus-card {
        padding: 16px 12px !important;
    }

    .why-card {
        padding: 16px 12px !important;
    }

    .gallery-item img {
        height: 120px;
    }

    .footer-meta p {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .logo-text h4 {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 10px;
        max-width: 140px;
    }

    .navbar-brand img {
        width: 40px;
        height: 40px;
    }

    .about-org-image-main img {
        height: 200px;
    }

    .about-org-image-badge {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .about-org-image-badge i {
        font-size: 13px;
    }

    .about-org-experience-card {
        padding: 10px 14px;
        min-width: 80px;
    }

    .about-org-exp-number {
        font-size: 20px;
    }

    .about-org-exp-text {
        font-size: 9px;
    }

    .mission-vision-section .mv-card {
        padding: 16px 12px !important;
    }

    .mission-vision-section .mv-icon-circle {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
    }
}

/* ============================================================
UTILITY: Text center on mobile
============================================================ */
@media (max-width: 576px) {
    .text-sm-center {
        text-align: center !important;
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

/* ============================================================
UTILITY: Full width buttons on mobile
============================================================ */
@media (max-width: 576px) {
    .btn-block-mobile {
        width: 100% !important;
        display: block !important;
    }

    .gap-2 {
        gap: 6px !important;
    }
}

/* ============================================================
PAGE HEADER - CENTERED
============================================================ */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.page-header-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.page-header-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
    justify-content: center;
}

.page-header-section .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.page-header-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header-section .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header-section .breadcrumb-item.active {
    color: var(--secondary);
}

.page-header-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-header-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.page-header-title span {
    color: var(--secondary);
    position: relative;
}

.page-header-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.page-header-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.7;
}

/* ============================================================
PAGE HEADER RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
    .page-header-section {
        padding: 60px 0 50px;
    }

    .page-header-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    .page-header-section {
        padding: 50px 0 40px;
    }

    .page-header-title span::after {
        display: none;
    }

    .page-header-subtitle {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .page-header-section {
        padding: 40px 0 30px;
    }

    .page-header-title {
        font-size: 1.8rem;
    }
}

/* ============================================================
IMPACT SECTION
============================================================ */
.impact-section {
    background: var(--white);
    position: relative;
}

.impact-card {
    background: var(--section);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 76, 154, 0.12);
    background: var(--white);
}

.impact-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.impact-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

/* ============================================================
PROCESS SECTION
============================================================ */
.process-section {
    background: var(--section);
    position: relative;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 76, 154, 0.12);
}

.process-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    opacity: 0.6;
    font-family: "Inter", sans-serif;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.process-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
RESPONSIVE - IMPACT & PROCESS
============================================================ */
@media (max-width: 991.98px) {
    .impact-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    .impact-card {
        padding: 24px 16px;
    }

    .impact-number {
        font-size: 2rem;
    }

    .process-card {
        padding: 24px 18px;
    }

    .process-number {
        font-size: 2.4rem;
        top: 8px;
        right: 12px;
    }

    .process-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .impact-number {
        font-size: 1.8rem;
    }

    .impact-label {
        font-size: 0.9rem;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .process-card h5 {
        font-size: 16px;
    }

    .process-card p {
        font-size: 13px;
    }
}

/* ============================================================
TRADE FAIR NAVIGATION
============================================================ */
.trade-fair-nav-section {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.trade-fair-nav-wrapper {
    position: relative;
}

.trade-fair-nav-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.trade-fair-nav-scroll::-webkit-scrollbar {
    height: 4px;
}

.trade-fair-nav-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 10px;
}

.trade-fair-nav-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.trade-fair-nav-btn {
    flex: 0 0 auto;
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trade-fair-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.trade-fair-nav-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(13, 76, 154, 0.25);
}

.trade-fair-nav-btn .nav-year {
    font-weight: 700;
}

.trade-fair-nav-btn .nav-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--secondary);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.trade-fair-nav-btn.active .nav-badge {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
TRADE FAIR CARDS
============================================================ */
.trade-fair-section {
    background: var(--section);
}

.trade-fair-year-group {
    margin-bottom: 50px;
}

.trade-fair-year-group:last-child {
    margin-bottom: 0;
}

.trade-fair-year-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.trade-fair-year-title .year-badge {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.trade-fair-year-title .year-status {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    background: var(--border);
    color: var(--muted);
}

.trade-fair-year-title .year-status.current {
    background: var(--secondary);
    color: var(--white);
}

/* Trade Fair Card */
.trade-fair-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.trade-fair-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 76, 154, 0.12);
}

.trade-fair-header {
    background: var(--primary-light);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 1px solid var(--border);
}

.trade-fair-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trade-fair-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin: 0;
    line-height: 1.3;
}

.trade-fair-body {
    padding: 20px 24px 24px;
}

.trade-fair-location,
.trade-fair-dates,
.trade-fair-approval {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
}

.trade-fair-location:last-child,
.trade-fair-dates:last-child,
.trade-fair-approval:last-child {
    border-bottom: none;
}

.trade-fair-location i,
.trade-fair-dates i,
.trade-fair-approval i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.trade-fair-location span,
.trade-fair-dates span,
.trade-fair-approval span {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.trade-fair-approval i {
    color: var(--success);
}

.trade-fair-approval span {
    color: var(--success);
    font-weight: 500;
}

.trade-fair-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}

.trade-fair-actions .btn {
    font-size: 13px;
    padding: 8px 18px;
}

.trade-fair-actions .btn i {
    margin-right: 6px;
}

/* ============================================================
TRADE FAIR RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
    .trade-fair-nav-section {
        top: 0;
        padding: 16px 0;
    }

    .trade-fair-nav-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .trade-fair-header {
        padding: 16px 20px;
    }

    .trade-fair-title {
        font-size: 16px;
    }

    .trade-fair-body {
        padding: 16px 20px 20px;
    }
}

@media (max-width: 767.98px) {
    .trade-fair-nav-section {
        top: 0;
        padding: 12px 0;
    }

    .trade-fair-nav-btn {
        padding: 6px 14px;
        font-size: 12px;
        gap: 4px;
    }

    .trade-fair-nav-btn .nav-badge {
        font-size: 9px;
        padding: 1px 8px;
    }

    .trade-fair-year-title {
        gap: 10px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .trade-fair-year-title .year-badge {
        font-size: 20px;
    }

    .trade-fair-year-title .year-status {
        font-size: 11px;
        padding: 3px 12px;
    }

    .trade-fair-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .trade-fair-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .trade-fair-title {
        font-size: 15px;
    }

    .trade-fair-body {
        padding: 14px 16px 18px;
    }

    .trade-fair-location span,
    .trade-fair-dates span,
    .trade-fair-approval span {
        font-size: 14px;
    }

    .trade-fair-actions {
        flex-direction: column;
    }

    .trade-fair-actions .btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }

    .trade-fair-year-group {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .trade-fair-nav-section {
        top: 0;
        padding: 10px 0;
    }

    .trade-fair-nav-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    .trade-fair-nav-btn .nav-year {
        font-size: 11px;
    }

    .trade-fair-nav-btn .nav-badge {
        font-size: 8px;
        padding: 1px 6px;
    }
}