/* ==========================================================================
   CADDAM TECHNOLOGIES — HOMEPAGE STYLESHEET (Bootstrap 5 Compatible)
   Bootstrap handles layout. This file: branding, hero, marquee, components.
   No html/body overflow rules — Bootstrap Reboot owns those.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
    --caddam-navy: #0A1128;
    --caddam-navy-dark: #030814;
    --caddam-red: #ecd503;
    --caddam-red-dark: #d12626;
    --caddam-offwhite: #F9FAFE;
    --caddam-gray: #4A5568;
    --caddam-border: #E4E7F0;
    --caddam-shadow: 0 8px 24px rgba(10, 17, 40, 0.08);
    --caddam-shadow-lg: 0 20px 40px rgba(10, 17, 40, 0.12);
    --caddam-radius: 16px;
    --caddam-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.05);
}

/* ── Utility ── */
.caddam-bg-offwhite {
    background-color: var(--caddam-offwhite);
}

/* ── Section typography shared ── */
.caddam-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ffffff;
    background: #000000;
    padding: 5px 14px;
    border-radius: 40px;
}

.caddam-section-heading {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--caddam-navy);
    margin: 0;
    display: block;
}

.caddam-heading-highlight-box {
    display: inline-block;
    background: #f1f3f8;
    border-left: 5px solid var(--caddam-red);
    padding: 14px 22px 14px 20px;
    border-radius: 0 8px 8px 0;
}

.caddam-heading-accent {
    display: block;
    font-style: italic;
    font-weight: 700;
    color: #0d9488;
    font-size: 0.92em;
    letter-spacing: 0;
    margin-top: 2px;
}


.caddam-section-desc {
    font-size: 1rem;
    color: var(--caddam-gray);
    line-height: 1.65;
}

.caddam-link-red {
    color: var(--caddam-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--caddam-transition);
}

.caddam-link-red:hover {
    color: var(--caddam-red-dark);
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════════
   1. HERO SECTION — fixed height, Bootstrap container inside Swiper
   ══════════════════════════════════════════════════════════════════ */
.caddam-hero-section {
    position: relative;
    /* Fixed height — no dvh/vh that causes shifting */
    height: 680px;
    background: var(--caddam-navy-dark);
    /* CRITICAL: overflow hidden on the section, NOT on html/body */
    overflow: hidden;
    flex-shrink: 0;
}

.hero-swiper,
.hero-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.caddam-hero-slide {
    /* Swiper fade sets position:absolute — !important locks our height */
    height: 100% !important;
    width: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.caddam-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
            rgba(3, 8, 20, 0.93) 0%,
            rgba(10, 17, 40, 0.72) 60%,
            rgba(10, 17, 40, 0.35) 100%);
    z-index: 1;
}

/* Bootstrap .container inside slide needs z-index above overlay */
.caddam-hero-slide .container {
    position: relative;
    z-index: 2;
    /* Remove Bootstrap's default padding-bottom so it doesn't push content */
    padding-bottom: 100px;
    /* reserve space above trust bar */
}

.caddam-hero-content {
    padding-left: 60px;
}

@media (max-width: 991px) {
    .caddam-hero-content {
        padding-left: 0;
    }
}

.caddam-hero-tag {
    display: inline-block;
    background: rgba(0, 102, 204, 0.18);
    color: #FF8083;
    border-radius: 40px;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.caddam-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
}

.caddam-hero-accent {
    color: var(--caddam-red);
    border-bottom: 2px solid rgba(0, 102, 204, 0.45);
}

.caddam-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Buttons in hero */
.caddam-btn-primary {
    background: var(--caddam-red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 40px !important;
    padding: 13px 28px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.28) !important;
    transition: var(--caddam-transition) !important;
}

.caddam-btn-primary:hover {
    background: var(--caddam-red-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 22px rgba(0, 102, 204, 0.32) !important;
}

.caddam-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    border-radius: 40px !important;
    padding: 13px 28px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: var(--caddam-transition) !important;
}

