/* Minimal CSS - AHC Cloud Solutions */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font: 400 15px Lato, sans-serif; line-height: 1.8; color: #818181; padding-top: 0; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 20px 0; }
h1 { font-size: 24px; color: #555555; font-weight: 400; margin-bottom: 30px; }
h2 { font-size: 24px; text-transform: uppercase; color: #303030; font-weight: 600; margin-bottom: 30px; }
h4 { font-size: 19px; line-height: 1.375em; color: #303030; font-weight: 400; margin-bottom: 30px; }
h5 { font-size: 16px; font-weight: 600; color: #303030; }
p { margin-bottom: 15px; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section { padding: 25px; }
.section-dark { background-color: #002141; text-align: center; }
#offer { background-color: #f6f6f6; }
#solutions { background-color: #f6f6f6; }
#contact { background-color: #002141; color: #fff; }
.slider_wrapper { width: 100%; height: 450px; overflow: hidden; }
.slider_wrapper img { width: 100%; height: 100%; object-fit: cover; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 30px 0; }
.card { padding: 20px; text-align: center; }
.icon { font-size: 60px; margin-bottom: 15px; display: flex; justify-content: center; align-items: center; }
.icon svg { width: 60px; height: 60px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 30px 0; }
.gallery-item { text-align: center; }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; margin-bottom: 15px; filter: grayscale(70%) hue-rotate(200deg) saturate(120%); border: 1px solid #000; }

/* Navbar */
.navbar { position: fixed !important; top: 0; width: 100%; background-color: #002141; z-index: 9999; font-size: 12px !important; letter-spacing: 4px; font-family: Montserrat, sans-serif; padding: 12px 0; margin: 0; border: 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.navbar-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.navbar-brand { color: #fff; font-size: 12px; letter-spacing: 4px; cursor: default; margin: 0; }
.navbar-menu { display: flex; gap: 20px; }
.navbar-menu a { color: #fff; text-decoration: none; transition: background-color 0.3s; padding: 8px 12px; display: inline-block; }
.navbar-menu a:hover { color: #002141; background-color: #fff; border-radius: 2px; }
.navbar-toggle { display: none; flex-direction: column; background: none; border: none; cursor: pointer; gap: 5px; }
.icon-bar { width: 25px; height: 3px; background-color: #fff; border-radius: 2px; }
.navbar-menu.in { display: flex; }

.slideanim { visibility: hidden; }
.slide { animation: slide 1s; visibility: visible; }
@keyframes slide { from { opacity: 0; transform: translateY(70%); } to { opacity: 1; transform: translateY(0%); } }

.contact-wrapper { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; }
.contact-left { flex: 1; text-align: left; }
.contact-right { flex: 1; text-align: right; }

#drift { background-color: #002141; }
#drift h4, #drift h5 { color: #fff; }
#drift p { color: #e6e9ee; }

@media (max-width: 768px) {
  body { padding-top: 0; }
  .slider_wrapper { height: 300px; }
  .navbar { padding: 10px 0; }
  .navbar-menu { display: none; position: fixed; top: 0; right: -250px; width: 250px; height: 100vh; flex-direction: column; background-color: #001a2e; padding: 20px; gap: 10px; z-index: 9998; transition: right 0.3s ease; }
  .navbar-menu.in { display: flex; right: 0; }
  .navbar-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .contact-wrapper { flex-direction: column; gap: 30px; }
  .contact-left, .contact-right { text-align: left; }
  .contact-right { font-size: 12px; }
}
