/
home
/
whiteglobeco
/
public_html
/
Upload File
HOME
/* ===================================================== INSIGHTS PAGE — PREMIUM CONSULTING DESIGN Hero • Featured Grid • SVG Icons • Whitepapers • Events Fully aligned with global style.css system ===================================================== */ /* ----------------------------- HERO ------------------------------ */ .insights-hero { padding: 100px 0 80px; background: linear-gradient(135deg, #041727, #0b3c67); text-align: center; color: #fff; } .insights-hero h1 { font-size: clamp(34px, 4vw, 54px); font-weight: 800; margin-bottom: 12px; } .insights-hero .sub { font-size: 1.25rem; opacity: 0.85; } /* ----------------------------- INTRO ------------------------------ */ .insights-intro { padding: 60px 0; text-align: center; } .insights-intro p { max-width: 850px; margin: 0 auto 20px; color: var(--muted); line-height: 1.7; font-size: 1.07rem; } .insights-intro blockquote { margin: 30px auto; max-width: 900px; font-size: 1.2rem; font-style: italic; color: var(--text); line-height: 1.6; } /* ----------------------------- FEATURED ARTICLES ------------------------------ */ .featured-section { padding: 70px 0; background: #f8fbff; } .featured-section h2 { text-align: center; margin-bottom: 30px; } .featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; } .featured-card { background: #fff; padding: 22px; border-radius: 16px; box-shadow: 0 12px 28px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05); transition: 0.25s ease; } .featured-card:hover { transform: translateY(-6px); } /* SVG ICON BADGES */ /* SVG ICONS — Using Lucide CDN (No Upload Needed) */ .icon-svg { width: 60px; height: 60px; border-radius: 12px; margin-bottom: 14px; background-color: rgba(11,115,255,0.12); background-size: 34px; background-position: center; background-repeat: no-repeat; } /* Agentic AI */ .icon-svg.agent { background-image: url('https://unpkg.com/lucide-static@latest/icons/brain-circuit.svg'); } /* Leadership / People */ .icon-svg.leadership { background-image: url('https://unpkg.com/lucide-static@latest/icons/users.svg'); } /* GCC / Buildings / Global capability centres */ .icon-svg.gcc { background-image: url('https://unpkg.com/lucide-static@latest/icons/building-2.svg'); } /* Responsible AI / Shield icon */ .icon-svg.ai { background-image: url('https://unpkg.com/lucide-static@latest/icons/shield-check.svg'); } /* ----------------------------- INSIGHTS CARD GRID ------------------------------ */ .insights-grid { padding: 70px 0; } .insights-grid h2 { text-align: center; margin-bottom: 30px; } .grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; } .card { background: #fff; padding: 22px; border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); transition: 0.25s ease; } .card:hover { transform: translateY(-6px); } /* ----------------------------- WHITEPAPERS ------------------------------ */ .whitepapers { padding: 70px 0; background: #fbfdff; } .whitepapers h2 { text-align: center; margin-bottom: 30px; } .wp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; } .wp-card { background: #fff; padding: 26px; border-radius: 16px; box-shadow: 0 12px 28px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05); } /* ----------------------------- EVENTS ------------------------------ */ .events-section { padding: 70px 0; } .events-section h2 { text-align: center; margin-bottom: 20px; } .events-section ul { max-width: 700px; margin: 20px auto; line-height: 1.6; color: var(--text); } /* ----------------------------- VIDEOS ------------------------------ */ .videos-section { padding: 70px 0; background: #f8fbff; } .videos-section h2 { text-align: center; margin-bottom: 30px; } .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-bottom: 20px; } .video-card { background: #fff; padding: 20px; border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); } /* CTA BUTTON (GRADIENT) */ .cta-btn { display: inline-block; padding: 12px 20px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #fff; border-radius: 12px; font-weight: 700; text-decoration: none; margin-top: 20px; box-shadow: 0 8px 20px rgba(11,115,255,0.25); transition: 0.25s ease; } .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,115,255,0.35); } /* ----------------------------- RESPONSIVE FIXES ------------------------------ */ @media (max-width: 820px) { .insights-hero { padding: 80px 0 60px; } .featured-grid, .grid-cards, .wp-grid, .video-grid { grid-template-columns: 1fr; } }