:root{
  --primary:#0a84ff;
  --dark:#0b0f19;
  --light:#f5f7fb;
  --text-dark:#1f2937;
  --text-light:#6b7280;
  --radius:18px;
  --shadow:0 20px 40px rgba(0,0,0,.08);
}

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

body{
  background:#fff;
  color:var(--text-dark);
  line-height:1.7;
}



/* HEADER STYLES */
    header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
    background: linear-gradient(90deg, #0f2027, #0a1c22, #2c5364);
    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: 10px;
    color: #fff;
  }

    header .logo img {
        width: 100px;
        height: 80px;
    }

    header nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 25px;
        margin: 0;
        padding: 0;
    }

    header nav ul li {
        position: relative;
    }

    header nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        padding: 8px 5px;
    }

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



/* ================= HERO ================= */
.industry-hero{
  position:relative;
  min-height:90vh;
  background:url("/Assets/Images/Banner.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
}

.industry-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.55)
  );
}

.industry-hero > *{
  position:relative;
  z-index:2;
}

.industry-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-bottom:40px;
}

.industry-pills span{
  padding:10px 18px;
  border-radius:30px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.1);
}

.industry-hero h4{
  color:#4fb3ff;
  font-size:42px;
  font-weight:400;
  margin-bottom:20px;
}

.industry-hero h1{
  color:#fff;
  font-size:clamp(28px,4vw,44px);
  font-weight:700;
  max-width:1000px;
  margin:0 auto 20px;
}

.industry-hero p{
  color:#e5e7eb;
  margin-bottom:30px;
}

.primary-btn{
  display:inline-block;
  background: linear-gradient(145deg, #ff9500, #ff5c00);
  color:#fff;
  padding:14px 32px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 12px 30px rgba(10,132,255,.4);
}

/* ================= COMMON ================= */
.container{
  max-width:2000px;
  margin:auto;
  padding:90px 20px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.image-box img{
  width:80%;
  border-radius:var(--radius);
 
}

/* ================= INTRO ================= */
.industry-intro{
  background:var(--light);
}

.intro-card{
  background:#fff;
  border-radius:var(--radius);
  padding:60px;
  box-shadow:var(--shadow);
}

.benefits{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:20px;
}

.benefits li{
  list-style:none;
  background:var(--light);
  padding:12px 16px;
  border-radius:10px;
  font-size:14px;
}

/* ================= INDUSTRY SECTIONS ================= */
.industry-section{
  background:var(--light);
}

.industry-card{
  background:#fff;
  border-radius:var(--radius);
  padding:60px;
  box-shadow:var(--shadow);
}

.industry-section.alt{
  background:#fff;
}

.industry-card h2{
  font-size:34px;
  margin-bottom:16px;
}

.industry-card h2 span{
  color:var(--primary);
}

.industry-card p{
  color:var(--text-light);
  margin-bottom:20px;
}

.industry-card ul li{
  list-style:none;
  padding-left:26px;
  margin-bottom:10px;
  position:relative;
}

.industry-card ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--primary);
}



/* ================= CONTACT ================= */
.contact-section{
  background:linear-gradient(135deg,#0b0f19,#101726);
  color:#fff;
  text-align:center;
}

.contact-section span{
  color:var(--primary);
}

.contact-form{
  max-width:700px;
  margin:40px auto 0;
  display:grid;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:none;
}

.contact-form button{
  padding:14px;
  border:none;
  border-radius:10px;
  background: linear-gradient(145deg, #ff9500, #ff5c00);
  color:#fff;
  font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .grid-2{
    grid-template-columns:1fr;
  }

  .intro-card,
  .industry-card{
    padding:40px 24px;
  }

  .industry-hero h4{
    font-size:30px;
  }
}

  /* =========================
   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 */
  }