/* ... in the <style> block ... */
.team-card:hover {
    transform: rotateX(10deg) rotateY(10deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 119, 182, 0.5);
}

.team-card1:hover { /* This was added/corrected */
    transform: rotateX(10deg) rotateY(10deg) scale(1.05); 
    box-shadow: 0 30px 60px rgba(0, 119, 182, 0.5);
}
    .footer-section {
    background: #203a43;  /* Dark background */
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff9500; /* Accent color */
}

.footer-column p, .footer-column li {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ff9500;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: #ccc;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


    .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;
  }
    body {
        margin: 0;
        padding: 0;
        font-family: "Poppins", sans-serif;
        background: rgba(255, 255, 255, 0.2);
        color: #000000;
        overflow-x: hidden;
          
    }
    .watermark {
  position: relative;
  overflow: hidden;
}

.watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("logo_white_bg.PNG") center/80% no-repeat;
  opacity: 0.10;          /* watermark transparency */
  pointer-events: none;
  z-index: 0;
}

/*.watermark * {
  position: relative;
  z-index: 1;
}*/


   
/* 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: 100px;
      height: 80px;
    }

    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;
}

    /* Main Container */
    .container {
        padding: 20px;
        max-width: 1200px;
        margin: auto;
        margin-top: 30px;
    }

    .title {
        text-align: center;
        font-size: 45px;
        color: #0077b6;
        font-weight: 700;
        margin-bottom: 20px;
    }

    /* ABOUT SECTION */
    .about-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 40px;
    }

    .about-clean {
        flex: 1 1 500px;
        background: none;
        padding: 10px;
    }

    .about-clean h2 {
        color: #0077b6;
        margin-bottom: 15px;
        font-size: 30px;
    }

    .about-clean p {
        font-size: 17px;
        line-height: 1.7;
    }

    .about-img {
        width: 550px;
        border-radius: 1000px;
        transform-style: preserve-3d;
        transition: 0.3s ease;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .about-img:hover {
        transform: rotateY(12deg) rotateX(-5deg) scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 119, 182, 0.5);
    }

    /* TEAM SECTION */
    .team-section {
        margin-top: 80px;
        text-align: center;
    }

    .team-section h2 {
        font-size: 38px;
        color: #0077b6;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .team-container {
        display: flex;
        gap: 40px;
        margin-top: 30px;
    }

    .team-card {
        width: 260px;
        background: #eef9ff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        transform-style: preserve-3d;
        transition: 0.3s ease-in-out;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .team-card:hover {
        transform: rotateX(10deg) rotateY(10deg) scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 119, 182, 0.5);
    }

    .team-img {
         width: 200px;
        height: 300px;
        object-fit: cover;
        
        margin-bottom: 15px;
      
    }

    /* TEAM SECTION 1 (NEW) */
    .team-section1 {
        margin-top: 80px;
        text-align: center;
    }

    .team-section1 h2 {
        font-size: 38px;
        color: #0077b6;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .team-container1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 30px;
    }
@media (max-width: 768px) {
  .team-container {
    flex-wrap: nowrap;            /* prevent wrapping */
    overflow-x: auto;             /* enable horizontal scroll */
    scroll-snap-type: x mandatory;/* smooth snapping */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .team-card {
    flex: 0 0 80%;                /* each card takes 80% of viewport width */
    scroll-snap-align: center;    /* snap each card to center */
    margin-right: 15px;
  }

  .team-card:last-child {
    margin-right: 0;
  }

  /* Hide scrollbar for cleaner look */
  .team-container::-webkit-scrollbar {
    display: none;
  }
}
    .team-card1 {
        width: 260px;
        background: #eef9ff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        transform-style: preserve-3d;
        transition: 0.3s ease-in-out;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    /* ADDED/CORRECTED 3D HOVER EFFECT FOR team-card1 */
    .team-card1:hover {
        transform: rotateX(10deg) rotateY(10deg) scale(1.05); 
        box-shadow: 0 30px 60px rgba(0, 119, 182, 0.5);
    }

    .team-card1 .team-img {
         width: 200px;
        height: 300px;
        object-fit: cover;
        
        margin-bottom: 15px;
    }

    /* Footer */
    /* =========================
   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:90px;
  }
}


/* 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;
}
      .team-img1 {
        width: 200px;
        height: 300px;
        object-fit: cover;
        
        margin-bottom: 15px;
    }

@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: 90%;
    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 */
  }
  .about-img
  {
    width: 350px;
  }

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