* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #2c2c2c;
  background-color: #fafafa;
  line-height: 1.6;
}
/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
}

.logo-img {
    max-width: 260px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2c2c2c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #2c2c2c  ;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero {
    margin-top: 80px;
    height: 95vh;
    background: url('../img/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    max-width: 900px;
    padding: 3.5rem 2rem 0rem 2rem;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cards Section */
.cards-section {
    background: url(./assets/img/bgg-1-01.jpg) center/cover no-repeat;
    padding: 8rem 3rem;
}

.cards-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card {
    background-color: #ffffff;
    border: 1px solid #c4c4c4;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-15px);
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
}

.card-inner {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    top: 0;
    left: 0;
}

.card-front {
    z-index: 2;
}

.card-back {
    transform: rotateY(180deg);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Verification Section */
.verification-section {
  margin-top: 120px;
  padding: 6rem 3rem 8rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.verification-container {
  max-width: 700px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 5rem 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verification-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.verification-container .subtitle {
  font-size: 1rem;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 4rem;
  font-weight: 700;

}

.verification-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.form-group input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #e8e8e8;
  background-color: #fafafa;
  color: #2c2c2c;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #d4af37;
  background-color: #ffffff;
}

.form-group input::placeholder {
  color: #999;
  letter-spacing: 0.5px;
}

.submit-btn {
  display: inline-block;
  padding: 1.2rem 4rem;
  background-color: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





/* Verification Section */
.verification {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8rem 3rem;
  text-align: center;
}

.verification h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.verify-btn {
  display: inline-block;
  padding: 1.2rem 4rem;
  background-color: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  position: relative;
  overflow: hidden;
}

.verify-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.verify-btn:hover::before {
  left: 100%;
}

.verify-btn:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


/*///////////////////////////////////////////////////////*/


/* Login Section */
.login-section {
  margin-top: 120px;
  padding: 6rem 3rem 8rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  max-width: 550px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 5rem 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.login-container .subtitle {
  font-size: 1rem;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 4rem;
  font-weight: 300;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.form-group input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #e8e8e8;
  background-color: #fafafa;
  color: #2c2c2c;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #d4af37;
  background-color: #ffffff;
}

.form-group input::placeholder {
  color: #999;
  letter-spacing: 0.5px;
}

.forgot-password {
  text-align: right;
  margin-top: -1rem;
}

.forgot-password a {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #d4af37;
}

.login-btn {
  display: inline-block;
  padding: 1.2rem 4rem;
  background-color: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  width: 100%;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/*///////////////////////////////////////////////////////*/

/* Contact Section */
.contact-section {
  margin-top: 120px;
  padding: 6rem 3rem 8rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 800px;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 5rem 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.contact-container .subtitle {
  font-size: 1rem;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 4rem;
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  padding: 2rem;
  border-top: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background-color: #fafafa;
  border-top-color: #d4af37;
}

.contact-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.contact-item p {
  font-size: 1.1rem;
  color: #666;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.contact-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #d4af37;
}

/*////////////////////////////////////////////////////////*/


/* Admin Section */
.admin-section {
  margin-top: 100px;
  padding: 4rem 3rem 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.admin-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  color: #1a1a1a;
  text-align: center;
}

/* Form Container */
.form-container {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.input-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.form-group input,
.form-group select {
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #e8e8e8;
  background-color: #fafafa;
  color: #2c2c2c;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4af37;
  background-color: #ffffff;
}

.generate-btn {
  padding: 1rem 2.5rem;
  background-color: #d4af37;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.generate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.generate-btn:hover::before {
  left: 100%;
}

.generate-btn:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Data Table Container */
.table-container {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out;
  overflow-x: auto;
}

.table-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.data-table thead {
  background-color: #1a1a1a;
  color: #ffffff;
}

.data-table th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.data-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #2c2c2c;
}

.data-table tbody tr {
  transition: background-color 0.3s ease;
}

.data-table tbody tr:hover {
  background-color: #fafafa;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.no-data {
  text-align: center;
  padding: 3rem;
  color: #999;
  font-style: italic;
  letter-spacing: 0.5px;
}


/* Product Section */
.product-section {
    margin-top: 120px;
    padding: 4rem 3rem 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}

/* Product Info */
.product-info {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.product-details {
    margin-bottom: 3rem;
}

.detail-row {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.detail-row:first-child {
    border-top: 1px solid #e8e8e8;
}

.detail-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    min-width: 150px;
}

.detail-value {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* .order-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: 2px solid #d4af37;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background-color: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
} */

/* Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 3rem;
    border: 1px solid #e8e8e8;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    color: #999;
    float: right;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #d4af37;
}

.modal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #1a1a1a;
    clear: both;
}

.modal-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.quantity-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e8e8e8;
    background-color: #fafafa;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.quantity-input:focus {
    outline: none;
    border-color: #d4af37;
    background-color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: 2px solid #d4af37;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: transparent;
    color: #d4af37;
}





/*////////////////////////////////////////////////////////////*/

.err{
  background: red;
  color: #fff;
}


.action{}

.action .btn{
  border: 1px solid #e2e2e2;
  padding: 5px 10px;
  background-color: #d4af37;
  text-decoration: none;
  color: #fff;
  border-radius: 2px;

}






/*////////////////////////////////*/
#pagination{
  padding: 20px;
  text-align: right;
}

#pagination .link{
  background-color: #9E9E9E;
  padding: 5px 15px;
  color: #fff;
  text-decoration: none;
}

#pagination .link.selected{
    background-color: #607D8B;
}


/*///////////////////////////*/

/* Footer */
footer {
  background-color: #0f0f0f;
  color: #999;
  padding: 4rem 3rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #999;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-bottom p a {
  color: #999;
  font-style: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom p a:hover {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 968px) {
  .nav-container {
    padding: 1rem 2rem;
  }

  .logo-img {
    max-width: 140px;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 2rem;
    border-top: 1px solid #e8e8e8;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    height: 75vh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cards-section-title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
  }

  .cards-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      padding: 0 1rem;
      display: block;

  }

  .cards-container .card{
      margin-bottom: 20px;
  }

  .card-title {
      font-size: 1.3rem;
      padding: 1.5rem 1rem 1rem;
  }


  .verification-container {
    padding: 4rem 2.5rem;
  }

  .verification-container h1 {
    font-size: 2.8rem;
  }

  .admin-section {
    padding: 3rem 2rem 5rem;
  }

  .admin-title {
    font-size: 2.5rem;
  }

  .input-form {
    grid-template-columns: 1fr;
  }

  .form-container,
  .table-container{
    padding: 2rem;
  }



  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .verification h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-img {
    max-width: 120px;
  }

  .hero {
    height: 70vh;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .cards-section {
      padding: 5rem 1.5rem;
  }

  .cards-section-title {
      font-size: 2rem;
      margin-bottom: 2.5rem;
  }

  .cards-container {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      max-width: 350px;
      margin: 0 auto;
  }

  .card-title {
      font-size: 1.2rem;
      padding: 1.2rem 0.8rem 0.8rem;
  }

  .contact-section {
    margin-top: 90px;
    padding: 3rem 1.5rem 5rem;
  }

  .contact-container {
    padding: 3rem 2rem;
  }

  .contact-container h1 {
    font-size: 2.2rem;
  }

  .contact-container .subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }

  .contact-info {
    gap: 2rem;
  }

  .contact-item {
    padding: 1.5rem;
  }

  .contact-item h3 {
    font-size: 1.4rem;
  }

  .contact-item p {
    font-size: 1rem;
  }


  .cards-section,
  .verification {
    padding: 4rem 1.5rem;
  }

  .verification h2 {
    font-size: 2rem;
  }

  .verify-btn {
    padding: 1rem 3rem;
    font-size: 0.85rem;
  }

  /* .logo-img { max-width: 120px; } */
  .verification-section, .product-section {
    margin-top: 90px;
    padding: 3rem 1.5rem 5rem;
  }

  .verification-container{
    padding: 3rem 2rem;
  }

  .verification-container h1, .product-container h1 {
    font-size: 2.2rem;
  }

  .verification-container .subtitle, .product-container .subtitle {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-weight: 700;
  }


  .product-container{
    display: block;
    padding: 1rem;

  }

  .image-gallery{
    display: none;
  }
  .product-info{
    padding: 15px;
  }

  .product-info h1{
    font-size: 28px;
  }


  .detail-row{
    display: block;
  }
  .detail-label{
    width: 100%;
    text-align: left;
  }

  .detail-value{
    width: 100%;
    text-align: right;
  }

  .admin-section {
    padding: 2rem 1.5rem 4rem;
  }

  .admin-title {
    font-size: 2rem;
  }

  .form-container,
  .table-container {
    padding: 1.5rem;
  }

  .form-container h2,
  .table-container h2 {
    font-size: 1.6rem;
  }

  .data-table th,
  .data-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .generate-btn {
    width: 100%;
    padding: 1rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Card animation on scroll */
@media (prefers-reduced-motion: no-preference) {
  .card {
    animation: fadeInUp 0.6s ease-out backwards;
  }

  .card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .card:nth-child(3) {
    animation-delay: 0.3s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
