/* --- Global Variables --- */
:root {
  --primary-color: #37b4a7;
  --secondary-color: #26ebd7;
  --light-teal: #e0f2f1;
  --dark-text: #333;
  --light-text: #ffffff;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --font-family: "Poppins", sans-serif;
}

/* --- Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Body --- */
body {
  font-family: var(--font-family);
  background-color: var(--light-teal);
  color: var(--dark-text);
}

/* --- Header --- */
:root {
  --primary-color: #1f2937; /* Dark gray */
  --secondary-color: #14b8a6; /* Teal accent */
  --light-text: #d1d5db;
  --white: #ffffff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  padding-top: 80px; 
}

/* Header Styling */
header {
  position: fixed;          /* Keeps it visible on scroll */
  top: 0;                   /* Stick to top */
  left: 0;
  width: 100%;
  background-color: #ffffff; /* Match your theme */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;            /* Ensure it stays above everything */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Right section (button + email) */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.catalogue-btn {
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  text-decoration: none; 
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.catalogue-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 15px;
  text-decoration: none;
}

.email-link i {
  color: var(--primary-color);
  font-size: 16px;
}

.email-link:hover {
  color: var(--secondary-color);
}

/* Responsive */

/* --- Card Layout --- */
.card-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.card {
  background: var(--white);
  width: 30%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 20px 0 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Buttons --- */
.download-btn,
#submit-btn,
#load-more-btn {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-bottom: 20px;
}

.download-btn:hover,
#submit-btn:hover,
#load-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 121, 107, 0.3);
}

/* --- Load More Button --- */
#load-more-btn {
  display: block;
  margin: 40px auto;
  width: fit-content;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-content {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: var(--dark-text);
}

.lightbox-content h2 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-color);
}

#enquiry-form {
  display: flex;
  flex-direction: column;
}

#enquiry-form label {
  margin: 10px 0 5px;
  font-weight: 600;
}

#enquiry-form input,
#enquiry-form textarea {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-family: var(--font-family);
}

#enquiry-form input:focus,
#enquiry-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 121, 107, 0.3);
}

#enquiry-form textarea {
  height: 100px;
  resize: vertical;
}

/* --- Footer --- */
footer {
  background-color: #1f2937;
  color: #f3f4f6;
  text-align: center;
  padding: 10px ;
  margin-top: 60px;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

footer::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  margin: 0 auto 20px;
  border-radius: 10px;
}

footer p {
  margin: 8px 0;
  font-size: 0.95rem;
}

footer .contact-info {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

footer .contact-info p:first-child {
  color: var(--secondary-color);
  font-weight: 600;
}

footer .foot{
    margin-top:10px ;
    
}
/* --- Responsive Design --- */
@media (max-width: 992px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  .logo img {
    height: 55px;
  }

  .card {
    width: 100%;
  }

  footer {
    padding: 30px 15px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 4px 10px;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .logo img {
    height: 40px;
  }

  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .catalogue-btn {
    width: auto;
    font-size: 14px;
    padding: 6px 12px;
    background: #000;
    background-color: var(--secondary-color);
    color: var(--white);
  }

  .email-link {
    font-size: 13px;
    display: none;
  }
}
