/
home
/
whiteglobeco
/
public_html
/
Upload File
HOME
/* GLOBAL */ body { margin: 0; font-family: 'Inter', sans-serif; background: #f7f9fc; color: #1a1a1a; } h1, h2, h3 { color: #002D62; } .section { padding: 80px 12%; text-align: center; } .light-bg { background: #ffffff; } /* ============================================================================ HEADER – Clean, Compact, Responsive ============================================================================ */ .header { width: 100%; padding: 10px 5%; display: flex; align-items: center; justify-content: space-between; background: #ffffff; height: 75px; position: fixed; top: 0; left: 0; z-index: 9999; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .logo-area { display: flex; align-items: center; } .logo-img { height: 55px; } /* ============================================================================ NAVIGATION MENU ============================================================================ */ .navbar .nav-links { display: flex; list-style: none; gap: 36px; align-items: center; } .navbar ul li { position: relative; } .navbar ul li a { text-decoration: none; font-size: 16px; font-weight: 600; color: #002D62; padding: 8px 0; transition: 0.25s; } .navbar ul li a:hover { color: #0096FF; } /* ============================================================================ STABLE DROPDOWN (DESKTOP) ============================================================================ */ .dropdown { position: relative; } .mega-menu { position: absolute; top: 55px; left: 0; width: 250px; padding: 20px 25px; background: #fff; border-radius: 14px; box-shadow: 0 12px 35px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease; pointer-events: none; } .dropdown:hover .mega-menu, .dropdown.hover-active .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; } .dropdown::after { content: ""; position: absolute; top: 100%; left: 0; width: 250px; height: 25px; } .mega-col h4 { font-size: 15px; font-weight: 700; color: #002D62; margin-bottom: 10px; } .mega-menu a { display: block; margin-bottom: 10px; font-size: 15px; font-weight: 600; color: #002D62; text-decoration: none; transition: 0.2s ease; } .mega-menu a:hover { color: #0096FF; padding-left: 5px; } /* ============================================================================ MOBILE MENU ICON ============================================================================ */ .mobile-menu-icon { display: none; font-size: 32px; cursor: pointer; } /* ============================================================================ MOBILE RESPONSIVE ============================================================================ */ @media (max-width: 900px) { .mobile-menu-icon { display: block; } .navbar .nav-links { position: absolute; top: 75px; left: 0; width: 100%; flex-direction: column; background: #ffffff; padding: 20px 0; max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: all 0.35s ease; } .nav-links.nav-active { max-height: 700px; opacity: 1; pointer-events: auto; border-bottom: 1px solid #eee; } .dropdown:hover .mega-menu { display: none; } .dropdown.open .mega-menu { display: block !important; position: static; opacity: 1 !important; visibility: visible !important; transform: none !important; pointer-events: auto; padding: 12px 20px; background: #f4f8ff; border-radius: 10px; box-shadow: none; } } /* SPLIT HERO LAYOUT */ .hero-split { padding: 120px 10% 100px; } .hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; } /* LEFT CONTENT */ .hero-content { text-align: left; } .hero-content h1 { font-size: 48px; font-weight: 800; color: #ffffff; } .hero-sub { font-size: 20px; margin: 18px 0; color: #e5e7eb; } .hero-content h2 { font-size: 26px; margin-top: 10px; color: #ffffff; } .hero-desc { max-width: 640px; margin: 18px 0 35px; line-height: 1.6; color: #e5e7eb; } /* CTA */ .hero-cta { display: flex; gap: 18px; flex-wrap: wrap; } /* RIGHT IMAGE */ .hero-image img { width: 100%; border-radius: 18px; box-shadow: 0 25px 60px rgba(0,0,0,0.35); } /* MOBILE RESPONSIVE */ @media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-content { text-align: center; } .hero-desc { margin-left: auto; margin-right: auto; } .hero-cta { justify-content: center; } } /* BUTTONS – ALL BLUE */ .btn-primary { background: #0066ff; color: #ffffff; padding: 14px 28px; border-radius: 6px; text-decoration: none; font-weight: 600; display: inline-block; transition: all 0.3s ease; } .btn-primary:hover { background: #004fcc; transform: translateY(-2px); } /* GRID */ .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 50px; } /* CARDS */ .card, .theme-card, .insight-card { background: #f7f9fc; padding: 30px; border-radius: 14px; text-align: left; box-shadow: 0 12px 30px rgba(0,0,0,0.07); } /* QUOTE */ blockquote { font-size: 20px; font-weight: 600; color: #002D62; max-width: 900px; margin: 30px auto 50px; } /* IMPACT LIST */ .impact-list { max-width: 800px; margin: 40px auto 0; text-align: left; padding-left: 20px; } .impact-list li { margin-bottom: 12px; font-size: 16px; } /* CTA */ .cta-section { background: linear-gradient(135deg, #004A9F, #0066ff); color: #ffffff; padding: 90px 12%; text-align: center; } .cta-section h2 { color: #ffffff; } .cta-section p { max-width: 700px; margin: 20px auto 40px; } .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } /* RESPONSIVE */ @media (max-width: 768px) { .hero h1 { font-size: 36px; } .section { padding: 60px 8%; } } /* HERO – FORCE BLUE BACKGROUND */ .hero { background: linear-gradient(135deg, #002D62, #004A9F); color: #ffffff; } /* FORCE ALL HERO TEXT TO WHITE */ .hero h1, .hero h2, .hero p, .hero-sub, .hero-desc { color: #ffffff !important; }