/* MyMech Custom Styles */ :root { --navy-blue: #001f3f; --navy-blue-darker: #001428; --golden-yellow: #FFD700; --golden-yellow-dark: #F0C400; --off-white: #EFEFEF; --card-bg: #002a54; } body { background-color: var(--navy-blue); color: var(--off-white); font-family: 'Poppins', sans-serif; } .navbar-dark .navbar-brand { font-weight: 700; font-size: 1.5rem; } .golden-text { background: -webkit-linear-gradient(45deg, var(--golden-yellow), var(--golden-yellow-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .navbar-brand .golden-text { display: inline-block; } .hero { position: relative; padding: 10rem 0; background-size: cover; background-position: center; color: white; text-align: center; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 20, 40, 0.7); } .hero .container { position: relative; z-index: 2; } .hero h1 { font-size: 3.5rem; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); } .hero p { font-size: 1.25rem; margin-bottom: 2rem; } .btn-golden { background: linear-gradient(45deg, var(--golden-yellow), var(--golden-yellow-dark)); border: none; color: var(--navy-blue-darker); font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 8px; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease; } .btn-golden:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); color: black; } .btn-outline-golden { border: 2px solid var(--golden-yellow); color: var(--golden-yellow); font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 8px; transition: background-color 0.2s ease, color 0.2s ease; } .btn-outline-golden:hover { background-color: var(--golden-yellow); color: var(--navy-blue-darker); } .join-us-section { padding: 5rem 0; } .join-us-section h2 { font-weight: 700; margin-bottom: 3rem; } .role-card { background-color: var(--card-bg); border: 1px solid #003b73; border-radius: 8px; padding: 2rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; display: flex; flex-direction: column; justify-content: space-between; } .role-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } .role-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 1.5rem; } .role-card h3 { color: var(--golden-yellow); font-weight: 600; } .footer { background-color: var(--navy-blue-darker); padding: 2rem 0; color: #aaa; } .footer a { color: #ccc; text-decoration: none; } .footer a:hover { color: var(--golden-yellow); } /* Responsive Adjustments */ @media (max-width: 991.98px) { .navbar.bg-transparent { background-color: var(--navy-blue-darker) !important; } .navbar-collapse { padding: 1rem 0; } .navbar-nav .btn { width: 100%; text-align: center; } } @media (max-width: 767.98px) { .hero { padding: 6rem 0; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } } @media (max-width: 575.98px) { .hero h1 { font-size: 2.2rem; } .join-us-section { padding: 3rem 0; } .role-card { margin-bottom: 1rem; } }