/* ==========================================================================
   Jump Bilingual Kindergarten - Custom Overrides
   Custom additions on top of Kidso template
   ========================================================================== */

/* ----------------- HEADER ----------------- */

/* Top spacing above the menu bar */
.header-three .menu-area {
    margin-top: 30px !important;
    padding-top: 0 !important;
}

/* Sky-blue strip behind the top gap so it doesn't look "stuck"
   (matches the slider/breadcrumb area below) */
.header-three {
    background: #f7f9ff;
    padding-top: 0;
}

/* Logo padding so it doesn't stick to the white box edges.
   Keep original logo size, just breathe a bit. */
.header-three .logo {
    padding: 12px 16px;
}

/* Prevent menu items from wrapping to second line:
   tighter spacing, font stays 16px. */
.header-three .main-menu nav ul {
    white-space: nowrap;
}

.header-three .main-menu ul li {
    margin-left: 14px !important;
}

.header-three .main-menu ul li:first-child {
    margin-left: 0 !important;
}

.header-three .main-menu ul li a {
    font-size: 16px !important;
}

/* German pages: tighter spacing - "JETZT ANMELDEN" button is wider than EN */
html[lang="de"] .header-three .main-menu ul li {
    margin-left: 10px !important;
}

/* German "Jetzt anmelden" button - smaller padding */
html[lang="de"] .second-header-btn .btn {
    padding: 14px 22px !important;
    font-size: 14px !important;
}

/* Give nav more horizontal room (reduce logo + button column widths) */
@media (min-width: 1200px) {
    .header-three .second-menu .col-xl-2 {
        flex: 0 0 14%;
        max-width: 14%;
    }
    .header-three .second-menu .col-xl-7 {
        flex: 0 0 64%;
        max-width: 64%;
    }
    .header-three .second-menu .col-xl-3 {
        flex: 0 0 22%;
        max-width: 22%;
    }
}

/* ----------------- HERO / SLIDER ----------------- */

/* Slider headline - smaller so long text doesn't overlap parallax shapes */
.slider-content h2 {
    font-size: 58px !important;
    line-height: 1.15 !important;
    margin-bottom: 30px !important;
}

@media (max-width: 991px) {
    .slider-content h2 {
        font-size: 44px !important;
    }
}

@media (max-width: 575px) {
    .slider-content h2 {
        font-size: 34px !important;
    }
}

/* Contact CTA section - shrink the megaphone child image and align it right */
.contact-area .col-lg-6 > img {
    max-height: 720px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: 0;
}

/* ----------------- FOOTER ----------------- */

footer.footer-bg {
    background: #f7f9ff !important;
    position: relative;
    z-index: 3;
}

/* Footer-top: hills + grass-flowers as layered background.
   Content sits at the top, hills + grass fill the bottom. */
footer.footer-bg .footer-top {
    background-image:
        url('../assets/images/grass-flowers.png'),
        url('../assets/images/Zmin.png') !important;
    background-repeat: repeat-x, repeat-x !important;
    background-position: bottom center, bottom center !important;
    background-size: auto 90px, auto 340px !important;
    background-color: #f7f9ff !important;
    padding-bottom: 100px !important; /* content sits lower, overlapping hill */
    position: relative;
}

/* Footer text colors - dark on light background */
footer.footer-bg .footer-widget h2,
footer.footer-bg .f-widget-title h2 {
    color: #2B3E50 !important;
}

footer.footer-bg .footer-text p,
footer.footer-bg .footer-link ul li a,
footer.footer-bg .f-contact ul li,
footer.footer-bg .f-contact ul li a,
footer.footer-bg .f-contact ul li span {
    color: #4a5d72 !important;
}

footer.footer-bg .footer-link ul li a:hover,
footer.footer-bg .f-contact ul li a:hover {
    color: #fe4b7b !important;
}

/* Contact icons stay white inside pink circles */
footer.footer-bg .f-contact ul li i.icon {
    color: #fff !important;
    background: #fe4b7b !important;
}

/* Social icons */
footer.footer-bg .footer-social a {
    color: #fff !important;
    background: #fe4b7b !important;
}

footer.footer-bg .footer-social a:hover {
    background: #12265a !important;
}

/* ===== FUNCTIONAL ROOMS — rounded image corners ===== */
/* Round the image itself (house.html has no .class-img-outer wrapper) */
.class-area .class-item .class-img a,
.class-area .class-item .class-img img,
.class-area .class-item .class-img-outer {
    border-radius: 16px;
    overflow: hidden;
}

