/* Enhancements: floating WhatsApp button and contact form styles */

:root {
    --wa-green: #25D366;
    --wa-dark: #075E54;
}

/* Floating WhatsApp button */
.floating-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wa-green), #06b86b);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(3, 45, 30, 0.35);
    z-index: 120;
    transition: transform .18s ease, box-shadow .18s ease;
}

.floating-wa:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(3, 45, 30, 0.45);
}

.floating-wa svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* ensure hover labels appear above flag decoration and icon */
.floating-wa::before,
.floating-wa::after {
    z-index: 10002;
}

/* small hover label */
.floating-wa::before {
    content: attr(data-heading);
    position: absolute;
    right: 72px;
    bottom: 18px;
    background: linear-gradient(90deg, var(--wa-dark), var(--wa-green));
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    box-shadow: 0 8px 28px rgba(3, 45, 30, 0.32);
}

.floating-wa::after {
    content: attr(data-text);
    position: absolute;
    right: 72px;
    bottom: -6px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

/* UAE flag deco layering */
.floating-wa .uae-flag-deco {
    z-index: 1;
}

.floating-wa svg {
    position: relative;
    z-index: 2;
}

/* explicit label elements for UAE button (fallback when pseudo-elements are obstructed) */
.floating-wa .wa-label,
.floating-wa .wa-subtext {
    position: absolute;
    right: 72px;
    bottom: 18px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
    z-index: 10002;
}
.floating-wa .wa-label {
    background: linear-gradient(90deg, var(--wa-dark), var(--wa-green));
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
}
.floating-wa .wa-subtext {
    bottom: -6px;
    background: rgba(0,0,0,0.72);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
}
.floating-wa:hover .wa-label,
.floating-wa:hover .wa-subtext {
    opacity: 1;
    transform: translateY(0);
}

/* Hide the subtext (message line) for all floating WhatsApp buttons */
.floating-wa::after,
.floating-wa .wa-subtext {
    display: none !important;
}

.floating-wa:hover::before,
.floating-wa:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* subtle pulse animation to draw attention */
@keyframes waPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.floating-wa.pulse {
    animation: waPulse 2.8s ease-in-out infinite;
}

/* Contact form improvements */
/* Outer card that makes the contact page feel fuller */
.contact-card {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 40px 50px;
    border-radius: 24px;
    background: radial-gradient(circle at 0 0, rgba(74, 159, 164, 0.16), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(156, 44, 107, 0.18), transparent 55%),
                linear-gradient(180deg, rgba(6, 18, 20, 0.9), rgba(5, 5, 5, 0.95));
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 12% 8% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 44, 107, 0.16), transparent 65%);
    filter: blur(24px);
    pointer-events: none;
}

.contact-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 48px;
    align-items: stretch;
}

.contact-form {
    flex: 1 1 60%;
    max-width: 640px;
    margin: 0;
    display: block;
    gap: 12px;
}

.contact-form label {
    display: block;
    margin-top: 12px;
    font-weight: 700;
    color: var(--muted);
    text-align: left;
    margin-left: 2px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    color: #fff;
    font-size: 15px;
    resize: vertical;
    /* entrance state */
    opacity: 0;
    transform: translateY(8px);
    transition: transform .42s cubic-bezier(.2, .9, .2, 1), opacity .42s ease;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-details {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    color: var(--muted);
    padding-right: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-details h3 {
    color: #fff;
    margin: 6px 0;
    font-size: 1.6rem;
}

.contact-eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--teal);
    margin: 0;
}

.contact-copy {
    margin: 0;
    font-size: 0.98rem;
}

