/* Font Import (Optional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../assets/catalogue.jpeg') 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: 30px;
  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;
  }
}
.image-box {
  position: relative;
  width: 100%;
  max-width: 1200px; 
  max-height: 200;
  margin: 24px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-box:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.4s ease;
}

.image-box:hover img {
  filter: brightness(1.1) contrast(1.1);
}

/* optional gradient overlay (aesthetic touch) */
.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.3));
  pointer-events: none;
}

.controls{
   margin-left:auto;
   display:flex;
   gap:12px;
   align-items:center
}
     .search{display:flex;
        align-items:center;
        background:var(--glass);
        padding:8px 12px;
        border-radius:999px;gap:8px}
    .search input{background:transparent;border:0;outline:0;color:#e6eef8;width:200px}
    .select, .btn{background:transparent;border:1px solid rgba(255,255,255,0.06);padding:10px 12px;border-radius:10px;color:#e6eef8}
    .btn{cursor:pointer;background:linear-gradient(90deg,rgba(255,255,255,0.03),transparent);border:0}

    /* catalog grid */
    .grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:18px}
    @media (max-width:1000px){.grid{grid-template-columns:repeat(3,1fr)}}
    @media (max-width:700px){.grid{grid-template-columns:repeat(2,1fr)}}
    @media (max-width:420px){.grid{grid-template-columns:1fr}}

    .card{background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent);border-radius:var(--radius);overflow:hidden;position:relative;box-shadow:0 6px 18px rgba(2,6,23,0.6);transition:transform .28s ease,box-shadow .28s ease}
    .card:hover{transform:translateY(-8px);box-shadow:0 20px 36px rgba(2,6,23,0.8)}
    .imgwrap{height:200px;background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));display:flex;align-items:center;justify-content:center}
    .imgwrap img{max-width:100%;max-height:100%;object-fit:cover;display:block}
    .meta{padding:14px}
    .meta h3{margin:0;font-size:16px;}
    .card .meta h3 {
  color: blue;
}

    .meta p{margin:6px 0 0;color:var(--muted);font-size:13px}
    .tags{display:flex;gap:8px;margin-top:10px;align-items:center}
    .chip{background:rgba(255,255,255,0.03);padding:6px 8px;border-radius:999px;font-size:12px}
    .price{margin-left:auto;font-weight:700;color:var(--accent)}

    .card-footer{display:flex;gap:8px;padding:12px;border-top:1px solid rgba(255,255,255,0.03);align-items:center}
    .card-footer button{flex:1;padding:10px;border-radius:10px;border:0;background:linear-gradient(90deg,var(--accent),#ff6a45);color:#071024;font-weight:600;cursor:pointer}
    .card-footer .info{flex:1;padding:10px;border-radius:10px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:var(--muted);cursor:pointer}

    /* modal lightbox */
    .modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:linear-gradient(180deg,rgba(2,6,23,0.7),rgba(2,6,23,0.85));z-index:60}
    .modal.open{display:flex}
    .modal-content{width:min(980px,96%);background:linear-gradient(180deg,#071428, rgba(7,18,36,0.6));border-radius:16px;padding:18px;display:grid;grid-template-columns:1fr 320px;gap:16px}
    @media (max-width:900px){.modal-content{grid-template-columns:1fr}}
    .large-img{height:520px;background:#071022;border-radius:12px;display:flex;align-items:center;justify-content:center;overflow:hidden}
    .large-img img{max-width:100%;max-height:100%;object-fit:contain}
    .thumbs{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}
    .thumbs img{width:72px;height:56px;object-fit:cover;border-radius:8px;cursor:pointer;opacity:.8}
    .thumbs img.active{outline:3px solid var(--accent);opacity:1}

    .details{color:#dbe9ff}
    .details h2{margin:0 0 6px}
    .details p{color:var(--muted);margin:0 0 10px}
    .detail-row{display:flex;align-items:center;gap:12px;margin:8px 0}
    .spec{background:rgba(255,255,255,0.02);padding:8px;border-radius:8px}

    /* carousel controls */
    .nav-btn{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:999px;border:0;background:rgba(0,0,0,0.45);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer}
    .nav-btn.left{left:12px}
    .nav-btn.right{right:12px}

    /* little decorative gradient */
    .brand-strip{height:6px;border-radius:8px;background:linear-gradient(90deg,var(--accent),#ffd27a);margin-top:12px}

    /* print friendly */
    @media print{
      body{background:#fff;color:#000}
      .controls, .btn{display:none}
      .card{box-shadow:none;border-radius:4px}
    }

    /* small helpers */
    .muted{color:var(--muted)}


    /* 🔸 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%;
}
}