.class-area .class-item .class-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* Match the content card radius to the image */
.class-area .class-item .class-content {
    border-radius: 16px;
}

/* ===== DAILY ROUTINE (steps-area on navy bg) ===== */
.steps-area .section-title span {
    color: #fe4b7b;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.steps-area .steps-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 50px 25px 30px;
    position: relative;
    margin-top: 35px;
    transition: transform .25s ease, background .25s ease;
}

.steps-area .steps-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.10);
}

.steps-area .steps-item .step-number {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: #fe4b7b;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 20px rgba(254, 75, 123, 0.35);
}

.steps-area .steps-item h4 {
    color: #fff;
    font-size: 24px;
    margin: 10px 0 6px;
}

.steps-area .steps-item h5 {
    color: #fe4b7b;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.steps-area .steps-item p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== LEARNING AREAS — icon cards grid ===== */
.learning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 575px) {
    .learning-grid {
        grid-template-columns: 1fr;
    }
}

.learning-grid .learn-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(18, 38, 90, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.learning-grid .learn-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(18, 38, 90, 0.12);
}

.learning-grid .learn-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 12px;
    font-size: 20px;
}

.learn-icon-blue   { background: #e7eaf3; color: #12265a; }
.learn-icon-pink   { background: #fde7ef; color: #fe4b7b; }
.learn-icon-orange { background: #fff4e0; color: #f5a623; }
.learn-icon-purple { background: #f3e8fb; color: #9b59ce; }
.learn-icon-green  { background: #e8f5e9; color: #4caf50; }
.learn-icon-teal   { background: #e0f7fa; color: #00bcd4; }

.learning-grid .learn-text h4 {
    font-size: 16px;
    margin: 0 0 4px;
    color: #12265a;
    line-height: 1.3;
}

.learning-grid .learn-text p {
    font-size: 13px;
    color: #6b7494;
    margin: 0;
    line-height: 1.5;
}

/* Learning Areas — decorative image frame */
.learn-img-wrap {
    position: relative;
    padding: 30px 30px 30px 0;
    margin-left: -10px;
}

.learn-img-frame {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 38, 90, 0.18);
    transform: rotate(-1.5deg);
    transition: transform .4s ease;
}

.learn-img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.learn-img-wrap:hover .learn-img-frame {
    transform: rotate(0deg);
}

/* Pink offset block behind the image */
.learn-img-shape {
    position: absolute;
    top: 50px;
    right: 0;
    width: 78%;
    height: 80%;
    background: #fde7ef;
    border-radius: 24px;
    z-index: 1;
}

/* Dotted pattern accent */
.learn-img-dots {
    position: absolute;
    top: 0;
    right: 18px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(#12265a 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.35;
    z-index: 1;
}

/* Floating sparkle badge */
.learn-img-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    width: 78px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    border-radius: 50%;
    background: #fe4b7b;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(254, 75, 123, 0.45);
    z-index: 3;
    animation: learn-bounce 3s ease-in-out infinite;
}

@keyframes learn-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    .learn-img-wrap { margin-bottom: 50px; }
}

/* ===== ACTIVITIES — clubs grid + blob image ===== */
.clubs-heading {
    color: #12265a;
    position: relative;
    display: inline-block;
}

.clubs-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #fe4b7b;
    border-radius: 2px;
    margin-top: 8px;
}

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

.clubs-grid .club-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 26px 14px;
    border-radius: 18px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: default;
}

.clubs-grid .club-tile i {
    font-size: 32px;
}

.clubs-grid .club-tile:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0 14px 28px rgba(18, 38, 90, 0.18);
}

.club-purple { background: linear-gradient(135deg, #b07ddb, #9b59ce); }
.club-pink   { background: linear-gradient(135deg, #ff7aa2, #fe4b7b); }
.club-teal   { background: linear-gradient(135deg, #4dd9e8, #00bcd4); }
.club-green  { background: linear-gradient(135deg, #7ed387, #4caf50); }

/* Activity image — organic blob frame */
.activity-img-wrap {
    position: relative;
    padding: 30px;
}

.activity-img-blob {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    box-shadow: 0 20px 45px rgba(18, 38, 90, 0.18);
    transform: rotate(2deg);
    transition: border-radius .8s ease, transform .4s ease;
}

.activity-img-wrap:hover .activity-img-blob {
    border-radius: 45% 55% 40% 60% / 60% 50% 50% 40%;
    transform: rotate(0deg);
}

.activity-img-blob img {
    width: 100%;
    height: auto;
    display: block;
}

/* Yellow circle behind */
.activity-img-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ffe082;
    z-index: 1;
}

/* Zigzag scribble accent */
.activity-img-zigzag {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 80px;
    height: 30px;
    background: repeating-linear-gradient(
        -45deg,
        #fe4b7b 0,
        #fe4b7b 4px,
        transparent 4px,
        transparent 10px
    );
    transform: rotate(-8deg);
    opacity: 0.6;
    z-index: 1;
    border-radius: 4px;
}

/* Yellow star badge */
.activity-img-star {
    position: absolute;
    top: 40px;
    right: -10px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: #ffd54f;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    z-index: 3;
    animation: activity-spin 8s linear infinite;
}

@keyframes activity-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .activity-img-wrap { margin-top: 50px; }
}

/* ===== ENROLLMENT — How It Works steps ===== */
.enroll-steps {
    background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
    position: relative;
}

.enroll-steps::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(254, 75, 123, 0.06) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(18, 38, 90, 0.05) 0, transparent 40%);
    pointer-events: none;
}

.enroll-steps .container {
    position: relative;
    z-index: 1;
}

.enroll-eyebrow {
    display: inline-block;
    color: #fe4b7b;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.enroll-title {
    color: #12265a;
    margin-bottom: 14px;
}

.enroll-sub {
    color: #6b7494;
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.enroll-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

/* Dashed connector line behind icons */
.enroll-line {
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 0;
    border-top: 3px dashed #fe4b7b;
    opacity: 0.4;
    z-index: 0;
}

.enroll-step {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 80px 30px 35px;
    box-shadow: 0 10px 30px rgba(18, 38, 90, 0.08);
    position: relative;
    z-index: 1;
    transition: transform .3s ease, box-shadow .3s ease;
}

.enroll-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(18, 38, 90, 0.15);
}

.enroll-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7aa2, #fe4b7b);
    color: #fff;
    font-size: 36px;
    box-shadow: 0 12px 28px rgba(254, 75, 123, 0.4);
}

.enroll-step:nth-child(3) .enroll-icon {
    background: linear-gradient(135deg, #4a6cd4, #12265a);
    box-shadow: 0 12px 28px rgba(18, 38, 90, 0.35);
}

.enroll-step:nth-child(4) .enroll-icon {
    background: linear-gradient(135deg, #ffd54f, #f5a623);
    box-shadow: 0 12px 28px rgba(245, 166, 35, 0.4);
}

.enroll-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #12265a;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.enroll-step h4 {
    color: #12265a;
    font-size: 22px;
    margin-bottom: 12px;
}

.enroll-step p {
    color: #6b7494;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .enroll-timeline { grid-template-columns: 1fr; gap: 50px; }
    .enroll-line { display: none; }
}

/* ===== ENROLLMENT FORM CARD ===== */
.enroll-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(18, 38, 90, 0.10);
    position: relative;
    overflow: hidden;
}

.enroll-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fe4b7b, #ffd54f, #4caf50, #4a6cd4);
}

.form-section-title {
    color: #12265a;
    font-size: 22px;
    margin-bottom: 22px;
    padding-left: 14px;
    border-left: 4px solid #fe4b7b;
    line-height: 1;
}

.form-section-title i {
    color: #fe4b7b;
    margin-right: 10px;
}

.enrollment-form .form-field {
    position: relative;
}

.enrollment-form .form-field-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b8d4;
    font-size: 16px;
    pointer-events: none;
    transition: color .25s ease;
}

.enrollment-form .form-field-with-label .form-field-icon {
    top: calc(50% + 13px);
}

.enrollment-form .form-field-textarea .form-field-icon {
    top: 22px;
    transform: none;
}

.enrollment-form .form-field input[type="text"],
.enrollment-form .form-field input[type="email"],
.enrollment-form .form-field input[type="tel"],
.enrollment-form .form-field input[type="date"],
.enrollment-form .form-field textarea {
    width: 100%;
    border: 2px solid #e6e9f4;
    border-radius: 12px;
    padding: 14px 18px 14px 48px;
    background: #f8f9ff;
    color: #12265a;
    font-size: 15px;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.enrollment-form .form-field textarea {
    padding-top: 16px;
    resize: vertical;
    min-height: 130px;
}

.enrollment-form .form-field input::placeholder,
.enrollment-form .form-field textarea::placeholder {
    color: #9ca5c4;
}

.enrollment-form .form-field input:focus,
.enrollment-form .form-field textarea:focus {
    outline: none;
    border-color: #fe4b7b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(254, 75, 123, 0.12);
}

.enrollment-form .form-field input:focus + .form-field-icon,
.enrollment-form .form-field:focus-within .form-field-icon {
    color: #fe4b7b;
}

.enrollment-form .form-field-with-label label {
    display: block;
    color: #12265a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.enroll-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7aa2, #fe4b7b);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(254, 75, 123, 0.4);
    transition: transform .25s ease, box-shadow .25s ease;
}

.enroll-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(254, 75, 123, 0.5);
    color: #fff;
}

.enroll-submit-btn i {
    font-size: 18px;
}

.form-disclaimer {
    color: #9ca5c4;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 575px) {
    .enroll-form-card { padding: 35px 22px; }
}

/* ===== ENROLLMENT CTA — image + content split ===== */
.enroll-cta {
    background: linear-gradient(135deg, #12265a 0%, #1d3a82 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.enroll-cta-shape {
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 75, 123, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.enroll-cta-img {
    position: relative;
    padding: 20px;
}

.enroll-cta-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: transform .4s ease;
    position: relative;
    z-index: 2;
}

.enroll-cta-img:hover img {
    transform: rotate(0deg);
}

.enroll-cta-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
}

.enroll-cta-emoji {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: #ffd54f;
    font-size: 38px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: enroll-bounce 2.5s ease-in-out infinite;
}

@keyframes enroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.enroll-cta-content {
    color: #fff;
    padding-left: 30px;
}

.enroll-cta-eyebrow {
    display: inline-block;
    color: #ffd54f;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
}

.enroll-cta-content h2 {
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.enroll-cta-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.enroll-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.enroll-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7aa2, #fe4b7b);
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(254, 75, 123, 0.45);
    transition: transform .25s ease, box-shadow .25s ease;
}

.enroll-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(254, 75, 123, 0.55);
    color: #fff !important;
}

.enroll-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.enroll-cta-phone i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffd54f;
}