.caddam-btn-outline:hover {
    background: #fff !important;
    color: var(--caddam-navy) !important;
    border-color: #fff !important;
    transform: translateY(-2px) !important;
}

/* Trust bar — absolutely anchored to hero bottom */
.caddam-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(230, 57, 70, 0.95); /* Changed to crimson for contrasting color */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 0;
    /* Fixed height so we can reliably offset .container padding-bottom */
    min-height: 60px;
    max-height: 90px;
    box-sizing: border-box;
}

.caddam-trust-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.caddam-trust-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.caddam-trust-item i {
    color: #ffffff;
}

/* Swiper nav arrows */
.caddam-hero-prev,
.caddam-hero-next {
    position: absolute;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    z-index: 11;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    background: rgba(3, 8, 20, 0.45);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--caddam-transition);
}

.caddam-hero-prev:hover,
.caddam-hero-next:hover {
    background: var(--caddam-red);
    border-color: var(--caddam-red);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.caddam-hero-prev {
    left: 32px;
}

.caddam-hero-next {
    right: 32px;
}

/* Pagination dots */
.hero-swiper-pagination {
    position: absolute !important;
    bottom: 68px !important;
    /* trust bar min-height + 8px gap */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 12;
    display: flex !important;
    gap: 8px;
    width: auto !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35) !important;
    width: 10px;
    height: 10px;
    opacity: 1;
    border-radius: 50%;
    transition: var(--caddam-transition);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--caddam-red) !important;
    width: 28px;
    border-radius: 5px;
}

/* ── Responsive hero breakpoints ── */
@media (max-width: 1199px) {
    .caddam-hero-section {
        height: 640px;
    }
}

@media (max-width: 991px) {
    .caddam-hero-section {
        height: 580px;
    }

    .caddam-hero-prev,
    .caddam-hero-next {
        display: none;
    }

    .caddam-hero-slide .container {
        padding-bottom: 120px;
    }

    .hero-swiper-pagination {
        bottom: 86px !important;
    }

    .caddam-trust-bar {
        max-height: 56px;
        min-height: 56px;
        padding: 14px 0;
    }
    .caddam-trust-bar .container {
        padding: 0;
        max-width: 100%;
    }
    .caddam-trust-bar .container > div {
        padding: 0;
        margin: 0;
    }
    .caddam-trust-bar .d-flex.gap-3 {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 24px !important;
        scrollbar-width: none;
    }
    .caddam-trust-bar .d-flex.gap-3::-webkit-scrollbar {
        display: none;
    }
    .caddam-trust-item {
        flex: 0 0 auto;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .caddam-hero-section {
        height: 520px;
    }

    .caddam-hero-slide .container {
        padding-bottom: 108px;
    }

    .hero-swiper-pagination {
        bottom: 74px !important;
    }

    .caddam-trust-bar {
        max-height: 52px;
        min-height: 52px;
        padding: 12px 0;
    }

    .caddam-trust-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .caddam-hero-section {
        height: 500px;
    }

    .caddam-hero-slide .container {
        padding-bottom: 100px;
    }

    .hero-swiper-pagination {
        bottom: 68px !important;
    }

    .caddam-hero-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 399px) {
    .caddam-hero-section {
        height: 480px;
    }

    .caddam-hero-title {
        font-size: 1.6rem;
    }
}

/* ══════════════════════════════════════════════════════════════════
   2. PARTNERS MARQUEE
   ══════════════════════════════════════════════════════════════════ */
.caddam-partners-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(233, 64, 87, 0.035), transparent 70%), #ffffff;
    overflow: hidden;
    padding: 80px 0;
    border-bottom: 1px solid rgba(10, 17, 40, 0.05);
}

.caddam-partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10, 17, 40, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.caddam-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.caddam-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: caddamMarquee 38s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.caddam-marquee-track.reverse {
    animation: caddamMarqueeReverse 38s linear infinite;
}

.caddam-marquee-track.fast {
    animation-duration: 32s;
}

