:root {
    --brand-navy: #0f172a;
    --brand-primary: #131C36;
    --brand-dark: #0b1120;
    --brand-accent: #2563eb;
    --brand-accent-hover: #1d4ed8;
    --brand-accent-glow: rgba(37, 99, 235, 0.35);
    --bg-light: #f8faff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #131C36 0%, #1e293b 50%, #0f172a 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Glassmorphic Dark Navbar (Matched with Admin Sidebar & Hero Gradient) */
.navbar-custom {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    transition: all 0.3s ease;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.brand-logo-fallback {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.navbar-brand span {
    color: #ffffff !important;
}

.nav-link-custom {
    color: #cbd5e1 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.55rem 1.1rem !important;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link-custom:hover {
    color: #ffffff !important;
}

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

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-custom .navbar-toggler-icon {
    filter: invert(1);
}

.btn-brand-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    border: none;
    box-shadow: 0 4px 14px rgba(19, 28, 54, 0.2);
    transition: all 0.25s ease;
}

.btn-brand-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 28, 54, 0.35);
}

.btn-brand-accent {
    background: var(--gradient-accent);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    border: none;
    box-shadow: 0 4px 14px var(--brand-accent-glow);
    transition: all 0.25s ease;
}

.btn-brand-accent:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0 5rem;
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.28) 0%, transparent 45%), 
                radial-gradient(circle at 85% 75%, rgba(99, 102, 241, 0.22) 0%, transparent 45%),
                linear-gradient(180deg, #0f172a 0%, #131d3b 30%, #183bbd 80%, #0f172a 100%);
    color: #ffffff;
    overflow: hidden;
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pulse-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    color: #ffe066;
    background: linear-gradient(135deg, #ffe066 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin-bottom: 2.25rem;
}

.hero-section .text-dark {
    color: #ffffff !important;
}

.hero-banner-frame {
    position: relative;
    width: 100%;
    text-align: center;
}

.hero-banner-frame img,
.hero-full-img {
    width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.hero-banner-frame img:hover,
.hero-full-img:hover {
    transform: scale(1.025);
}

.hero-feature-pill {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 0.6rem 1.35rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.3s ease;
}

.hero-feature-pill:hover {
    background: rgba(15, 23, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* Stats Bar */
.stats-bar {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 2.25rem 1.75rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 20;
    transition: all 0.3s ease;
}

.stats-bar:hover {
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.04));
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 0.85rem;
    transition: all 0.35s ease;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.stat-card-item:hover .stat-icon-circle {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: scale(1.12) rotate(4deg);
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.stat-card-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.stat-card-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-accent);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.02em;
}

/* Services Cards Grid */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px var(--brand-accent-glow);
}

/* About Section Background - Same Hero Section Radial Gradient Theme */
#about {
    background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.28) 0%, transparent 45%), 
                radial-gradient(circle at 85% 75%, rgba(99, 102, 241, 0.22) 0%, transparent 45%),
                linear-gradient(180deg, #0f172a 0%, #131d3b 30%, #183bbd 80%, #0f172a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#about .section-tag {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.12);
}

#about .section-title {
    color: #ffffff;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 4px solid #2563eb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    border-color: rgba(37, 99, 235, 0.4);
}

.about-card h4 {
    color: #ffffff !important;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
}

.about-card p {
    color: #cbd5e1 !important;
    font-size: 1.025rem;
    line-height: 1.8;
}

.vision-box {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(159, 18, 57, 0.08) 100%);
    border: 1px solid rgba(225, 29, 72, 0.35);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.12);
    position: relative;
}

.vision-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.22) 0%, rgba(159, 18, 57, 0.12) 100%);
    border-color: rgba(225, 29, 72, 0.6);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.25);
}

.vision-box h5,
.vision-box p,
.vision-box span {
    color: #ffe4e6 !important;
}

.mission-box {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(21, 128, 61, 0.08) 100%);
    border: 1px solid rgba(22, 163, 74, 0.35);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.12);
    position: relative;
}

.mission-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.22) 0%, rgba(21, 128, 61, 0.12) 100%);
    border-color: rgba(22, 163, 74, 0.6);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.25);
}

.mission-box h5,
.mission-box p,
.mission-box span {
    color: #dcfce7 !important;
}

/* Gallery Section & Premium Cards */
.gallery-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.section-tag-emerald {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    color: #047857;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
    margin-bottom: 0.6rem;
}

