:root {
    --primary: #009dc4;
    --accent: #008eed;
    --dark: #1f2d3d;
    --text: #313131;
    --muted-bg: #f3f8fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Hind", sans-serif;
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Hind", sans-serif;
}

a {
    color: var(--accent);
    text-decoration: none;
}

.container {
    width: min(1400px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #dde7ef;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    min-height: 84px;
    padding: 8px 0;
}

.logo-link img {
    height: 64px;
    width: auto;
}

.menu-toggle {
    display: none;
    border: 1px solid #c7d7e5;
    background: #fff;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--dark);
}

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.main-nav li {
    position: relative;
}

.main-nav > ul > li > a {
    display: inline-block;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
}

.main-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid #d9e5f0;
    box-shadow: 0 12px 26px rgba(5, 43, 76, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 20;
}

.main-nav li:hover > ul {
    display: block;
}

.main-nav li ul li {
    width: 100%;
}

.main-nav li ul a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #243849;
}

.main-nav li ul a:hover {
    background: #f2f8fd;
}

.main-nav li ul li ul {
    top: 0;
    left: 100%;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-left: 16px;
    font-size: 13px;
    align-items: center;
}

.icon-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e9f4fb;
    color: #17506f;
}

.icon-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero-slider {
    position: relative;
    height: min(650px, 70vh);
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 34px min(6vw, 68px);
}

.hero-slider .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45));
}

.hero-slider .slide h2 {
    position: relative;
    margin: 0;
    color: #fff;
    font-family: "Hind", sans-serif;
    font-size: clamp(24px, 4vw, 52px);
}

.hero-slider .slide.is-active {
    opacity: 1;
}

.about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 52px 0 32px;
}

.about h3,
.programs h3,
.graduation h3 {
    margin: 0 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    color: var(--primary);
}

.about p {
    font-size: 14px;
    line-height: 1.75;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.programs,
.graduation {
    padding: 12px 0 34px;
    border-top: 1px solid #dde7ef;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.program-card {
    min-height: 210px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.program-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.65));
}

.program-card span,
.program-card small {
    position: relative;
    z-index: 1;
}

.program-card span {
    font-family: "Hind", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.program-card small {
    letter-spacing: 0.8px;
}

.video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.inner-hero {
    background: var(--muted-bg);
    padding: 80px 0;
}

.inner-hero h1 {
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 54px);
    margin: 0 0 12px;
    color: #125f9f;
}

.inner-hero p {
    max-width: 700px;
    margin: 0;
}

.feedback-wrap {
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 157, 196, 0.16), transparent 35%),
        radial-gradient(circle at 88% 10%, rgba(10, 110, 168, 0.14), transparent 30%),
        #f7fbff;
    padding: 56px 0;
}

.contact-wrap {
    background:
        radial-gradient(circle at 85% 14%, rgba(0, 157, 196, 0.14), transparent 28%),
        radial-gradient(circle at 20% 88%, rgba(10, 110, 168, 0.13), transparent 32%),
        #f9fcff;
    padding: 56px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 26px;
    align-items: start;
}

.contact-intro h1 {
    margin: 0 0 10px;
    font-family: "Hind", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    color: #143655;
}

.contact-intro .eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.contact-intro p {
    font-size: 15px;
    line-height: 1.75;
    color: #1d3952;
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-cards article {
    background: #fff;
    border: 1px solid #d9e7f2;
    border-radius: 12px;
    padding: 14px;
    height: 100%;
}

.contact-cards h3 {
    margin: 0 0 6px;
    color: #103f62;
    font-size: 18px;
    font-family: "Hind", sans-serif;
}

.contact-cards p {
    margin: 0;
}

.contact-gallery {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-gallery img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d9e7f2;
}

.map-card,
.payment-card {
    margin-top: 16px;
    background: #fff;
    border: 1px solid #d9e7f2;
    border-radius: 12px;
    padding: 14px;
    height: 100%;
}

.media-payment-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.left-media-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.left-media-stack .contact-gallery,
.left-media-stack .map-card,
.media-payment-grid .payment-card {
    margin-top: 0;
}

.map-card h3,
.payment-card h3 {
    margin: 0 0 10px;
    color: #103f62;
    font-size: 18px;
    font-family: "Hind", sans-serif;
}

.map-card iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 10px;
}