.caddam-marquee-track.slow {
    animation-duration: 44s;
}


@keyframes caddamMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333%, 0, 0);
    }
}

@keyframes caddamMarqueeReverse {
    0% {
        transform: translate3d(-33.333%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.caddam-partner-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 49, 97, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 49, 97, 0.03);
    margin: 0 6px;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.caddam-partner-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: var(--acc);
    box-shadow: 0 12px 24px rgba(0, 49, 97, 0.08);
}

.caddam-partner-card img {
    width: 100%;
    height: 100%;
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    opacity: 0.85;
}

.caddam-partner-card:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .caddam-partners-section {
        padding: 50px 0;
    }
    .caddam-partner-card {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        padding: 8px;
        margin: 0 3px;
    }
    .caddam-partner-card img {
        max-width: 60px;
        max-height: 60px;
    }
    .caddam-marquee-track {
        gap: 12px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   3. STATS CARDS
   ══════════════════════════════════════════════════════════════════ */
.caddam-stat-card {
    background: var(--caddam-offwhite);
    border-radius: var(--caddam-radius);
    border-left: 4px solid var(--caddam-red);
    padding: 20px;
    transition: var(--caddam-transition);
}

.caddam-stat-card.stat-card-blue {
    border-left-color: #0072FF;
}

.caddam-stat-card.stat-card-purple {
    border-left-color: #E94057;
}

.caddam-stat-card.stat-card-orange {
    border-left-color: #ff5e62;
}

.caddam-stat-card.stat-card-green {
    border-left-color: #10b981;
}

.caddam-stat-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: var(--caddam-shadow);
}

.caddam-stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--caddam-navy);
    line-height: 1;
}

.caddam-stat-label {
    font-size: 0.82rem;
    color: var(--caddam-gray);
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   4. DIVISION IMAGE CARDS — cinematic hover reveal animation
   ══════════════════════════════════════════════════════════════════ */


.caddam-div-imgcard {
    position: relative;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(10, 17, 40, 0.14);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.caddam-div-imgcard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: transparent;
    z-index: 5;
    transition: var(--caddam-transition);
}

.caddam-div-imgcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.2);
}

/* Background photo layer */
.caddam-div-imgcard__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.caddam-div-imgcard:hover .caddam-div-imgcard__bg {
    transform: scale(1.08);
}

/* Dark gradient overlay — deepens on hover */
.caddam-div-imgcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(3, 8, 20, 0.90) 0%,
            rgba(3, 8, 20, 0.55) 50%,
            rgba(3, 8, 20, 0.25) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

/* Custom Themed Hover States */
.caddam-div-imgcard.div-card-blue:hover .caddam-div-imgcard__overlay {
    background: linear-gradient(to top,
            rgba(3, 8, 20, 0.95) 0%,
            rgba(37, 99, 235, 0.3) 50%,
            rgba(37, 99, 235, 0.1) 100%);
}

.caddam-div-imgcard.div-card-blue:hover::after {
    background: #2563eb;
}

.caddam-div-imgcard.div-card-blue:hover .caddam-div-imgcard__icon {
    background: #2563eb !important;
}

.caddam-div-imgcard.div-card-red:hover .caddam-div-imgcard__overlay {
    background: linear-gradient(to top,
            rgba(3, 8, 20, 0.95) 0%,
            rgba(220, 38, 38, 0.3) 50%,
            rgba(220, 38, 38, 0.1) 100%);
}

.caddam-div-imgcard.div-card-red:hover::after {
    background: #dc2626;
}

.caddam-div-imgcard.div-card-red:hover .caddam-div-imgcard__icon {
    background: #dc2626 !important;
}

.caddam-div-imgcard.div-card-navy:hover .caddam-div-imgcard__overlay {
    background: linear-gradient(to top,
            rgba(3, 8, 20, 0.95) 0%,
            rgba(228, 0, 197, 0.25) 50%,
            rgba(228, 0, 197, 0.08) 100%);
}

