<style>* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; line-height: 1.6; color: #333; } img { max-width: 100%; height: auto; display: block; } a { text-decoration: none; color: inherit; } /* Navbar - Full Width */.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; width: 100%; } .nav-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 30px; } .navbar h2 { color: #2a5298; font-size: 1.5rem; } .nav-menu { display: flex; list-style: none; gap: 30px; } .nav-menu a { font-weight: 500; padding: 10px 15px; } .nav-menu a:hover { color: #2a5298; } .dropdown { position: relative; } .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); min-width: 220px; padding: 10px 0; transition: opacity 0.3s ease; } .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; animation: fadeIn 0.2s; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .dropdown-menu a { display: block; padding: 10px 20px; } .dropdown-menu a:hover { background: #f5f5f5; color: #2a5298; } .menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; } /* Hero */.hero { position: relative; width: 100%; height: 450px; overflow: hidden; background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 50%, #3b73d1 100%); } .hero img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; } .hero-overlay { position: absolute; inset: 0; background: rgba(30, 60, 114, 0.6); z-index: 1; } .hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; } .hero h1 { color: #fff; font-size: 2.5rem; font-weight: 700; margin-bottom: 30px; text-align: center; } .btn-hero { display: inline-block; background: linear-gradient(to bottom, #D81324 0%, #B01019 100%); color: #fff; padding: 15px 40px; border-radius: 5px; font-weight: 600; font-size: 1.15rem; border: 2px solid #fff; box-shadow: 0 3px 0 #8a0c14, 0 5px 20px rgba(216, 19, 36, 0.4); transition: all 0.3s ease; } .btn-hero:hover { transform: translateY(-2px); box-shadow: 0 1px 0 #8a0c14, 0 8px 25px rgba(216, 19, 36, 0.6); } /* Container */.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .section { padding: 60px 0; } /* Grid */.grid { display: grid; gap: 30px; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } /* Service Cards */.service-card { display: flex; gap: 20px; background: #fff; padding: 40px 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); align-items: flex-start; } .service-card:nth-child(2) { background: #f8f8f8; } .service-card .icon-box { min-width: 60px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .service-card .icon-box svg { width: 48px; height: 48px; fill: #D81324; } .service-card h5 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; } /* About Section */.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-image { position: relative; min-height: 400px; } .about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; } .about-badge { position: absolute; top: -20px; right: -20px; background: rgba(0, 0, 0, 0.08); padding: 30px 40px; border-radius: 8px; text-align: center; } .about-badge h1 { font-size: 3rem; color: #D81324; margin: 0; } .about-badge h4 { color: #fff; margin: 0; } .about-item { display: flex; gap: 15px; margin-bottom: 20px; } .about-item .number { background: #f8f8f8; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #D81324; flex-shrink: 0; } /* Stats Section */.stats { background: #111; color: #fff; } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; } .stat-item .icon-box { display: flex; justify-content: center; margin-bottom: 15px; } .stat-item .icon-box svg { width: 48px; height: 48px; fill: #D81324; } .stat-item h2 { font-size: 2.5rem; margin: 10px 0; } /* Machine Cards */.machine-card { text-align: center; } .machine-card img { width: 80px; height: 80px; background: #f8f8f8; border-radius: 50%; padding: 10px; margin: 0 auto 15px; } .machine-card h5 { margin: 10px 0 5px; font-size: 1.2rem; font-weight: 700; } .machine-card p { font-size: 1rem; } .machine-card .box { background: #f8f8f8; padding: 20px; border-radius: 8px; margin-top: 15px; } /* Text */.text-primary { color: #D81324; } .text-uppercase { text-transform: uppercase; } .text-center { text-align: center; } h1 { font-size: 2rem; margin-bottom: 20px; } h4 { font-size: 1.3rem; margin-bottom: 15px; } h6 { font-size: 1rem; margin-bottom: 10px; font-weight: 600; } p { margin-bottom: 15px; } /* Footer */.footer { background: #111; color: #fff; padding: 60px 0 20px; } .footer h4 { margin-bottom: 20px; } .footer a { color: #fff; } .footer a:hover { color: #D81324; } .footer .copyright { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; text-align: center; } /* Responsive */@media (max-width: 992px) { .menu-toggle {  display: block; }  .nav-menu {  display: none;  position: absolute;  top: 100%;  left: 0;  right: 0;  background: #fff;  flex-direction: column;  padding: 20px;  box-shadow: 0 5px 15px rgba(0,0,0,0.1);  gap: 0; }  .nav-menu.active {  display: flex; }  .dropdown-menu {  position: static;  box-shadow: none;  padding-left: 20px; }  .dropdown:hover .dropdown-menu {  display: none; }  .dropdown.active .dropdown-menu {  display: block; }  .grid-3, .grid-2, .stats-grid {  grid-template-columns: 1fr; }  .about-grid {  grid-template-columns: 1fr; }  .hero {  height: 350px; }  .hero h1 {  font-size: 1.8rem; } } @media (max-width: 576px) { .grid-auto {  grid-template-columns: 1fr; } } .navbar img { height: 40px; width: auto; }</style>