* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    html, body {
      height: 100%;
    }

    body {
      background: #f5f7fa;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 80px;
      background: linear-gradient(90deg, #08262c,#124a59);
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 5px;
      color: #fff;
    }

    .logo img {
      width: 100%;
      height: auto;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
      position: relative;
    }

    nav ul li {
      position: relative;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
      cursor: pointer;
    }

    nav a:hover {
      color: #00c6ff; 
    }

    .connect-btn {
      padding: 8px 18px;
      background: linear-gradient(145deg, #ff9500, #ff5c00);
      color: #fff;
      border-radius: 25px;
      border: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .connect-btn:hover {
      background: linear-gradient(145deg, #ffb84d, #ff6e1a);
    }

    /* Mega Dropdown Base */
header nav ul {
  position: relative;
}

.menu-item {
  position: relative;
}

.menu-btn {
  cursor: pointer;
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  transition: 0.3s;
}

.menu-btn:hover {
  color: #ff9500;
}

    /* Connect Section */
    .connect {
      padding: 60px 80px;
      background: #f5f7fa;
      border-radius: 10px;
      margin: 40px 80px;
      flex: 1;
    }

    .connect h2 {
      color: #203a43;
      font-size: 28px;
      margin-bottom: 20px;
      text-align: center;
    }

    .connect p {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 30px;
    }

    .connect-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 500px;
      margin: 0 auto;
    }

    .connect-form .form-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .connect-form label {
      font-weight: 500;
      color: #203a43;
      font-size: 14px;
    }

    .connect-form input,
    .connect-form textarea {
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 15px;
      outline: none;
      width: 100%;
    }

    .connect-form textarea {
      resize: vertical;
      min-height: 100px;
    }

    .connect-form button {
      padding: 12px;
      border: none;
      border-radius: 25px;
      background: linear-gradient(145deg, #ff9500, #ff5c00);
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .connect-form button:hover {
      background: linear-gradient(145deg, #ffb84d, #ff6e1a);
    }

    /* Success message */
    #successMsg {
      display: none;
      color: green;
      text-align: center;
      font-weight: bold;
      margin-bottom: 20px;
    }

    /* Map Section */
    .map-section {
      padding: 20px 20px;
      background: #f5f7fa;
      border-radius: 10px;
      margin: 20px 80px;
    }

    @media (max-width: 900px) {
      .connect {
        margin: 20px;
        padding: 40px 20px;
      }

      .map-section {
        margin: 20px;
        padding: 20px;
      }

      .map-section iframe {
        width: 900px;
        height: 300px;
      }
    }

   /* =========================
   FOOTER
========================= */

.hook-footer{
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color:#dcdcdc;
  padding:60px 25px 30px;
  position: relative;
}

.hook-footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr;
  gap:45px;
}

.footer-block h3{
  margin-bottom:10px;
  color:#fff;
}

.footer-block .brand span{
  color:#ff9500;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#dcdcdc;
  text-decoration:none;
}

.footer-links a:hover{
  color:#ff9500;
}

/* newsletter */
.newsletter{
  display:flex;
  gap:10px;
  margin-top:8px;
}

.newsletter input{
  flex:1;
  padding:10px;
  border-radius:4px;
  border:none;
}

.newsletter button{
  background:#ffcc52;
  border:none;
  padding:10px 18px;
  cursor:pointer;
  font-weight:600;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:12px;
  font-size:14px;
}

/* =========================
   VERTICAL SOCIAL ICONS
========================= */

.vertical-social{
  position:absolute;
  right:15px;
  bottom:70px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.vertical-social a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.3);
  border-radius:4px;
  color:#fff;
  transition:.3s;
}

.vertical-social a:hover{
  background:#ff9500;
  color:#000;
}

/* responsive */
@media(max-width:900px){
  .hook-footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .hook-footer-container{
    grid-template-columns:1fr;
  }
  .vertical-social{
    right:10px;
    bottom:30px;
  }
}


/* Scroll To Top Button */
.scroll-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  background:#ffcc52;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1000;
}

.scroll-top:hover{
  transform: translateY(-3px);
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
}

:root{
  /* edit tab size here anytime */
  --product-tab-width: 100%;
  --product-tab-height: 50px;
}

@media (max-width: 768px)
{
  header {
    padding: 20px 10px;
  }
.logo {
    width: 90px;              /* smaller logo for mobile */
    margin-right: 10px;
  }
  nav .hamburger
  {
    background: transparent;  
    border: none;
    
  }
  .icon-cross {
    display: none;
  }

  .hamburger.open .icon-hamburger {
    display: none;
  }

  .hamburger.open .icon-cross {
    display: block;
  }
  /* Hide cross by default */
.icon-cross {
  display: none;
}

/* When button has .open, swap icons */
.hamburger.open .icon-hamburger {
  display: none;
}
.hamburger.open .icon-cross {
  display: block;
}

  nav .menu {
    display: none;
    flex-direction: column;
    background: #124a59;
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.2); /* separation line */
  }

  nav .menu.open {
    display: flex;
    gap: 18px; /* spacing between items */
  }

  nav .menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  nav .menu a:last-child {
    border-bottom: none; /* remove line under last item */
  }

  /* Orange button for Let's Connect */
  nav .menu a.connect-btn {
    background: #ff9500;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    text-align: center;
    transition: 0.3s;
  }

  nav .menu a.connect-btn:hover {
    background: #fff;
    color: #ff9500; /* text turns orange on hover */
  }

}
@media (min-width: 768px)
{
  
   header .hamburger
   {
    display: none;
   }

    nav .menu {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
      position: relative;
    }

    nav ul li {
      position: relative;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
      cursor: pointer;
    }

    nav a:hover {
      color: #00c6ff; 
    }

    .connect-btn {
      padding: 8px 18px;
      background: linear-gradient(145deg, #ff9500, #ff5c00);
      color: #fff;
      border-radius: 25px;
      border: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .connect-btn:hover {
      background: linear-gradient(145deg, #ffb84d, #ff6e1a);
    }

    /* Mega Dropdown Base */
header nav a {
  position: relative;
}
}
.logo {
    display: inline-block;       /* keeps logo inline with nav */
    width: 150px;                /* default desktop size */
    max-width: 100%;             /* prevents overflow */
    margin-right: 20px;          /* spacing from nav */
  }

  @media (max-width: 768px) {
    .logo {
        width: 90px;
        margin-right: 10px;
    }
}