/* ==========================================================================
   Home Page Styles
   ========================================================================== */

/* Hero Anniversary Section & Banner */
.hero-anniversary-section {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-color: #002e5b;
}
@media (min-width: 768px) {
    .hero-anniversary-section {
        min-height: 550px;
    }
}
@media (min-width: 1200px) {
    .hero-anniversary-section {
        min-height: 650px;
    }
}
.hero-anniversary-section .banner-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.hero-anniversary-section .banner-slider:not(.slick-initialized) .banner_item {
    display: none;
}
.hero-anniversary-section .banner-slider:not(.slick-initialized) .banner_item:first-child {
    display: block;
    opacity: 1;
    height: 100%;
}
.hero-anniversary-section .banner-slider,
.hero-anniversary-section .banner-slider .slick-list,
.hero-anniversary-section .banner-slider .slick-track,
.hero-anniversary-section .banner-slider .slick-slide,
.hero-anniversary-section .banner-slider .banner_item {
    height: 100%;
}

.hero-anniversary-section .banner-bg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-anniversary-section .banner-bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Visually Hidden Utility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================================
   Container & Grid System (Matches Live Bootstrap 5 sizing & gutters)
   ========================================================================== */
:root {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Utilities (replacing Bootstrap utility dependencies) */
.img-fluid {
    max-width: 100%;
    height: auto;
}
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.text-muted {
    color: #6c757d !important;
}
.text-danger {
    color: #dc3545 !important;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Blog Section & Cards Grid (Self-contained, lightweight) */
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.d-flex {
    display: flex !important;
}
.flex-column {
    flex-direction: column !important;
}
.h-100 {
    height: 100% !important;
}
.w-100 {
    width: 100% !important;
}
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-sm-12, .col-md-6, .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12) !important;
}
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: calc(6px - 1px);
    border-top-right-radius: calc(6px - 1px);
}
.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.card-title {
    margin-bottom: .5rem;
    font-size: 1.15rem;
    font-family: "GilroyBold", sans-serif;
    color: #002e5b;
    line-height: 1.35;
}
.card-text {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    font-family: "GilroyRegular", sans-serif;
}
.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-family: "GilroySemibold", sans-serif;
}
.btn-primary {
    color: #fff !important;
    background-color: #002e5b;
    border-color: #002e5b;
}
.btn-primary:hover {
    color: #fff !important;
    background-color: #FF9202;
    border-color: #FF9202;
}
.btn-outline-primary {
    color: #002e5b;
    border-color: #002e5b;
    background-color: transparent;
    padding: 10px 24px;
    font-size: 1rem;
}
.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #002e5b;
    border-color: #002e5b;
}