.enroll-cta-phone:hover { color: #ffd54f; }

@media (max-width: 991px) {
    .enroll-cta-content { padding-left: 0; text-align: center; }
    .enroll-cta-actions { justify-content: center; }
}

/* ===== CAREER — Apply CTA (light variant) ===== */
.career-cta {
    background: linear-gradient(135deg, #f7f9ff 0%, #ffeef4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.career-cta-shape {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 75, 123, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.career-cta-img {
    position: relative;
    padding: 20px;
}

.career-cta-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(18, 38, 90, 0.18);
    transform: rotate(2deg);
    transition: transform .4s ease;
    position: relative;
    z-index: 2;
}

.career-cta-img:hover img {
    transform: rotate(0deg);
}

.career-cta-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(#12265a 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.25;
    z-index: 1;
}

.career-cta-emoji {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    font-size: 38px;
    box-shadow: 0 10px 24px rgba(18, 38, 90, 0.2);
    z-index: 3;
    animation: career-float 3s ease-in-out infinite;
}

@keyframes career-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-10px) rotate(5deg); }
}

.career-cta-content {
    color: #12265a;
    padding-left: 30px;
}

.career-cta-eyebrow {
    display: inline-block;
    color: #fe4b7b;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
}

.career-cta-content h2 {
    color: #12265a;
    margin-bottom: 18px;
    line-height: 1.2;
}

