* {
  margin: 0; 
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://t4.ftcdn.net/jpg/15/28/53/67/240_F_1528536719_yNwrjavWP0BG5wQZ2QQZDxxPcCZrjixq.jpg') center/cover no-repeat;
  color: white;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 60px;
}

/* --- Header Bar (Top Part) --- */
.header-bar {
  display: flex;
  justify-content: space-between; /* logo left, menu right */
  align-items: center;
  width: 100%;
}

/* Left Side */
.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo */
.logo img {
  color: blue;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 50%;
}

/* Login Icon */
.login-icon i {
  color: white;
  font-size: 22px;
  transition: color 0.3s ease;
}
.login-icon i:hover {
  color: #d1a218;
}

/* Right Side */
.right-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Menu Text */
.menu-text {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

/* This targets the <a> inside the .menu-text */
.menu-text a {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* make link same color as text */
  cursor: pointer;         /* make it clickable */
  display: inline-block;
  transition: color 0.3s ease;
}

.menu-text a:hover {
  color: #d1a218;          /* optional hover color */
}


/* Toggle Icon */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.menu-toggle:hover span {
  background: #d1a218;
}

/* 🟦 RESPONSIVE DESIGN */

/* --- For Laptops & Tablets (<=1200px) --- */
@media (max-width: 1200px) {
  .hero-content {
    padding: 30px 40px;
  }
  .logo img {
    height: 75px;
  }
}

/* --- For Tablets (<=992px) --- */
@media (max-width: 992px) {
  .header-bar {
    padding: 15px 30px;
  }

  .menu-text {
    font-size: 18px;
  }

  .logo img {
    height: 70px;
  }
}

/* --- For Mobile (<=768px) --- */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .right-header {
    gap: 10px;
  }

  .menu-text {
    display: none; /* Hide text menu on mobile */
  }

  .menu-toggle {
    display: flex; /* Show hamburger icon */
  }

  .logo img {
    height: 65px;
  }
}

/* --- For Small Mobile Screens (<=480px) --- */
@media (max-width: 480px) {
  .hero-content {
    padding: 20px;
  }

  .header-bar {
    padding: 10px 15px;
  }

  .logo img {
    height: 55px;
  }

  .login-icon i {
    font-size: 20px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
}

/* Section Background */
.hub_centre {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: ellipse(100% 90% at 50% 10%); /* Curved bottom */
}

.overlay-text {
  position: relative;
  text-align: center;
  color: white;
}

.overlay-text h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 40px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* Section Title */
h1 {
  font-weight: 500;
  margin-bottom: 10px;
}

/* Divider */
.divider {
  width: 50px;
  height: 3px;
  background: #0b76ef;
  margin: 10px auto 30px;
}

/* Dropdown */
.dropdown {
  margin-bottom: 30px;
}

select {
  padding: 10px;
  border: none;
  border-bottom: 2px solid #0b76ef;
  font-size: 16px;
  outline: none;
  cursor: pointer;
}

/* Card Layout */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  width: 320px;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: #fff;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b76ef;
  margin: 0 0 10px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .hub_centre {
    height: 400px;
  }

  .overlay-text h2 {
    font-size: 36px;
  }

  h1 {
    font-size: 28px;
  }

  .card-container {
    flex-direction: column;
    gap: 15px;
  }

  .card {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .hub_centre {
    height: 350px;
  }

  .overlay-text h2 {
    font-size: 28px;
  }

  h1 {
    font-size: 24px;
  }

  .divider {
    width: 40px;
  }

  .dropdown select {
    width: 100%;
  }

  .card-container {
    flex-direction: column;
    gap: 10px;
  }

  .card {
    width: 100%;
  }
}


    /* 🔸 Quick Connect Tab */
.quick-connect-tab {
  position: fixed;
  top: 40%;
  right: 0;
  background: blue;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 12px 8px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.quick-connect-tab:hover {
  background: blue;
  transform: translateX(-4px);
}

.quick-connect-tab i {
  transform: rotate(-90deg);
  font-size: 16px;
}

/* 🔸 Enquiry Panel */
.enquiry-panel {
  position: fixed;
  top: 0;
  right: -400px; /* Hidden initially */
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  transition: right 0.4s ease;
}

.enquiry-panel.open {
  right: 0;
}

/* 🔸 Panel Header */
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.panel-header h3 {
  margin: 0;
  font-size: 18px;
  color: blue;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

/* 🔸 Form Elements */
.enquiry-panel form select,
.enquiry-panel form input,
.enquiry-panel form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.enquiry-panel form textarea {
  resize: none;
  min-height: 60px;
}

.send-btn {
  background:blue;
  color: #fff;
  padding: 10px;
  border: none;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.send-btn:hover {
  background: blue;
}


/* Footer section */


.footer {
  background: #111; /* Dark background for contrast */
  color: #f5f5f5;
  text-align: center;
  padding: 20px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #d1a218;
}

.app-links img {
  width: 130px;
  margin: 10px 5px 0 0;
}

.download-btn {
  background: #f6c800;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: blue;
}

.connect-btn {
  background: #f6c800;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.connect-btn:hover {
  background: blue;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #000;
  background: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d1a218;
  color: #000;
}

.footer-column p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6c800;
}

.footer-bar p {
  margin: 0;
  color: #111; /* Dark text for readability */
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-bar p:hover {
  color: #f5d07f; /* Gold accent for hover */
}


/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 5px;
  }

  .connect-btn {
    width: 100%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .nav__links {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}