.gallery-tile-card {
    position: relative;
    background: #ffffff;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    height: 100%;
}

.gallery-tile-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
    border-color: #3b82f6;
}

.gallery-tile-inner {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
}

.gallery-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-tile-card:hover .gallery-tile-img {
    transform: scale(1.1) rotate(0.5deg);
}

.gallery-tile-overlay {
    position: absolute;
    inset: 0;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 20%, rgba(15, 23, 42, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.35s ease;
}

.gallery-tile-card:hover .gallery-tile-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 10%, rgba(15, 23, 42, 0.95) 100%);
}

.gallery-zoom-badge {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    opacity: 0.85;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.gallery-tile-card:hover .gallery-zoom-badge {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(37, 99, 235, 0.9);
    border-color: #ffffff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

.gallery-tile-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    word-break: break-word;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Gallery Navigation Arrow Buttons */
.gallery-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
}

.gallery-nav-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* Custom Lightbox Modal Glassmorphism Styling */
#imageLightboxModal {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.75);
}

.custom-lightbox-content {
    background: #0f172a !important;
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65) !important;
    overflow: hidden;
}

.custom-lightbox-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.custom-lightbox-close {
    opacity: 0.8;
    padding: 0.6rem;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.custom-lightbox-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.custom-lightbox-body {
    background-color: #0f172a !important;
}

.lightbox-img-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 8px;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.custom-lightbox-img {
    max-height: 75vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

/* Lightbox Modal Nav Arrow Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 1055;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.modal-nav-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border-color: #60a5fa;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.modal-nav-prev {
    left: 24px;
}

.modal-nav-next {
    right: 24px;
}

.custom-lightbox-desc-box {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Achievements Section & Premium Cards */
.achievements-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.section-tag-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    color: #b45309;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12);
    margin-bottom: 0.6rem;
}

.achievement-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
    border-color: #cbd5e1;
}

.achievement-trophy-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
    border: 2px solid #ffffff;
}

.achievement-media-box {
    position: relative;
    width: 100%;
    height: 230px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.achievement-media-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.achievement-card:hover .achievement-media-box img {
    transform: scale(1.08);
}

.achievement-media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.achievement-card:hover .achievement-media-overlay {
    opacity: 1;
}

.achievement-view-pill {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-view-pill {
    transform: translateY(0);
}

.achievement-body {
    padding: 1.35rem 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.achievement-cat-badge {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    letter-spacing: 0.02em;
}

.achievement-date {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.achievement-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}

.achievement-card:hover .achievement-title {
    color: #2563eb;
}

.achievement-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.1rem;
}

.btn-achievement-action {
    margin-top: auto;
    border-radius: 12px;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.25s ease;
}

.btn-achievement-preview {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-achievement-preview:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-achievement-pdf {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
}

.btn-achievement-pdf:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}


/* Contact & Enquiry Section & Premium Cards */
.contact-section {
    position: relative;
    background: #ffffff;
}

.map-embed-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 12px;
}

.section-tag-indigo {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border: 1px solid #c7d2fe;
    color: #4338ca;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
    margin-bottom: 0.6rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #1e1b4b 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 3rem 2.25rem;
    height: 100%;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.contact-item-row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.85rem;
    padding: 0.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item-row:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.contact-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item-row:hover .contact-icon-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #60a5fa;
}

.enquiry-form-card {
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    padding: 3rem 2.25rem;
    position: relative;
}

.enquiry-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.25rem;
    right: 2.25rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #6366f1, #10b981);
}

.form-label-custom {
    font-weight: 700;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 0.45rem;
}

.form-control-custom {
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    border: 1px solid #cbd5e1;
    font-size: 0.92rem;
    background-color: #f8fafc;
    transition: all 0.25s ease;
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.btn-submit-enquiry {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 2rem;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
}

.btn-submit-enquiry:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

/* Floating WhatsApp Action Widget */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.55);
}

/* Footer */
.footer-custom {
    background-color: var(--brand-navy);
    color: #94a3b8;
    padding: 4.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-link:hover {
    color: #ffffff;
}

/* Floating Scroll To Top Circular Moving Button */
.back-to-top-btn {
    position: fixed;
    bottom: 98px;
    right: 25px;
    z-index: 998;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatBounce 2.5s ease-in-out infinite;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: scale(1.14);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