.detail-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 159, 164, 0.2), rgba(156, 44, 107, 0.2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-list strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

.detail-list p {
    margin: 4px 0 0;
}

.contact-hours {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.form-actions .btn {
    padding: 10px 16px;
    border-radius: 8px;
}

.muted.small {
    color: var(--muted);
    font-size: 13px;
    margin-top: 14px;
}

/* when form has .ready class, reveal inputs with stagger */
.contact-form.ready input[type="text"]:nth-of-type(1) {
    opacity: 1;
    transform: none;
    transition-delay: .04s
}

.contact-form.ready input[type="email"]:nth-of-type(2) {
    opacity: 1;
    transform: none;
    transition-delay: .08s
}

.contact-form.ready input[type="tel"]:nth-of-type(3) {
    opacity: 1;
    transform: none;
    transition-delay: .12s
}

.contact-form.ready textarea {
    opacity: 1;
    transform: none;
    transition-delay: .16s
}

/* Center the contact form and align its elements */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-form .btn {
    min-width: 120px;
}

/* make contact section pop with theme colors */
.section.contact {
    position: relative;
    padding: 48px 0 80px;
    /* stronger themed background to match index */
    background-image: linear-gradient(120deg, rgba(74, 159, 164, 0.04), rgba(156, 44, 107, 0.03)), linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    background-repeat: no-repeat, repeat;
}

.section.contact .container {
    text-align: center;
}

.section.contact .section-title {
    color: var(--teal);
    font-size: 32px;
    margin: 0 0 6px;
    text-shadow: 0 8px 30px rgba(74, 159, 164, 0.06);
}

.section.contact .section-sub {
    color: var(--muted);
    margin: 8px 0 20px;
}

/* subtle decorative orbs for contact section (non-interactive) */
.section.contact::before {
    content: '';
    position: absolute;
    left: -8%;
    top: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle at 20% 20%, rgba(74, 159, 164, 0.06), transparent 25%), radial-gradient(circle at 80% 80%, rgba(156, 44, 107, 0.04), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.section.contact .container>* {
    position: relative;
    z-index: 2;
}

/* Center the subline under the heading */
.section-sub {
    text-align: center;
    margin: 0 auto 24px auto;
    max-width: 800px;
    display: block;
}

/* Keep the form itself left-aligned but centered in the page */
.section.contact .contact-form {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .contact-card-inner {
        flex-direction: column;
        gap: 32px;
    }

    .contact-details {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 24px;
    }

    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-card {
        margin-top: 24px;
        padding: 24px 18px 28px;
        border-radius: 18px;
    }
}

/* About page hero illustration (reference layout) */
.about-hero {
    position: relative;
    overflow: visible;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-orbs {
    width: 48%;
    height: 220px;
    position: relative;
}

.hero-orbs .orb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(74, 159, 164, 0.14), rgba(156, 44, 107, 0.06));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-orbs .o1 {
    left: 6%;
    top: 12%;
    transform: scale(.95);
}

.hero-orbs .o2 {
    left: 22%;
    top: 6%;
    transform: scale(.9);
}

.hero-orbs .o3 {
    left: 38%;
    top: 18%;
    transform: scale(1.05);
}

.hero-orbs .o4 {
    left: 20%;
    top: 48%;
    transform: scale(.9);
}

.hero-orbs .o5 {
    left: 44%;
    top: 50%;
    transform: scale(.85);
}

.hero-divider {
    width: 2px;
    height: 56%;
    background: rgba(255, 255, 255, 0.03);
    margin: 0 18px;
}

.hero-award {
    width: 26%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-award .award-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 20px 28px;
    border-radius: 22px;
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.6);
    color: var(--muted);
    text-align: center;
}

.hero-award .award-inner strong {
    display: block;
    color: #fff;
    margin-bottom: 8px;
}

.hero-scroll {
    width: 16%;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.hero-scroll .scroll-line {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-scroll .scroll-boxes {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.hero-scroll .box {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    min-width: 96px;
}

.hero-scroll .box.small {
    font-size: 13px;
}

.hero-scroll .box.large {
    font-size: 14px;
    padding: 18px 20px;
}

.hero-grid {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: space-between;
}

.hero-left {
    flex: 1 1 60%;
    max-width: 60%;
}

.hero-right {
    flex: 0 0 36%;
    max-width: 36%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 18px;
    box-sizing: border-box;
}

.hero-left .hero-text {
    margin-bottom: 26px;
}

.hero-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 26px;
    align-items: center;
    justify-content: center;
    max-width: 760px;
    margin-top: 18px;
}

/* Circular logo chips */
.logo-pill {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(74, 159, 164, 0.12), rgba(4, 4, 4, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s ease;
    padding: 14px;
}

.logo-pill img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

/* Stagger the row for a playful offset */
.hero-logos .logo-pill:nth-child(1) {
    transform: translateY(-10px);
}

.hero-logos .logo-pill:nth-child(2) {
    transform: translateY(6px);
}

.hero-logos .logo-pill:nth-child(3) {
    transform: translateY(-14px);
}

.hero-logos .logo-pill:nth-child(4) {
    transform: translateY(8px);
}

.hero-logos .logo-pill:nth-child(5) {
    transform: translateY(-6px);
}

.logo-pill:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 36px 88px rgba(0, 0, 0, 0.6);
}

.hero-right-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    justify-items: end;
    align-items: center;
    width: 100%;
    margin-top: 100px;
    transform: translateX(20px);
}

.side-box {
    width: 100%;
    max-width: 160px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 12px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

.side-box a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

.side-png {
    width: 44px;
    height: 44px;
    display: block;
    margin: 0 auto 6px;
}

/* float animation for cards */
@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.side-box {
    animation: cardFloat 4.6s ease-in-out infinite;
}

.side-box:hover {
    transform: translateY(-6px) scale(1.03);
    transition: transform .28s ease;
}

.award-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card {
    width: 100%;
    max-width: 160px;
    height: 140px;
    background: rgba(0, 0, 0, 0.62);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.award-img {
    color: var(--muted);
    font-size: 12px;
}

.scroll-hint {
    display: none !important;
}

/* award float animation uses same float keyframes */
.award-card {
    animation: cardFloat 4.6s ease-in-out infinite;
}

/* trophy image sizing */
.award-png {
    width: 72px;
    height: 72px;
    display: block;
    margin: 8px auto 0;
}

/* Respect user preference for reduced motion but keep a hover fallback */
@media (prefers-reduced-motion: reduce) {
    .award-card {
        animation: none !important;
    }

    .award-card:hover {
        transform: translateX(-4px);
        transition: transform .28s ease;
    }
}

@media (max-width: 1000px) {
    .hero-grid {
        flex-direction: column;
    }

    .hero-right {
        width: 100%;
        order: 2;
    }

    .hero-left {
        width: 100%;
        order: 1;
    }

    .logo-pill {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 900px) {
    .hero-visual-illustration {
        display: none;
    }
}

@media (max-width:640px) {
    .floating-wa::before {
        display: none;
    }

    .floating-wa::after {
        display: none;
    }
}

/* Small screens adjustments */
@media (max-width:640px) {
    .floating-wa {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }

    .floating-wa::after {
        display: none;
    }

    .contact-form {
        padding: 0 12px;
    }
}

/* Diagonal split section: Vision / Motivation */
.diagonal-section {
    position: relative;
    padding: 56px 0;
    /* no gap requested: align diagonal section immediately after hero */
    margin-top: 0px;
    overflow: hidden;
}

.diagonal-section {
    /* match hero background for visual continuity */
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(8, 8, 8, 0.99));
}

/* Reuse footer-style orbs and anchoring so diagonal-section matches footer background */
.diagonal-section .footer-decor {
    position: absolute;
    left: 0;
    right: 0;
    top: -36px;
    pointer-events: none;
    z-index: 0;
}

.diagonal-section .footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.10;
}

.diagonal-section .footer-orb--teal {
    width: 260px;
    height: 260px;
    left: 6%;
    top: 6%;
    background: radial-gradient(circle at 30% 30%, var(--teal), transparent 60%);
}

.diagonal-section .footer-orb--magenta {
    width: 200px;
    height: 200px;
    right: 6%;
    top: 18%;
    background: radial-gradient(circle at 40% 40%, var(--magenta), transparent 60%);
}

.diagonal-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(1.02);
    transform-origin: center;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 6% 18%, rgba(74, 159, 164, 0.22) 0%, transparent 20%),
        radial-gradient(circle at 18% 40%, rgba(156, 44, 107, 0.18) 0%, transparent 20%),
        radial-gradient(circle at 34% 70%, rgba(74, 159, 164, 0.16) 0%, transparent 16%),
        radial-gradient(circle at 50% 20%, rgba(156, 44, 107, 0.14) 0%, transparent 14%),
        radial-gradient(circle at 70% 42%, rgba(74, 159, 164, 0.12) 0%, transparent 12%),
        radial-gradient(circle at 84% 68%, rgba(156, 44, 107, 0.10) 0%, transparent 10%);
    background-repeat: no-repeat;
    background-size: 18% 18%, 14% 14%, 12% 12%, 10% 10%, 8% 8%, 6% 6%;
    filter: blur(14px);
    will-change: background-position, transform;
    animation: heroParticles 28s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.95;
}

.diagonal-section .container>* {
    position: relative;
    z-index: 2;
}

.diagonal-inner {
    display: flex;
    gap: 22px;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}

.diagonal-inner .split-left,
.diagonal-inner .split-right {
    position: relative;
    z-index: 1;
}

/* Thin, solid diagonal divider that connects top and bottom edges */
/* Divider removed */
.diagonal-inner .split-left,
.diagonal-inner .split-right {
    box-sizing: border-box;
    padding: 48px 40px;
    min-height: 260px;
    color: #fff;
    width: 50%;
    display: flex;
    align-items: center;
}

.diagonal-inner .split-left {
    background: linear-gradient(180deg, rgba(18, 22, 22, 0.9), rgba(12, 14, 14, 0.9));
    justify-content: flex-start;
}

.diagonal-inner .split-right {
    background: linear-gradient(180deg, rgba(22, 12, 16, 0.9), rgba(8, 6, 8, 0.9));
    justify-content: flex-end;
}

.diagonal-inner .left-content {
    max-width: 640px;
    text-align: left;
}

.diagonal-inner .right-content {
    max-width: 640px;
    text-align: right;
}

.diagonal-section .section-title {
    margin: 0 0 6px;
    font-size: 28px;
    color: #fff;
}

.diagonal-section .muted {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width:900px) {
    .diagonal-inner {
        flex-direction: column;
    }

    .diagonal-inner .split-left,
    .diagonal-inner .split-right {
        clip-path: none;
        width: 100%;
        padding: 28px;
    }

    .diagonal-inner .right-content {
        text-align: left;
    }

    .diagonal-divider {
        display: none;
    }

    .diagonal-section {
        margin-top: 0px;
    }
}

/* Remove thin divider under hero and any section top divider to keep a seamless transition */
.hero .container::after,
.diagonal-section::after,
.section::after {
    display: none !important;
}

/* About page: hide hero's small accent and use the same orb decorations inside the diagonal section */
#about-hero .container::after,
#about-hero .hero-decor::after {
    display: none !important;
}

.diagonal-section::before,
.diagonal-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.20;
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.diagonal-section::before {
    width: 380px;
    height: 380px;
    left: 6%;
    top: 6%;
    background-image: radial-gradient(circle at 30% 30%, rgba(74, 159, 164, 0.95) 0%, rgba(74, 159, 164, 0.18) 22%, transparent 45%), radial-gradient(circle at 60% 70%, rgba(156, 44, 107, 0.70) 0%, rgba(156, 44, 107, 0.12) 30%, transparent 55%);
    box-shadow: 0 40px 120px rgba(74, 159, 164, 0.08);
    animation: floatSlow 16s linear infinite;
}

.diagonal-section::after {
    width: 260px;
    height: 260px;
    right: 4%;
    bottom: 4%;
    background-image: radial-gradient(circle at 40% 40%, rgba(156, 44, 107, 0.96) 0%, rgba(156, 44, 107, 0.18) 22%, transparent 46%), radial-gradient(circle at 18% 18%, rgba(74, 159, 164, 0.48) 0%, rgba(74, 159, 164, 0.06) 28%, transparent 60%);
    box-shadow: 0 40px 120px rgba(156, 44, 107, 0.06);
    animation: floatSlowReverse 18s linear infinite;
}

/* What we offer — two-column offers (UAE / Pakistan) matching theme */
.offer-section {
    position: relative;
    padding: 56px 0 80px;
    background: transparent;
    overflow: visible;
}

.diagonal-section .animated-bg,
.offer-section .animated-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(74, 159, 164, 0.06), rgba(156, 44, 107, 0.04) 50%, rgba(74, 159, 164, 0.03));
    mix-blend-mode: screen;
    opacity: 0.65;
    animation: bgShift 18s linear infinite;
    filter: blur(8px);
}