.career-cta-content p {
    color: #6b7494;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.career-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.career-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7aa2, #fe4b7b);
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(254, 75, 123, 0.45);
    transition: transform .25s ease, box-shadow .25s ease;
    word-break: break-all;
}

.career-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(254, 75, 123, 0.55);
    color: #fff !important;
}

.career-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #12265a;
    font-weight: 500;
    font-size: 15px;
}

.career-cta-phone i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(254, 75, 123, 0.12);
    color: #fe4b7b;
}

.career-cta-phone:hover { color: #fe4b7b; }

@media (max-width: 991px) {
    .career-cta-content { padding-left: 0; text-align: center; }
    .career-cta-actions { justify-content: center; }
}

/* ===== CAREER — Requirements paths ===== */
.req-intro {
    color: #6b7494;
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 50px;
}

.req-paths {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
}

.req-card {
    background: #fff;
    border-radius: 22px;
    padding: 50px 35px 35px;
    box-shadow: 0 14px 40px rgba(18, 38, 90, 0.08);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.req-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(18, 38, 90, 0.15);
}

.req-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: linear-gradient(135deg, #4a6cd4, #12265a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 14px rgba(18, 38, 90, 0.25);
}

.req-badge-pink {
    background: linear-gradient(135deg, #ff7aa2, #fe4b7b);
    box-shadow: 0 6px 14px rgba(254, 75, 123, 0.3);
}

.req-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 22px;
    font-size: 36px;
    margin-bottom: 24px;
}

.req-icon-blue {
    background: #e7eaf7;
    color: #4a6cd4;
}

.req-icon-pink {
    background: #fde7ef;
    color: #fe4b7b;
}

.req-card h4 {
    color: #12265a;
    font-size: 22px;
    margin-bottom: 12px;
}

.req-card > p {
    color: #6b7494;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.req-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px dashed #e6e9f4;
    color: #12265a;
    font-size: 14px;
    font-weight: 500;
}

.req-list li:first-child { border-top: 0; }

.req-list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: #4caf50;
    color: #fff;
    font-size: 11px;
    margin-top: 2px;
}