.payment-card p {
    margin: 0 0 8px;
}

.payment-card {
    display: flex;
    flex-direction: column;
}

.paynow-wrap {
    margin-top: 10px;
}

.paynow-wrap img {
    width: 220px;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #d9e7f2;
    background: #fff;
    padding: 6px;
}

.contact-card {
    background: #fff;
    border: 1px solid #d6e4f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(16, 52, 84, 0.08);
}

.contact-card form {
    display: grid;
    gap: 14px;
}

.contact-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #1a3850;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
    width: 100%;
    border: 1px solid #c6d9e8;
    border-radius: 10px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 15px;
    color: #142f45;
    background: #fff;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
    outline: 0;
    border-color: #0a8fcb;
    box-shadow: 0 0 0 3px rgba(10, 143, 203, 0.15);
}

.contact-card small {
    display: block;
    margin-top: 6px;
    color: #b30f0f;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.feedback-intro h1 {
    margin: 0 0 10px;
    font-family: "Hind", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    color: #143655;
}

.feedback-intro .eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.feedback-intro p,
.feedback-intro li {
    font-size: 15px;
    line-height: 1.75;
    color: #1d3952;
}

.feedback-intro ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.feedback-card {
    background: #fff;
    border: 1px solid #d6e4f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(16, 52, 84, 0.08);
}

.form-success {
    margin-bottom: 14px;
    background: #e9fff4;
    color: #14603b;
    border: 1px solid #a5e0bf;
    border-radius: 8px;
    padding: 10px 12px;
}

.form-errors {
    margin-bottom: 14px;
    background: #fff1f1;
    color: #7b1f1f;
    border: 1px solid #f3b5b5;
    border-radius: 8px;
    padding: 10px 12px;
}

.form-errors p {
    margin: 0;
}

.feedback-card form {
    display: grid;
    gap: 14px;
}

.feedback-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #1a3850;
}

.feedback-card input,
.feedback-card textarea {
    width: 100%;
    border: 1px solid #c6d9e8;
    border-radius: 10px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 15px;
    color: #142f45;
    background: #fff;
}

.feedback-card input:focus,
.feedback-card textarea:focus {
    outline: 0;
    border-color: #0a8fcb;
    box-shadow: 0 0 0 3px rgba(10, 143, 203, 0.15);
}

.feedback-card small {
    display: block;
    margin-top: 6px;
    color: #b30f0f;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.submit-btn {
    border: 0;
    border-radius: 11px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0a9aca, #0a6ea8);
    cursor: pointer;
}

.registration-header {
    max-width: 760px;
    margin-bottom: 30px;
}

.registration-header h1 {
    margin-bottom: 12px;
    font-family: "Hind", sans-serif;
}

.registration-header p {
    margin: 0;
    color: #4a5b6e;
    line-height: 1.7;
}

.registration-form {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 16px 38px rgba(17, 65, 100, 0.08);
    max-width: 840px;
}

.registration-form .form-row {
    margin-bottom: 18px;
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    color: #1f2a37;
    font-weight: 600;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form select,
.registration-form input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d5dce6;
    border-radius: 12px;
    background: #fafbfc;
    color: #0f1f2d;
    font-size: 15px;
}

.registration-form input[type="file"] {
    padding: 10px 12px;
}

.registration-form .field-help {
    margin: 8px 0 0;
    color: #5b6b7d;
    font-size: 13px;
}

.registration-form .form-actions {
    margin-top: 24px;
    text-align: right;
}

.alert {
    margin-bottom: 32px;
}

.page-heading h1 {
    margin: 0 0 10px;
    font-family: "Hind", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--primary);
}

.page-heading .subheading {
    margin: 0;
    color: #4a5b6e;
    max-width: 760px;
    line-height: 1.75;
}

.certificate-verification .verification-card {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 18px;
    padding: 24px;
    max-width: 720px;
    box-shadow: 0 18px 40px rgba(17, 65, 100, 0.08);
}