.offer-section .container>* {
    position: relative;
    z-index: 2;
}

.offer-section .section-title {
    text-align: center;
    margin-bottom: 6px;
}

.offer-section .section-sub {
    text-align: center;
    margin-bottom: 28px;
    color: var(--muted);
}

.offer-grid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    justify-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-col {
    padding: 0 12px;
}

.offer-col:first-child {
    text-align: center;
}

/* center the region headings so UAE and Pakistan appear centered as a pair */
.offer-region {
    color: var(--teal);
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
}

.offer-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.offer-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.offer-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.offer-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

/* Ensure card body text is left-aligned regardless of column */
.offer-card {
    text-align: left;
}

/* Card entrance animation (staggered) */
.offer-cards .offer-card {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 720ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.offer-cards .offer-card:nth-child(1) {
    animation-delay: 120ms;
}

.offer-cards .offer-card:nth-child(2) {
    animation-delay: 220ms;
}

.offer-cards .offer-card:nth-child(3) {
    animation-delay: 320ms;
}

.offer-cards .offer-card:nth-child(4) {
    animation-delay: 420ms;
}

.offer-cards .offer-card:nth-child(5) {
    animation-delay: 520ms;
}

.offer-cards .offer-card:nth-child(6) {
    animation-delay: 620ms;
}

.offer-card {
    transition: transform .28s ease, box-shadow .28s ease;
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 36px 88px rgba(0, 0, 0, 0.7);
}

/* Vision/Motivation slide-in animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.diagonal-inner .split-left {
    opacity: 0;
    transform: translateX(-12px);
    animation: slideInLeft 760ms cubic-bezier(.2, .9, .2, 1) 200ms forwards;
}

.diagonal-inner .split-right {
    opacity: 0;
    transform: translateX(12px);
    animation: slideInRight 760ms cubic-bezier(.2, .9, .2, 1) 320ms forwards;
}

/* Slight decorative lift on hover for the diagonal splits */
.diagonal-inner .split-left:hover,
.diagonal-inner .split-right:hover {
    transform: translateY(-6px);
    transition: transform .28s ease;
}

/* Decorative orbs behind the offer section to match hero/diagonal feel */
.offer-section::before,
.offer-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    filter: blur(26px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.offer-section::before {
    width: 320px;
    height: 320px;
    left: 4%;
    top: 4%;
    background-image: radial-gradient(circle at 28% 28%, rgba(74, 159, 164, 0.95) 0%, rgba(74, 159, 164, 0.18) 24%, transparent 46%), radial-gradient(circle at 72% 72%, rgba(156, 44, 107, 0.14), transparent 40%);
    animation: floatSlow 16s linear infinite;
    box-shadow: 0 36px 110px rgba(74, 159, 164, 0.06);
}

.offer-section::after {
    width: 240px;
    height: 240px;
    right: 6%;
    bottom: 6%;
    background-image: radial-gradient(circle at 40% 40%, rgba(156, 44, 107, 0.96) 0%, rgba(156, 44, 107, 0.18) 22%, transparent 46%), radial-gradient(circle at 12% 18%, rgba(74, 159, 164, 0.12), transparent 48%);
    animation: floatSlowReverse 20s linear infinite;
    box-shadow: 0 36px 110px rgba(156, 44, 107, 0.04);
}

@media (max-width:900px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-col {
        width: 100%;
    }

    .offer-section::before,
    .offer-section::after {
        display: none;
    }
}

/* Theme overrides: make the offer section visually match the hero/diagonal section */
section.offer-section {
    /* reuse diagonal/hero dark gradient to match feel */
    background: linear-gradient(160deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 60%);
    position: relative;
    overflow: visible;
}

/* large blurred particle field behind offers (matches diagonal-section) */
section.offer-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(1.02);
    transform-origin: center;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 6% 18%, rgba(74, 159, 164, 0.22) 0%, transparent 20%),
        radial-gradient(circle at 18% 40%, rgba(156, 44, 107, 0.18) 0%, transparent 20%),
        radial-gradient(circle at 34% 70%, rgba(74, 159, 164, 0.16) 0%, transparent 16%),
        radial-gradient(circle at 50% 20%, rgba(156, 44, 107, 0.14) 0%, transparent 14%),
        radial-gradient(circle at 70% 42%, rgba(74, 159, 164, 0.12) 0%, transparent 12%),
        radial-gradient(circle at 84% 68%, rgba(156, 44, 107, 0.10) 0%, transparent 10%);
    background-repeat: no-repeat;
    background-size: 18% 18%, 14% 14%, 12% 12%, 10% 10%, 8% 8%, 6% 6%;
    filter: blur(14px);
    will-change: background-position, transform;
    animation: heroParticles 28s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* ensure content stays above decorations */
section.offer-section .container>* {
    position: relative;
    z-index: 2;
}

/* center heading and remove the small subline as requested */
section.offer-section .section-title {
    text-align: center;
    margin: 0 auto 10px;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: linear-gradient(90deg, #b28bf3 0%, #c089e6 30%, #7bd3cb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    width: fit-content;
}

section.offer-section .section-title::after {
    content: '';
    display: block;
    margin: 14px auto 0;
    width: 160px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--magenta));
    box-shadow: 0 8px 24px rgba(124, 72, 150, 0.12);
}

section.offer-section .section-sub {
    display: none;
}

/* slightly stronger cards to read on top of particle field */
section.offer-section .offer-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.66);
}

@media (max-width:900px) {
    section.offer-section::before {
        display: none;
    }
}

@media (max-width:600px) {
    section.offer-section .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    section.offer-section .section-title::after {
        width: 100px;
        height: 8px;
    }
}