/
home
/
whiteglobeco
/
public_html
/
Upload File
HOME
:root { --primary: #002d62; --primary-dark: #001c3d; --accent: #0096ff; --bg: #f5f8fc; --text: #0b1f38; --muted: #556b87; --white: #ffffff; --radius-lg: 18px; --shadow: 0 14px 36px rgba(0,0,0,0.08); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; } .container { width: 92%; max-width: 1200px; margin: auto; } .section { padding: 100px 0; } .light-bg { background: var(--white); } /* ============================================================================ 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; } } /* ================= HERO (SPLIT LAYOUT) ================= */ .hero-split { background: linear-gradient(135deg, #002d62, #0056b3); padding: 160px 0 120px; color: #ffffff; } .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; } /* LEFT CONTENT */ .hero-content { text-align: left; } .hero-content h1 { font-size: 56px; font-weight: 900; margin: 22px 0; line-height: 1.15; } .hero-content p { font-size: 20px; max-width: 620px; opacity: 0.95; } /* BADGE */ .badge { display: inline-block; background: rgba(255,255,255,0.18); padding: 8px 22px; border-radius: 40px; font-size: 13px; letter-spacing: 1.2px; } /* CTA */ .hero-cta { margin-top: 36px; display: flex; gap: 20px; } .btn { background: #0096ff; color: #ffffff; padding: 16px 34px; border-radius: 10px; font-weight: 700; text-decoration: none; box-shadow: 0 10px 28px rgba(0,150,255,0.35); transition: all 0.3s ease; } .btn:hover { background: #007dd6; transform: translateY(-3px); } /* RIGHT IMAGE */ .hero-image { display: flex; justify-content: center; } .hero-image img { width: 100%; max-width: 520px; border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,0.35); } /* ================= MOBILE RESPONSIVE ================= */ @media (max-width: 900px) { .hero-split { padding: 120px 0 90px; } .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero-content { text-align: center; } .hero-content h1 { font-size: 36px; } .hero-content p { font-size: 16px; margin: auto; } .hero-cta { flex-direction: column; align-items: center; } .btn { width: 100%; max-width: 320px; text-align: center; } .hero-image img { max-width: 100%; } } .btn { background: var(--accent); color: var(--white); padding: 16px 34px; border-radius: 10px; font-weight: 700; text-decoration: none; box-shadow: 0 10px 28px rgba(0,150,255,0.35); transition: all 0.3s ease; } .btn:hover { background: #007dd6; transform: translateY(-3px); } /* ================= TYPOGRAPHY ================= */ h2 { font-size: 38px; font-weight: 800; margin-bottom: 22px; color: var(--primary); } .section-text { font-size: 18px; color: var(--muted); max-width: 820px; } /* ================= GRID ================= */ .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; } /* ================= LIST ================= */ .list { list-style: none; } .list li { padding-left: 32px; margin-bottom: 16px; position: relative; } .list li::before { content: "✔"; position: absolute; left: 0; color: var(--accent); font-weight: 700; } /* ================= CARDS ================= */ .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; margin-top: 50px; } .cards.three { grid-template-columns: repeat(3, 1fr); } .card { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: all 0.35s ease; border-top: 4px solid transparent; } .card:hover { transform: translateY(-6px); border-top: 4px solid var(--accent); } /* ================= HIGHLIGHT ================= */ .highlight { background: linear-gradient(135deg, #e9f3ff, #ffffff); padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow); } /* ================= CTA ================= */ .cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 90px 0; text-align: center; color: var(--white); } .cta h2 { color: var(--white); font-size: 36px; margin-bottom: 30px; } /* ================= RESPONSIVE ================= */ @media (max-width: 900px) { .grid-2, .cards, .cards.three { grid-template-columns: 1fr; } .hero h1 { font-size: 38px; } .hero p { font-size: 16px; } .hero-cta { flex-direction: column; } .btn { width: 100%; text-align: center; } h2 { font-size: 28px; text-align: center; } } /* ========================= CALLBACK SECTION ========================= */ .callback-section { margin-top: 80px; } /* Blue Top Bar */ .callback-top { background: linear-gradient(135deg, #002c5f, #0056d2); color: #fff; text-align: center; padding: 60px 20px; } .callback-top h2 { font-size: 32px; font-weight: 800; } .callback-top p { margin: 10px 0 20px; font-size: 16px; opacity: 0.9; } .callback-btn { display: inline-block; background: #00b4ff; color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; } /* Form Area */ .callback-form-area { background: #ffffff; text-align: center; padding: 70px 20px; } .callback-form-area h3 { font-size: 28px; margin-bottom: 8px; } .callback-form-area p { font-size: 15px; margin-bottom: 30px; color: #555; } /* Form */ .callback-form-area form { max-width: 420px; margin: auto; } .callback-form-area input { width: 100%; padding: 14px; margin-bottom: 14px; border-radius: 8px; border: 1px solid #cfd9ff; font-size: 15px; } .callback-form-area button { width: 100%; padding: 14px; background: #0096ff; border: none; border-radius: 8px; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; } .callback-form-area button:hover { background: #0073cc; } /* ===================================================== PROJECT ENGAGEMENT FORM – ENTERPRISE STYLE ===================================================== */ #project-form { background: #f8fafc; padding: 100px 0; } #project-form h2 { text-align: center; font-size: 40px; font-weight: 900; color: var(--primary); margin-bottom: 50px; } /* FORM CARD */ #project-form .form { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; align-items: center; background: #ffffff; padding: 40px 44px; border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,0.08); } /* INPUTS & SELECTS */ #project-form input, #project-form select { width: 100%; height: 52px; padding: 0 16px; font-size: 15px; border-radius: 10px; border: 1px solid #d6e0ea; background: #ffffff; font-family: 'Inter', sans-serif; transition: all 0.25s ease; } /* PLACEHOLDER */ #project-form input::placeholder { color: #94a3b8; } /* FOCUS */ #project-form input:focus, #project-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,150,255,0.15); } /* CTA BUTTON */ #project-form button { grid-column: span 2; height: 56px; background: linear-gradient(135deg, #0096ff, #007dd6); color: #ffffff; font-weight: 800; font-size: 15px; border-radius: 14px; border: none; cursor: pointer; box-shadow: 0 18px 40px rgba(0,150,255,0.4); transition: all 0.3s ease; } /* BUTTON HOVER */ #project-form button:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgba(0,150,255,0.5); } /* ===================================================== RESPONSIVE – LAPTOP / TABLET ===================================================== */ @media (max-width: 1200px) { #project-form .form { grid-template-columns: repeat(4, 1fr); } #project-form button { grid-column: span 4; } } /* ===================================================== RESPONSIVE – MOBILE ===================================================== */ @media (max-width: 600px) { #project-form .form { grid-template-columns: 1fr; padding: 28px; } #project-form button { grid-column: span 1; height: 54px; } } /* ================= CTA BUTTON – PERFECT TEXT ALIGNMENT ================= */ .btn { display: flex; align-items: center; /* vertical center */ justify-content: center; /* horizontal center */ text-align: center; min-height: 64px; /* ensures balanced height */ padding: 0 36px; background: var(--accent); color: var(--white); border-radius: 14px; font-weight: 700; font-size: 16px; line-height: 1.2; /* fixes multi-line spacing */ text-decoration: none; box-shadow: 0 14px 35px rgba(0,150,255,0.35); transition: all 0.3s ease; } .btn:hover { background: #007dd6; transform: translateY(-3px); }