.certificate-verification .verification-card p {
    margin: 0 0 16px;
    color: #33475b;
}

.certificate-verification .verification-card ul {
    margin: 0;
    padding-left: 18px;
    color: #33475b;
}

.certificate-verification .verification-card ul li {
    margin-bottom: 12px;
}

.alert {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.alert.success {
    background: #effaf4;
    border: 1px solid #a7dfbc;
    color: #125d38;
}

.alert.error {
    background: #fff2f2;
    border: 1px solid #f1c2c2;
    color: #8f2323;
}

form {
    display: grid;
    gap: 18px;
    max-width: 720px;
}

label {
    display: block;
    font-weight: 700;
    color: #1f3550;
}

input[type="text"],
input[type="file"],
textarea {
    width: 100%;
    border: 1px solid #c6d9e8;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #1f3853;
    background: #fff;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, #0a9aca, #0a6ea8);
}

.button.secondary {
    color: #0b5d88;
    background: #f4f8fb;
    border-color: #d8e5ef;
}

.image-gallery {
    display: grid;
    gap: 22px;
}

.image-card {
    border: 1px solid #d9e7f2;
    border-radius: 18px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 18px 38px rgba(21, 55, 89, 0.06);
}

.image-card figcaption {
    margin: 0 0 12px;
    color: #163c5d;
}

.notice,
.breadcrumb {
    color: #4b5f74;
    line-height: 1.7;
}

.testimonials-wrap {
    padding: 60px 0;
}

.testimonials-wrap .page-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.testimonials-wrap .page-heading h1 {
    margin-bottom: 14px;
    font-size: clamp(32px, 4vw, 52px);
}

.testimonials-wrap .page-heading p {
    margin: 0;
    max-width: 700px;
    color: #3f5366;
    line-height: 1.8;
}

.testimonial-list {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #d8e6ef;
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(16, 57, 89, 0.07);
    padding: 32px;
}

.testimonial-card blockquote {
    position: relative;
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.85;
    color: #223647;
    padding-left: 28px;
}

.testimonial-card blockquote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 54px;
    color: #0a78b9;
    font-family: serif;
    line-height: 1;
}

.testimonial-card footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: #1f3b56;
    font-weight: 700;
}

.testimonial-card footer span {
    font-weight: 400;
    color: #5f768f;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
}