.caddam-div-imgcard.div-card-navy:hover::after {
    background: rgb(228, 0, 197);
}

.caddam-div-imgcard.div-card-navy:hover .caddam-div-imgcard__icon {
    background: rgb(228, 0, 197) !important;
}

.caddam-div-imgcard.div-card-green:hover .caddam-div-imgcard__overlay {
    background: linear-gradient(to top,
            rgba(3, 8, 20, 0.95) 0%,
            rgba(16, 185, 129, 0.3) 50%,
            rgba(16, 185, 129, 0.1) 100%);
}

.caddam-div-imgcard.div-card-green:hover::after {
    background: #10b981;
}

.caddam-div-imgcard.div-card-green:hover .caddam-div-imgcard__icon {
    background: #10b981 !important;
}

/* Content body — flex column pinned to bottom */
.caddam-div-imgcard__body {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
}

/* Icon badge — top-left */
.caddam-div-imgcard__icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(10, 17, 40, 0.4);
    transition: background 0.3s ease, transform 0.3s ease;
}

.caddam-div-imgcard:hover .caddam-div-imgcard__icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Division title — always visible */
.caddam-div-imgcard__title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: transform 0.4s ease;
}

.caddam-div-imgcard:hover .caddam-div-imgcard__title {
    transform: translateY(-4px);
}

/* Reveal panel — always visible */
.caddam-div-imgcard__reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease;
}

/* Description text inside reveal */
.caddam-div-imgcard__desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0 0 14px;
}

