body {
  margin:0;
  font-family: Arial;
  background: #f5f7fb;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  height: 72px;                     /* FIX: stable header height */
  background: white;
  padding: 5px 20px;                  /* remove vertical padding */
  display: flex;
  align-items: center;              /* vertical centering */
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  z-index: 1500;
}

.logo h2 {
  font-size: 28px;
  margin: 0;
  line-height: 1.2;
}
.logo span {
  color: gray;
  font-size: 13px;
  line-height: 1;
}

.hero {
  text-align:center;
  padding-top: 70px;
  padding:40px 20px;
}

.hero {
  text-align:center;
  padding: 110px 20px 40px;   /* space for fixed header */
}

.tag {
  background:#e6efff;
  padding:8px 15px;
  border-radius:30px;
  display:inline-block;
  margin-bottom:15px;
}

.dropdown-menu{
  position:fixed;              /* attach to screen, not header */
  top:75px;                    /* directly under header */
  left:0;
  width:100%;
  background:white;
  display:none;
  flex-direction:column;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
  z-index:2000;                /* above header */
}

.dropdown-menu a{
  padding:15px 20px;
  text-decoration:none;
  color:#222;
  border-bottom:1px solid #eee;
  font-weight:600;
}

.dropdown-menu a:hover{
  background:#f5f7fb;
}

.menu {
  font-size: 26px;
  cursor: pointer;
  user-select: none;
  color: #111;
  background: #f0f2f5;
  padding: 10px 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
}

.mobile-menu{
  position:fixed;
  top:70px;
  right:-100%;
  width:200px;
  background:white;
  height:100vh;
  box-shadow:-5px 0 20px rgba(0,0,0,0.1);
  padding:20px;
  transition:0.3s;
  z-index:999;
}

.mobile-menu a{
  display:block;
  padding:15px 10px;
  text-decoration:none;
  color:#222;
  font-weight:600;
  border-bottom:1px solid #eee;
}

.mobile-menu.active{
  right:0;
}

.buttons button {
  padding:12px 25px;
  margin:10px;
  border-radius:10px;
  border:none;
}

.primary {
  background:#2457ff;
  color:white;
}

.outline {
  background:white;
  border:2px solid #2457ff;
  color:#2457ff;
}

.cards, .products {
  padding:20px;
}

.card, .product {
  background:white;
  padding:20px;
  border-radius:15px;
  margin-bottom:20px;
  box-shadow:0 5px 15px rgba(0,0,0,.20);
}

.card, .about {
  background:white;
  padding:20px;
  border-radius:15px;
  margin-bottom:20px;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.product img {
  width:100%;
  border-radius:15px;
}

.contact input, .contact textarea {
  width:90%;
  padding:15px;
  margin:10px 0;
  border-radius:10px;
  border:1px solid #ccc;
}

.contact button {
  background:#2457ff;
  color:white;
  width:100%;
  padding:15px;
  border:none;
  border-radius:10px;
}

footer {
  text-align:left;
  padding:20px;
}
.contact-section{
  background:white;
  padding:20px;
  border-radius:15px;
  margin-bottom:20px;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
  text-align:center;
}

.contact-box{
  max-width:500px;
  text-align: left;
  margin:auto;
  background:white;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.20);
}

.contact-box input,
.contact-box textarea{
  width:90%;
  padding:12px;
  margin:10px 0 20px;
  border-radius:8px;
  border:1px solid #ccc;
}

.contact-box button{
  width:100%;
  background:#2457ff;
  color:white;
  padding:15px;
  border:none;
  border-radius:10px;
  font-size:16px;
}

/* FOOTER */

.footer{
  background:#071a2f;
  color:white;
  padding:40px 20px 0;
}

.footer-container{
  display:grid;
  grid-template-columns:1fr;
  gap:15px;
}

.footer h4{
  margin-bottom:10px;
}

.footer ul{
  list-style:none;
  padding:0;
}

.since{
  color:gold;
  margin-top:10px;
}

.closed{
  color:#ff6b6b;
}

.footer-bottom{
  text-align:center;
  padding:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:30px;
  color:#aaa;
}

@media(min-width:768px){
  .footer-container{
    grid-template-columns:repeat(4,1fr);
  }
}

.image-track {
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    /* scrollbar-width: none; */
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.dots span {
    width: 8px;
    height: 8px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #333;
}

.footer-link a{
  color : white;
  margin-right: 20px;
  text-decoration: none;
}