.req-card:nth-child(3) .req-list li i {
    background: #fe4b7b;
}

.req-or {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.req-or::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, #d6dcec 30%, #d6dcec 70%, transparent);
}

.req-or span {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fe4b7b;
    color: #fe4b7b;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(254, 75, 123, 0.18);
}

.req-note {
    margin-top: 50px;
    padding: 20px 28px;
    background: #fff;
    border-radius: 14px;
    border-left: 4px solid #fe4b7b;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #12265a;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(18, 38, 90, 0.06);
}

.req-note i {
    color: #fe4b7b;
    font-size: 22px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .req-paths { grid-template-columns: 1fr; gap: 20px; }
    .req-or { padding: 10px 0; }
    .req-or::before { left: 0; right: 0; top: 50%; bottom: auto; transform: translateY(-50%); width: 100%; height: 2px; background: linear-gradient(to right, transparent, #d6dcec 30%, #d6dcec 70%, transparent); }
}

/* ===== CAREER — Job Position hero ===== */
.job-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(254, 75, 123, 0.12);
    color: #fe4b7b;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.job-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fe4b7b;
    box-shadow: 0 0 0 0 rgba(254, 75, 123, 0.7);
    animation: job-pulse 1.8s infinite;
}

@keyframes job-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(254, 75, 123, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(254, 75, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(254, 75, 123, 0); }
}

.job-title {
    color: #12265a;
    margin-bottom: 30px;
    line-height: 1.15;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e6e9f4;
    color: #12265a;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(18, 38, 90, 0.05);
}

.job-meta-item i {
    color: #fe4b7b;
    font-size: 15px;
}

/* Job hero image */
.job-img-wrap {
    position: relative;
    padding: 24px;
}

.job-img-frame {
    position: relative;
    z-index: 2;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(18, 38, 90, 0.18);
    transform: rotate(1.5deg);
    transition: transform .4s ease;
}

.job-img-wrap:hover .job-img-frame {
    transform: rotate(0deg);
}

.job-img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.job-img-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 75%;
    background: linear-gradient(135deg, #ffe9ef, #fde7ef);
    border-radius: 22px;
    z-index: 1;
}

.job-img-tape {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 110px;
    height: 22px;
    background: rgba(254, 75, 123, 0.35);
    border-radius: 3px;
    z-index: 4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.job-img-chip {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    color: #12265a;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 8px 22px rgba(18, 38, 90, 0.18);
    z-index: 3;
}

.job-img-chip i {
    color: #fe4b7b;
}

/* Job content right column */
.job-content {
    padding-left: 30px;
}

.job-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #12265a;
    font-weight: 500;
    margin-bottom: 18px;
    border-left: 4px solid #fe4b7b;
    padding-left: 18px;
}

.job-content > p {
    color: #6b7494;
    line-height: 1.75;
    margin-bottom: 28px;
}

.job-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.job-btn-primary,
.job-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.job-btn-primary {
    background: linear-gradient(135deg, #ff7aa2, #fe4b7b);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(254, 75, 123, 0.4);
}

.job-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(254, 75, 123, 0.55);
    color: #fff !important;
}

.job-btn-outline {
    background: #fff;
    color: #12265a !important;
    border: 2px solid #e6e9f4;
}

.job-btn-outline:hover {
    border-color: #fe4b7b;
    color: #fe4b7b !important;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .job-content { padding-left: 0; text-align: center; }
    .job-lead { border-left: 0; border-top: 4px solid #fe4b7b; padding-left: 0; padding-top: 14px; }
    .job-actions { justify-content: center; }
}

/* ===== CONTACT — Info cards ===== */
.contact-info-area {
    background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
    position: relative;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 14px 40px rgba(18, 38, 90, 0.08);
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: left;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(18, 38, 90, 0.15);
}

.info-card-icon {
    width: 68px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    border-radius: 18px;
    font-size: 30px;
    margin-bottom: 22px;
}

.info-icon-pink   { background: #fde7ef; color: #fe4b7b; }
.info-icon-blue   { background: #e7eaf7; color: #4a6cd4; }
.info-icon-yellow { background: #fff4d4; color: #f5a623; }

.info-card-label {
    display: block;
    color: #fe4b7b;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 6px;
}

.info-card h4 {
    color: #12265a;
    font-size: 22px;
    margin-bottom: 12px;
}

.info-card > p {
    color: #6b7494;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-card > p a {
    color: #12265a;
    transition: color .2s ease;
}

.info-card > p a:hover {
    color: #fe4b7b;
}

.info-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4caf50;
    font-weight: 600;
    font-size: 13px;
}

.info-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: info-pulse 1.8s infinite;
}

@keyframes info-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe4b7b;
    font-weight: 600;
    font-size: 14px;
    transition: gap .25s ease;
}

.info-card-link:hover {
    color: #fe4b7b;
    gap: 14px;
}

.info-card-link-static {
    color: #6b7494;
    font-weight: 500;
}

.info-card-link-static:hover {
    color: #6b7494;
    gap: 8px;
}

/* ===== CONTACT — Map wrap ===== */
.map-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(18, 38, 90, 0.15);
    border: 6px solid #fff;
}

.map-wrap iframe {
    display: block;
    border: 0;
}

.map-pin {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background: #fe4b7b;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(254, 75, 123, 0.45);
    pointer-events: none;
    animation: map-bob 2.5s ease-in-out infinite;
}

@keyframes map-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* ===== GALLERY — uniform grid ===== */
.gallery-area {
    background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 575px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-grid .gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(18, 38, 90, 0.10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(18, 38, 90, 0.20);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-grid .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 38, 90, 0.55) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 1;
}

.gallery-grid .gallery-item:hover::before {
    opacity: 1;
}

.gallery-zoom {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #fe4b7b;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    transition: opacity .35s ease, transform .35s ease;
}

.gallery-grid .gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== STICKY HEADER on scroll ===== */
/* Override template's "position: relative !important" so the JS-toggled
   .sticky-menu class fixes the menu to the top after 200px scroll.
   The outer wrapper stays transparent — the inner Bootstrap .container
   keeps its rounded-card look so the menu floats as a centered pill,
   not as an edge-to-edge bar. */
.menu-area.sticky-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    box-shadow: none;
    padding-top: 12px;
    padding-bottom: 0;
    margin-top: 0 !important;
    animation: stickyDown .35s ease forwards;
}

/* Inner card: solid bg + prominent shadow when floating */
.menu-area.sticky-menu .container {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(18, 38, 90, 0.15);
    padding: 4px 20px !important;
}

/* Trim spacing so the sticky bar is compact */
.menu-area.sticky-menu .second-menu .row {
    align-items: center;
}

.menu-area.sticky-menu .logo {
    padding: 6px 16px !important;
}

.menu-area.sticky-menu .col-xl-3.mt-30,
.menu-area.sticky-menu .col-xl-3.mb-30 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@keyframes stickyDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

/* Copyright bar */
footer.footer-bg .copyright-wrap {
    background: #fff !important;
    color: #4a5d72 !important;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 4;
}

footer.footer-bg .copyright-wrap a {
    color: #fe4b7b !important;
}

/* Mobile: smaller hill background and less bottom padding */
@media (max-width: 991px) {
    footer.footer-bg .footer-top {
        background-size: auto 60px, auto 220px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 575px) {
    footer.footer-bg .footer-top {
        background-size: auto 50px, auto 180px !important;
        padding-bottom: 50px !important;
    }
}