/* CTA button inside reveal */
.caddam-div-imgcard__cta {
    display: inline-flex;
    align-items: center;
    background: var(--caddam-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(10, 17, 40, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.caddam-div-imgcard__cta:hover {
    background: var(--caddam-red-dark);
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(10, 17, 40, 0.45);
}

/* Responsive height */
@media (max-width: 1200px) {
    .caddam-div-imgcard {
        height: 410px;
    }
}

@media (max-width: 575px) {
    .caddam-div-imgcard {
        height: 360px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   5. WHY CHOOSE - UNIQUE ENTERPRISE PILLARS
   ══════════════════════════════════════════════════════════════════ */
.caddam-why-section-unique {
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

/* Left Brand Board */
.caddam-trust-brand-board {
    background: linear-gradient(145deg, #0A1128 0%, #101B3A 100%);
    border-radius: 30px;
    padding: 50px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10, 17, 40, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.caddam-trust-glow-orb {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.caddam-trust-glow-orb-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.15); }
}

.caddam-trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.caddam-trust-main-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.caddam-lead-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.caddam-trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.caddam-trust-stat-item {
    display: flex;
    flex-direction: column;
}

.caddam-trust-stat-item .num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.caddam-trust-stat-item:nth-child(1) .num { color: #ecd503; } /* Gold/Yellow for 25+ */
.caddam-trust-stat-item:nth-child(2) .num { color: #2563eb; } /* Blue for 13k+ */
.caddam-trust-stat-item:nth-child(3) .num { color: #10b981; } /* Green for 99.2% */

.caddam-trust-stat-item .lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 8px;
}

/* Bento Grid Layout */
.caddam-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    align-items: stretch;
}

.caddam-bento-card {
    background: #ffffff;
    border: 1px solid var(--caddam-border);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 18px rgba(10, 17, 40, 0.02);
}

/* Hover effects */
.caddam-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--caddam-shadow-lg);
}

.caddam-bento-card:hover h4,
.caddam-bento-card:hover p,
.caddam-bento-card:hover .stat-lbl,
.caddam-bento-card:hover .pillar-num {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/* Title Card Specific */
.caddam-bento-card.card-title-block {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, #0A1128 0%, #101B3A 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    justify-content: flex-end;
    padding: 50px 40px;
}

.caddam-bento-card.card-title-block:hover {
    transform: none;
    box-shadow: 0 30px 70px rgba(10, 17, 40, 0.25);
}

/* Stat Cards Specific */
.caddam-bento-card.card-stat-block {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.caddam-bento-card.card-stat-block .stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.caddam-bento-card.card-stat-block .stat-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--caddam-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.caddam-bento-card.card-stat-block:hover .stat-num {
    transform: scale(1.08);
}

/* Individual Stat Colors & Underlines */
.caddam-bento-card.stat-yellow {
    background: #FEFBE8;
    border-color: rgba(236, 213, 3, 0.25);
}
.caddam-bento-card.stat-yellow .stat-num { color: #d4bf02; }
.caddam-bento-card.stat-yellow:hover {
    background: #ecd503;
    border-color: #ecd503;
}
.caddam-bento-card.stat-yellow:hover .stat-num,
.caddam-bento-card.stat-yellow:hover .stat-lbl {
    color: #0A1128 !important;
}

.caddam-bento-card.stat-blue {
    background: #EFF6FF;
    border-color: rgba(37, 99, 235, 0.15);
}
.caddam-bento-card.stat-blue .stat-num { color: #2563eb; }
.caddam-bento-card.stat-blue:hover {
    background: #2563eb;
    border-color: #2563eb;
}
.caddam-bento-card.stat-blue:hover .stat-num {
    color: #ffffff !important;
}

.caddam-bento-card.stat-green {
    background: #ECFDF5;
    border-color: rgba(16, 185, 129, 0.15);
}
.caddam-bento-card.stat-green .stat-num { color: #10b981; }
.caddam-bento-card.stat-green:hover {
    background: #10b981;
    border-color: #10b981;
}
.caddam-bento-card.stat-green:hover .stat-num {
    color: #ffffff !important;
}

/* Pillar Cards Specific */
.caddam-bento-card.card-pillar-block {
    justify-content: flex-start;
    gap: 16px;
    background: #ffffff;
}

.caddam-bento-card.card-pillar-block .pillar-num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(10, 17, 40, 0.12);
    position: absolute;
    top: 24px;
    right: 28px;
    transition: color 0.3s ease;
}

.caddam-bento-card.card-pillar-block .pillar-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.caddam-bento-card.card-pillar-block:hover .pillar-icon-box {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.caddam-bento-card.card-pillar-block h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--caddam-navy);
    margin: 0 0 6px;
    transition: color 0.3s ease;
}

.caddam-bento-card.card-pillar-block p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    transition: color 0.3s ease;
}

/* Individual Pillar Styles */
.caddam-bento-card.row-agile {
    background: #F8FAFC;
    border-color: rgba(37, 99, 235, 0.1);
}
.caddam-bento-card.row-agile .pillar-icon-box { background: rgba(59, 130, 246, 0.08); color: #2563eb; }
.caddam-bento-card.row-agile:hover { background: #2563eb; border-color: #2563eb; }
.caddam-bento-card.row-agile:hover .pillar-icon-box { background: rgba(255, 255, 255, 0.25) !important; color: #fff !important; }

.caddam-bento-card.row-compliance {
    background: #F8FAFC;
    border-color: rgba(16, 185, 129, 0.1);
}
.caddam-bento-card.row-compliance .pillar-icon-box { background: rgba(16, 185, 129, 0.08); color: #059669; }
.caddam-bento-card.row-compliance:hover { background: #059669; border-color: #059669; }
.caddam-bento-card.row-compliance:hover .pillar-icon-box { background: rgba(255, 255, 255, 0.25) !important; color: #fff !important; }

.caddam-bento-card.row-data {
    background: #F8FAFC;
    border-color: rgba(139, 92, 246, 0.1);
}
.caddam-bento-card.row-data .pillar-icon-box { background: rgba(139, 92, 246, 0.08); color: #7c3aed; }
.caddam-bento-card.row-data:hover { background: #7c3aed; border-color: #7c3aed; }
.caddam-bento-card.row-data:hover .pillar-icon-box { background: rgba(255, 255, 255, 0.25) !important; color: #fff !important; }

.caddam-bento-card.row-global {
    background: #F8FAFC;
    border-color: rgba(245, 158, 11, 0.1);
}
.caddam-bento-card.row-global .pillar-icon-box { background: rgba(245, 158, 11, 0.08); color: #d97706; }
.caddam-bento-card.row-global:hover { background: #d97706; border-color: #d97706; }
.caddam-bento-card.row-global:hover .pillar-icon-box { background: rgba(255, 255, 255, 0.25) !important; color: #fff !important; }

.caddam-bento-card.row-success {
    background: #F8FAFC;
    border-color: rgba(220, 38, 38, 0.1);
}
.caddam-bento-card.row-success .pillar-icon-box { background: rgba(239, 68, 68, 0.08); color: #dc2626; }
.caddam-bento-card.row-success:hover { background: #dc2626; border-color: #dc2626; }
.caddam-bento-card.row-success:hover .pillar-icon-box { background: rgba(255, 255, 255, 0.25) !important; color: #fff !important; }

/* Responsive Bento */
@media (max-width: 991px) {
    .caddam-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .caddam-bento-card.card-title-block {
        grid-column: span 2;
        grid-row: span 1;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .caddam-bento-grid {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }
    
    .caddam-bento-card.card-title-block {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 991px) {
    .caddam-pillar-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .caddam-pillar-num {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════════
   6. INDUSTRY IMAGE CARDS
   ══════════════════════════════════════════════════════════════════ */
/* Premium Vetus-inspired Industry Cards */
.caddam-industry-card {
    background: #ffffff;
    border: 1px solid rgba(10, 17, 40, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 290px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.caddam-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 17, 40, 0.08);
    border-color: rgba(230, 57, 70, 0.25);
}

.caddam-industry-img-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
    width: 100%;
}

.caddam-industry-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.caddam-industry-card:hover .caddam-industry-bg {
    transform: scale(1.08);
}

.caddam-industry-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.caddam-industry-footer {
    padding: 16px 20px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    flex-grow: 1;
    z-index: 2;
    transition: background 0.3s ease;
}

.caddam-industry-card:hover .caddam-industry-footer {
    background: #fafafa;
}

.caddam-industry-footer h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a1128;
    margin: 0;
    transition: color 0.3s ease;
}

.caddam-industry-card:hover .caddam-industry-footer h4 {
    color: #E63946;
}

.caddam-arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.caddam-industry-card:hover .caddam-arrow-circle {
    background: #E63946;
    border-color: #E63946;
    color: #ffffff;
}

.caddam-industry-card:hover .caddam-arrow-circle i {
    color: #ffffff !important;
    transform: translateX(2px);
}

/* ══════════════════════════════════════════════════════════════════
   7. CASE STUDY CARDS
   ══════════════════════════════════════════════════════════════════ */
/* ── STAT LEFT STRIP CARD (Template 2) ─────────────────────────────── */
.cdc-strip-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8eaf0;
    box-shadow: 0 4px 20px rgba(10, 17, 40, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-height: 170px;
}

.cdc-strip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 17, 40, 0.10);
}

/* Left colored strip */
.cdc-strip {
    width: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.cdc-strip--blue  { background: linear-gradient(160deg, #1d4ed8, #0d9488); }
.cdc-strip--red   { background: linear-gradient(160deg, #dc2626, #e63946); }
.cdc-strip--green { background: linear-gradient(160deg, #059669, #10b981); }

/* Stat number inside strip — rotated sideways */
.cdc-strip__stat {
    color: #fff;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Right content panel */
.cdc-strip-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    gap: 6px;
}

.cdc-strip-body__title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--caddam-navy);
    margin: 0;
    line-height: 1.3;
}

.cdc-strip-body__desc {
    font-size: 0.84rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

/* Badge pill */
.cdc-strip-body__badge {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
    width: fit-content;
    letter-spacing: 0.02em;
}

.cdc-badge--blue  { background: #dbeafe; color: #1d4ed8; }
.cdc-badge--red   { background: #fee2e2; color: #dc2626; }
.cdc-badge--green { background: #d1fae5; color: #059669; }

/* Hover: colored strip glow per variant */
.cdc-strip-card:has(.cdc-strip--blue):hover  { box-shadow: 0 16px 40px rgba(29, 78, 216, 0.15); }
.cdc-strip-card:has(.cdc-strip--red):hover   { box-shadow: 0 16px 40px rgba(220, 38, 38, 0.15); }
.cdc-strip-card:has(.cdc-strip--green):hover { box-shadow: 0 16px 40px rgba(5, 150, 105, 0.15); }



/* ══════════════════════════════════════════════════════════════════
   8. LEADERSHIP QUOTE CARD
   ══════════════════════════════════════════════════════════════════ */
/* Unique Leadership Showcase Section */
.caddam-leadership-showcase {
    position: relative;
}

.caddam-leadership-decor {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(233, 91, 87, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.caddam-leader-photo-frame {
    position: relative;
    display: inline-block;
    padding: 12px;
}

.caddam-leader-photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-top: 4px solid var(--caddam-red);
    border-left: 4px solid var(--caddam-red);
    border-top-left-radius: 24px;
    pointer-events: none;
}

.caddam-leader-photo-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-bottom: 4px solid var(--caddam-navy);
    border-right: 4px solid var(--caddam-navy);
    border-bottom-right-radius: 24px;
    pointer-events: none;
}

.caddam-leader-img {
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(10, 17, 40, 0.12);
    display: block;
    transition: transform 0.4s ease;
}

.caddam-leader-photo-frame:hover .caddam-leader-img {
    transform: scale(1.03) rotate(-1deg);
}

.caddam-leadership-editorial {
    padding-left: 20px;
    position: relative;
}

.caddam-giant-quote-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 8.5rem;
    line-height: 1;
    color: rgba(233, 91, 87, 0.09);
    position: absolute;
    top: -45px;
    left: -10px;
    pointer-events: none;
    font-weight: 900;
}

.caddam-leadership-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e95b57;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.caddam-leadership-quote {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--caddam-navy);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.caddam-leadership-sign-block {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(10, 17, 40, 0.08);
    padding-top: 24px;
}

.caddam-leadership-details h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--caddam-navy);
    margin: 0 0 3px;
}

.caddam-leadership-details span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e95b57;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.caddam-read-more-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-alt);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--caddam-navy);
    border: 1.5px solid var(--caddam-navy);
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.caddam-read-more-btn:hover {
    background: var(--caddam-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 17, 40, 0.15);
}

@media (max-width: 991px) {
    .caddam-leadership-editorial {
        padding-left: 0;
        margin-top: 30px;
    }

    .caddam-leadership-sign-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .caddam-read-more-btn {
        margin-left: 0;
    }
}

.caddam-quote-icon {
    display: none;
}


/* ══════════════════════════════════════════════════════════════════
   9. TESTIMONIALS SWIPER
   ══════════════════════════════════════════════════════════════════ */
.testimonials-swiper-container {
    overflow: hidden;
    padding-bottom: 48px !important;
}

.caddam-testimonial-card {
    background: #fff;
    border: 1px solid var(--caddam-border);
    border-left: 4px solid var(--caddam-red);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
    box-shadow: 0 4px 18px rgba(10, 17, 40, 0.02);
    transition: var(--caddam-transition);
}

.caddam-testimonial-card:hover {
    border-color: var(--caddam-border);
    border-left-color: rgb(228, 0, 197);
    transform: translateY(-6px);
    box-shadow: var(--caddam-shadow-lg);
}

.homepage-testimonial-pagination {
    position: absolute !important;
    bottom: 8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    gap: 8px;
    width: auto !important;
    z-index: 10;
}

.homepage-testimonial-pagination .swiper-pagination-bullet {
    background: var(--caddam-gray) !important;
    width: 8px;
    height: 8px;
    opacity: 0.35;
    transition: var(--caddam-transition);
}

.homepage-testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--caddam-red) !important;
    width: 24px;
    border-radius: 4px;
    opacity: 1;
}

/* ── Custom Multi-Color Corporate Buttons ── */
.caddam-btn-blue {
    background: #2563eb !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 0px #000000 !important;
}

.caddam-btn-blue:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #000000 !important;
}

.caddam-btn-green {
    background: #10B981 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 0px #000000 !important;
}

.caddam-btn-green:hover {
    background: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #000000 !important;
}

.caddam-btn-red {
    background: #dc2626 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 0px #000000 !important;
}

.caddam-btn-red:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #000000 !important;
}

.caddam-btn-warning {
    background: #ecd503 !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 0px #000000 !important;
}

.caddam-btn-warning:hover {
    background: #d4bf02 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #000000 !important;
}

/* ==========================================================================
   MODERN MINIMALIST CARD GRID (ALTERNATIVE TEMPLATE)
   ========================================================================== */
.caddam-section-header .caddam-trust-main-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--caddam-navy);
}

.caddam-section-header .caddam-lead-text {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.caddam-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.caddam-metric-card {
    background: #ffffff;
    border: 1px solid rgba(10, 17, 40, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.caddam-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 17, 40, 0.08);
}

.caddam-metric-card .metric-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.caddam-metric-card .metric-lbl {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Colors for stats */
.caddam-metric-card.stat-yellow .metric-num { color: #ecd503; }
.caddam-metric-card.stat-yellow { background: linear-gradient(to bottom right, #ffffff, #fefbef); }
.caddam-metric-card.stat-blue .metric-num { color: #3b82f6; }
.caddam-metric-card.stat-blue { background: linear-gradient(to bottom right, #ffffff, #eff6ff); }
.caddam-metric-card.stat-green .metric-num { color: #10b981; }
.caddam-metric-card.stat-green { background: linear-gradient(to bottom right, #ffffff, #ecfdf5); }

/* Features Grid */
.caddam-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.caddam-feature-card {
    background: #ffffff;
    border: 1px solid rgba(10, 17, 40, 0.06);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.caddam-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.06);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feature-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(10, 17, 40, 0.2);
    letter-spacing: 1px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 57, 70, 0.06);
    color: var(--caddam-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.caddam-feature-card:hover .feature-icon {
    background: var(--caddam-red);
    color: #ffffff;
    transform: rotate(360deg);
}

.caddam-feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--caddam-navy);
    margin-bottom: 12px;
}

.caddam-feature-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0;
}

/* Responsive grid layouts */
@media (max-width: 991px) {
    .caddam-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .caddam-metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .caddam-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* CADDAM Staggered Stats Cards (Template Update) */
.caddam-template-card {
    background: #ffffff;
    border: 1.5px solid #fef08a;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.caddam-template-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #fde047;
}

.caddam-template-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fef9c3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.caddam-template-card .icon-wrapper i {
    color: #ca8a04;
    font-size: 1.6rem;
}

.caddam-template-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1128;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.caddam-template-card p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   8. 25 YEARS CELEBRATION BANNER
   ══════════════════════════════════════════════════════════════════ */
.caddam-celebration-banner {
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 1) 0%, rgba(10, 17, 40, 1) 90%);
    border-top: 3px solid #E63946;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.caddam-celebration-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.caddam-celebration-banner .container {
    position: relative;
    z-index: 2;
}

.celebration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 240, 138, 0.1);
    border: 1px solid rgba(254, 240, 138, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fde047;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.celebration-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.celebration-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1 !important;
    max-width: 650px;
}

.celebration-logos-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.celebration-logos-row img {
    height: 55px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-25-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge-25-img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(254, 240, 138, 0.15));
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .caddam-celebration-banner {
        text-align: center;
        padding: 50px 0;
    }
    .celebration-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .celebration-logos-row {
        justify-content: center;
        gap: 20px;
    }
    .badge-25-wrapper {
        margin-top: 40px;
    }
    .badge-25-img {
        max-height: 180px;
    }
}