.site-footer {
    margin-top: 60px;
    background:
        radial-gradient(circle at top left, rgba(0, 157, 196, 0.18), transparent 34%),
        linear-gradient(135deg, #183246 0%, #102433 100%);
    color: #ffffff;
    padding-top: 44px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.site-footer .footer-section {
    min-width: 0;
}

.site-footer .footer-brand {
    padding-right: 12px;
}

.site-footer .footer-logo {
    display: block;
    width: min(190px, 100%);
    height: auto;
    margin-bottom: 18px;
}

.site-footer .footer-copy,
.site-footer .footer-meta p,
.site-footer .footer-section p,
.site-footer .footer-section a,
.site-footer .footer-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

.site-footer .footer-copy {
    max-width: 30ch;
    margin-bottom: 14px;
}

.site-footer .footer-meta {
    display: grid;
    gap: 4px;
}

.site-footer .footer-section h4 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-footer .footer-section a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
    opacity: 1;
}

.site-footer .footer-address {
    font-style: normal;
}

.site-footer .social-links {
    display: flex;
    gap: 12px;
    margin: 0;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer .social-links a:hover {
    transform: translateY(-2px);
    background: rgba(0, 157, 196, 0.24);
    border-color: rgba(0, 157, 196, 0.6);
}

.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 22px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

@media (max-width: 980px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 36px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer .footer-brand {
        padding-right: 0;
    }

    .footer-bottom {
        margin-top: 24px;
    }
}
}

.site-footer {
    margin-top: 60px;
    background:
        radial-gradient(circle at top left, rgba(0, 157, 196, 0.18), transparent 34%),
        linear-gradient(135deg, #183246 0%, #102433 100%);
    color: #ffffff;
    padding-top: 44px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.site-footer .footer-section {
    min-width: 0;
}

.site-footer .footer-brand {
    padding-right: 12px;
}

.site-footer .footer-logo {
    display: block;
    width: min(190px, 100%);
    height: auto;
    margin-bottom: 18px;
}

.site-footer .footer-copy,
.site-footer .footer-meta p,
.site-footer .footer-section p,
.site-footer .footer-section a,
.site-footer .footer-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

.site-footer .footer-copy {
    max-width: 30ch;
    margin-bottom: 14px;
}

.site-footer .footer-meta {
    display: grid;
    gap: 4px;
}

.site-footer .footer-section h4 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-footer .footer-section a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
    opacity: 1;
}

.site-footer .footer-address {
    font-style: normal;
}

.site-footer .social-links {
    display: flex;
    gap: 12px;
    margin: 0;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer .social-links a:hover {
    transform: translateY(-2px);
    background: rgba(0, 157, 196, 0.24);
    border-color: rgba(0, 157, 196, 0.6);
}

.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 22px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

@media (max-width: 980px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 36px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer .footer-brand {
        padding-right: 0;
    }

    .footer-bottom {
        margin-top: 24px;
    }
}
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
}

.site-footer {
    margin-top: 60px;
    background:
        radial-gradient(circle at top left, rgba(0, 157, 196, 0.18), transparent 34%),
        linear-gradient(135deg, #183246 0%, #102433 100%);
    color: #ffffff;
    padding-top: 44px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.site-footer .footer-section {
    min-width: 0;
}

.site-footer .footer-brand {
    padding-right: 12px;
}

.site-footer .footer-logo {
    display: block;
    width: min(190px, 100%);
    height: auto;
    margin-bottom: 18px;
}

.site-footer .footer-copy,
.site-footer .footer-meta p,
.site-footer .footer-section p,
.site-footer .footer-section a,
.site-footer .footer-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

.site-footer .footer-copy {
    max-width: 30ch;
    margin-bottom: 14px;
}

.site-footer .footer-meta {
    display: grid;
    gap: 4px;
}

.site-footer .footer-section h4 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-footer .footer-section a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
    opacity: 1;
}

.site-footer .footer-address {
    font-style: normal;
}

.site-footer .social-links {
    display: flex;
    gap: 12px;
    margin: 0;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer .social-links a:hover {
    transform: translateY(-2px);
    background: rgba(0, 157, 196, 0.24);
    border-color: rgba(0, 157, 196, 0.6);
}

.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 22px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

@media (max-width: 980px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 36px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer .footer-brand {
        padding-right: 0;
    }

    .footer-bottom {
        margin-top: 24px;
    }
}
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #0a6ea8;
    font-weight: 700;
}

.global-gallery-head h2 {
    margin: 8px 0 16px;
    font-family: "Hind", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #133b58;
}

.global-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e5f2;
    background: #fff;
    min-height: 250px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 300px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover figcaption {
    opacity: 1;
}

.site-footer {
    margin-top: 60px;
    background: #1f2d3d;
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.site-footer .footer-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: #d1d1d1;
    margin: 5px 0;
    text-decoration: none;
}

.site-footer .footer-section a:hover {
    color: #ffffff;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.site-footer .social-links a:hover {
    color: #009dc4;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #3a4a5a;
    margin-top: 20px;
    font-size: 12px;
    color: #d1d1d1;
}

@media (min-width: 768px) {
    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 36px 38px;
    }
}

    overflow: hidden;
}

.image-card img {

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.image-card figcaption {
    font-size: 15px;
    font-weight: 700;
}

.notice {
    background: #f7fbff;
    border: 1px solid #d2e5f6;
    border-radius: 14px;
    padding: 18px;
}

.breadcrumb a {
    color: var(--accent);
}

.help-text {
    margin: 0;
    font-size: 13px;
    color: #6b7d8f;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.submit-btn:hover {
    filter: brightness(1.05);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.global-gallery-wrap {
    padding: 36px 0 18px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.global-gallery-head .eyebrow {
