:root {
  --color-dark: #1a1a1a;
  --color-light: #f8f9fa;
  --color-orange: #3A9FC0;

  --color-gray: #777777;
  --color-light: #f7f7f7;
  --color-white: #ffffff;
  --color-border: #e5e5e5;
  --color-accent: #5FB3CE;

  --font-main: "Poppins", sans-serif;

  --radius-lg: 20px;
  --radius-pill: 30px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: var(--font-main);
  color: var(--color-dark);
}


.top-bar {
  background: var(--color-light);
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 10px;
  }
}

.social-icons i {
  margin-left: 12px;
  cursor: pointer;
  /* color: var(--color-accent); */
}


.navbar {
  background: var(--color-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 1px 0px;
}

.navbar-logo {
  height: 60px;
  /* navbar ke liye ideal */
  width: 60px;
  object-fit: contain;
  /* background-color: red; */
}

.navbar-logo1 {
  height: 90px;
  /* navbar ke liye ideal */
  width: auto;
  object-fit: contain;
}

.contact-info i {
  color: var(--color-accent);
}


.btn-orange {
  background: #004a88;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 20px;
}

.btn-orange:hover {
  color: #0c75ae;
  border: 1px solid #0c75ae;
}

/*=======================================================
   Hero section 
=========================================================*/

.hero-title {
  font-size: 42px;
  font-weight: 700;
}

.hero-text {
  color: var(--color-gray);
  max-width: 420px;
}

.btn-play {
  border: none;
  background: none;
  color: var(--color-gray);
}

.btn-play i {
  background: var(--color-light);
  padding: 10px;
  border-radius: 50%;
  margin-right: 8px;
}


.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item i {
  margin-right: 6px;
}


.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  /* display:block; */
}

.see-more-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 8px 24px;
  border: none;
  box-shadow: var(--shadow-soft);
}

.brands a {
  text-decoration: none;
}

.brands span {
  margin: 0 15px;
  color: #999;
  font-weight: 600;
}

.brands span:hover {

  color: var(--color-accent);

}

/*============================================================
  category strip
==============================================================*/

.category-strip {
  background: var(--color-white);
}

.product-filter {
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--color-gray);
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.filter-btn.active {
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  font-weight: 600;
}

.filter-btn:hover {
  color: var(--color-dark);
}

/* Mobile handling */
@media (max-width: 768px) {
  .product-filter {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.category-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 140px;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.see-more {
  border: 1px solid #ddd;
  background: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
  color: black;
}

.see-more:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
}

.category-card img {
  max-height: 90px;
  object-fit: contain;
}



/*============================================================
  product section 
==============================================================*/


.product-section {
  padding: 60px 0;
}

.section-tag {
  color: #0058a4;
  font-size: 30px;
  font-weight: 600;
}

.section-title {
  font-size: var(--font-lg);
  font-weight: 500;
  margin-bottom: 30px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid #000;
  border-radius: 3px;
}

.product-img {
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.product-img img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border-radius: 3px;
}

.product-info {
  padding: 5px;
}

.product-name {
  font-size: var(--font-md);
  font-weight: 500;
  margin-bottom: 6px;
  padding: 0px 5px;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price .old {
  color: var(--color-gray);
  text-decoration: line-through;
  font-size: var(--font-sm);
}

.price .new {
  font-weight: 700;
  font-size: var(--font-md);
}

/* .cart-btn {
  border: 1px solid var(--color-border);
  background: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.cart-btn {
  background: #004b86;
  color: #fff;
  padding: 6px 10px;
  margin: 2px auto;
  border: none;
  border-radius: 4px;
  width: 100%;
}

.cart-btn:hover {
  background: #fb8b03;
  color: #fff;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
}

.cart-btn i {
  font-size: 14px;
  color: var(--color-dark);
}

/*============================================================
  Quality section 
==============================================================*/
.quality-section {
  font-family: var(--font-main);
}

.quality-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.quality-desc {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 520px;
}

.quality-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--color-dark);
}

.quality-list li span {
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* Button */
.shop-btn {
  padding: 12px 28px;
  background: #fb8b03;
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.shop-btn:hover {
  background: #0157a9;
}

/* Image Side */
.quality-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quality-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.floating-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.floating-card strong {
  display: block;
  font-size: 13px;
  color: var(--color-dark);
}

.floating-card span {
  font-size: 11px;
  color: var(--color-gray);
}

.top-card {
  top: 20px;
  left: -30px;
}

.top-card i {
  margin-left: 10px;
  color: var(--color-accent);
}

.bottom-card {
  bottom: 20px;
  right: 20px;
}

.bottom-card i {
  color: var(--color-accent);
}

/* Accent Icon */
.accent-icon {
  position: absolute;
  left: -12px;
  bottom: 45%;
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 768px) {
  .quality-title {
    font-size: 30px;
  }

  .top-card {
    left: 10px;
  }

  .accent-icon {
    display: none;
  }


  .product-img {
    padding: 0px;
  }

  .product-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
  }
}




/*============================================================
  Quality section 
==============================================================*/




.category-section {
  font-family: var(--font-main);
}

.category-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 150px;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.category-btn {
  padding: 6px 18px;
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 13px;
  transition: var(--transition);
}

.category-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.category-card img {
  max-height: 110px;
  max-width: 140px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .category-card {
    height: auto;
    padding: 20px;
  }

  .category-card img {
    max-height: 90px;
  }
}



/*============================================================
  dedication section 
==============================================================*/



.dedication-section {
  /* background: #001636; */
  background: url('/assets/img/photos/backgroundpaper.png') center center/cover no-repeat;
  color: var(--color-white);
  font-family: var(--font-main);
}

.dedication-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.dedication-desc {
  color: #fff;
  max-width: 520px;
  line-height: 1.7;
}

.rating-wrap {
  margin-top: 25px;
}

.rating-box span {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.stars {
  color: var(--color-accent);
  margin-bottom: 6px;
}

.rating-text {
  font-size: 14px;
  margin-bottom: 2px;
}

/* Features */
.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 28px;
}

.feature-item h5 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-item p {
  font-size: 14px;
  color: #000;
  max-width: 420px;
}

.feature-item .icon {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #f48403;
  color: #f48403;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {


  .dedication-title {
    font-size: 28px;
  }

  .rating-wrap {
    /* flex-direction: column; */
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {}



/*============================================================
  gallery section 
==============================================================*/



.gallery-section {
  background: var(--color-white);
  font-family: var(--font-main);
}

.gallery-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.1);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.gallery-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery-subtitle {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card:hover {
  transform: translateY(-6px);
}

/* Taller card like the image */
.gallery-card.tall {
  height: 100%;
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 26px;
  }
}

/*============================================================
  Testimonial section 
==============================================================*/
.testimonial-section {
  background: #f7f7f7;
}

.testimonial-section .badge {
  background: #268cc7;
  color: #fff;
  font-weight: 500;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
  position: relative;
}

.testimonial-card.active {
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 50px;
  color: #000;
  line-height: 1;
}

.testimonial-card p {
  color: #666;
  font-size: 14px;
}

.testimonial-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.stars {
  color: #ffb400;
  font-size: 20px;
}

/*============================================================
  contact section 
==============================================================*/
.contact-section {
  background: var(--color-light);
  padding: 80px 20px;
  font-family: var(--font-main);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Left Content */
.contact-info {
  padding-right: 20px;
}

.contact-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-size: 15px;
}

.contact-details i {
  font-size: 18px;
  color: var(--color-accent);
  min-width: 22px;
}

/* Form */
.contact-form {
  background: var(--color-white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  border-radius: var(--radius-lg);
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}

.contact-form button {
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-form button:hover {
  background: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .form-group {
    grid-template-columns: 1fr;
  }
}


/*============================================================
  Footer section 
==============================================================*/

.review-section {
  background-image: url("/assets/img/banner/Statinoray.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 320px;
  position: relative;
}

/* .review-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
} */

.newsletter {
  background: #3b3b3b;
  padding: 30px 0;
}

.newsletter input {
  border-radius: 0;
}

/* .btn-orange {
  background: #ff7a00;
  color: #fff;
  border-radius: 0;
} */

.footer {
  background: #fff;
  padding: 50px 0 20px;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-orange);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.quick-links li a {
  text-decoration: none;

}

.social-icons a i {
  color: var(--color-orange);
  /* border: 1px solid black; */
  outline: 1.5px solid var(--color-border);
  padding: 10px;
  border-radius: 10px;
}

/* Brand Colors */
/* .social-icons .facebook {
    color: #1877f2;
}

.social-icons .instagram {
    color: #e4405f;
}

.social-icons .whatsapp {
    color: #25d366;
}

.social-icons .linkedin {
    color: #0a66c2;
} */


.footer ul li a {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.footer ul li {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.footer-contact-info li i {
  color: var(--color-orange);
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
}





/* =====================================
   MOBILE RESPONSIVE FIX
=====================================*/

@media (max-width:768px) {

  /* container spacing */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* text center */
  .hero-title,
  .hero-text,
  .section-tag,
  .section-title,
  .quality-title,
  .quality-desc,
  .dedication-title,
  .dedication-desc,
  .gallery-title,
  .gallery-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* hero section */
  .hero-title {
    font-size: 28px;
  }

  .features {
    justify-content: center;
  }

  /* category card */
  .category-card {
    flex-direction: column;
    text-align: center;
    height: auto;
    gap: 10px;
  }

  .category-card img {
    max-height: 80px;
  }

  /* product card */
  .product-img img {
    height: auto;
    object-fit: contain;
  }

  .product-name {
    font-size: 13px;
    text-align: center;
  }

  /* buttons center */
  .cart-btn,
  .btn-orange,
  .shop-btn,
  .see-more {
    display: block;
    margin: 10px auto;
    text-align: center;
  }

  /* feature items */
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    display: none;
  }

  /* quality section */
  .quality-image-wrap {
    margin-top: 25px;
  }

  /* floating cards hide */
  .floating-card {
    display: none;
  }

  /* contact section */
  .contact-info {
    text-align: center;
  }

  .contact-details li {
    justify-content: center;
  }

  /* footer */
  .footer {
    text-align: center;
  }

  .footer ul {
    padding-left: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-actions {
    display: none;
  }

  .rating-wrap {
    text-align: center;
  }

}



.banner {
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}


.dedication-section {
  position: relative;
  background: url('/assets/img/photos/backgroundpaper.png') center center no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  /* desktop full image */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-main);
  padding: 80px 0;
}

/* ================= NAVBAR ================= */

.navbar {
  background: #f6f1e7;
  padding: 15px 0;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.navbar-nav {
  gap: 18px;
  align-items: center;
}

/* ================= STICKY NOTE ================= */

.nav-link {
  position: relative;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #222 !important;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 2px;

  /* Notebook lines */
  background:
    repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 17px,
      rgba(0, 0, 0, 0.10) 18px),
    #ffe66d;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 -8px 10px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;

  /* Hanging Animation */
  transform-origin: top center;
  animation: swing 3s ease-in-out infinite alternate;
}

/* Different Colors */
.nav-item:nth-child(1) .nav-link {
  background-color: #ffe66d;
  transform: rotate(-4deg);
}

.nav-item:nth-child(2) .nav-link {
  background-color: #74c0fc;
  transform: rotate(3deg);
}

.nav-item:nth-child(3) .nav-link {
  background-color: #8ce99a;
  transform: rotate(-3deg);
}

.nav-item:nth-child(4) .nav-link {
  background-color: #faa2c1;
  transform: rotate(4deg);
}

/* Pin */
.nav-link::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);

  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: radial-gradient(circle at 30% 30%, #ffffff, #c40000 70%);
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.3),
    inset -1px -2px 3px rgba(0, 0, 0, 0.2);
}

/* Hanging Thread */
.nav-link::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);

  width: 2px;
  height: 30px;
  background: rgba(0, 0, 0, 0.4);
}

/* Swing Animation */
@keyframes swing {
  0% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/* Hover = stop animation */
.nav-link:hover {
  animation-play-state: paused;
  transform: scale(1.08) rotate(0deg);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    inset 0 -8px 10px rgba(0, 0, 0, 0.05);
}

/* ================= BUTTON ================= */

.btn-orange {
  background: linear-gradient(135deg, #ff7b00, #ff5100);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

  .navbar-nav {
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .nav-link {
    width: 90px;
    height: 90px;
    margin: auto;
    font-size: 12px;
  }

  .auth-btns {
    text-align: center;
  }
}

/* -------------------------------------------- */

/* ================= GET IN TOUCH STICKY NOTE ================= */

.auth-btns a {
  text-decoration: none;
}

.btn-orange {
  position: relative;
  width: 95px;
  height: 95px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;
  border: none;
  outline: none;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #222;

  cursor: pointer;

  border-radius: 2px;

  /* Notebook Lines */
  background:
    repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 17px,
      rgba(0, 0, 0, 0.10) 18px),
    #ffd43b;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 -8px 10px rgba(0, 0, 0, 0.05);

  /* Hanging Effect */
  transform-origin: top center;
  animation: stickySwing 3s ease-in-out infinite alternate;

  transition: all 0.3s ease;
}

/* Push Pin */
.btn-orange::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);

  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: radial-gradient(circle at 30% 30%, #ffffff, #d00000 70%);

  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.3),
    inset -1px -2px 3px rgba(0, 0, 0, 0.2);
}

/* Hanging Thread */
.btn-orange::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);

  width: 2px;
  height: 30px;
  background: rgba(0, 0, 0, 0.4);
}

/* Swing Animation */
@keyframes stickySwing {
  0% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

/* Hover = Stop Animation */
.btn-orange:hover {
  animation-play-state: paused;
  transform: scale(1.08) rotate(0deg);

  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    inset 0 -8px 10px rgba(0, 0, 0, 0.05);
}

/* Mobile */
@media (max-width: 991px) {

  .auth-btns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .btn-orange {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }
}

/* ******************************************************* */
/* NAVBAR HEIGHT SMALL */
.navbar {
  background: #f6f1e7;
  padding: 6px 0;
  /* pehle 15px tha */
  min-height: 85px;
  /* navbar ki height control */
}

/* LOGO SIZE SMALL */
.navbar-logo {
  height: 90px !important;
  width: auto !important;
}

/* NAV LINKS SMALL */
.nav-link {
  width: 75px;
  height: 75px;
  font-size: 12px;
  padding: 5px;
}

/* GET IN TOUCH SMALL */
.btn-orange {
  width: 82px;
  height: 82px;
  font-size: 11px;
  padding: 8px;
}

/* THREAD SMALL */
.nav-link::after,
.btn-orange::after {
  height: 22px;
  top: -22px;
}

/* PIN SMALL */
.nav-link::before,
.btn-orange::before {
  width: 10px;
  height: 10px;
  top: 5px;
}

/* MOBILE */
@media (max-width: 991px) {

  .navbar {
    padding: 1px 0;
  }

  .navbar-logo {
    height: 70px !important;
    /* background-color: red; */
  }

  .nav-link,
  .btn-orange {
    width: 78px;
    height: 78px;
    font-size: 11px;
  }
}

/* _____________________________ */

/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
  background: #f8f8f8;
}

/* HEADING */
.products-section h2 {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-section p {
  font-size: 15px;
  color: #777;
}

/* =========================
   FILTER BUTTONS
========================= */

.filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  position: relative;
  padding: 6px 10px;
  transition: 0.3s ease;
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #000;
}

.filter-btn:hover::after,
.filter-btn.active::after {
  width: 100%;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  margin-bottom: 10px;
}

/* IMAGE WRAPPER */
.product-img {
  width: 100%;
  /* aspect-ratio: 1/1.25; */
  object-fit: cover;
  background: #f1f1f1;
  transition: 0.5s ease;
}

/* IMAGE HOVER */
.product-card:hover .product-img {
  transform: scale(1.05);
}

/* PRODUCT CONTENT */
.product-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  gap: 10px;
}

/* PRODUCT TITLE */
.product-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 4px;
  color: #111;
  line-height: 1.4;
  flex: 1;
}

/* ENQUIRY BUTTON */
.product-btn {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  padding: 10px 16px;
  transition: 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
  margin: 4px;
}

.product-btn:hover {
  /* background: #ff6b00; */
  background: #0157a9;
  color: #fff;
  /* color: #2b2a2a; */
  transform: translateY(-2px);
}

/* CARD HOVER EFFECT */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: 0.4s ease;
  pointer-events: none;
}

.product-card:hover::before {
  border-color: #ddd;
}

/* =========================
   PRODUCT FADE ANIMATION
========================= */

.product-card {
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   DESKTOP
   4 ITEMS IN ROW
========================= */

#products-container .col-lg-4 {
  width: 25%;
}

/* =========================
   TABLET
   3 ITEMS IN ROW
========================= */

@media (max-width: 991px) {

  #products-container .col-md-6 {
    width: 33.3333%;
  }

  .products-section h2 {
    font-size: 34px;
  }

  .filter-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .filter-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .filter-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
  }

  .product-title {
    font-size: 13px;
  }

  .product-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* =========================
   MOBILE
   2 ITEMS IN ROW
========================= */

@media (max-width: 767px) {

  #products-container .col-12 {
    width: 50%;
  }

  .products-section {
    padding: 60px 0;
  }

  .products-section h2 {
    font-size: 28px;
  }

  .products-section p {
    font-size: 14px;
  }

  .product-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-btn {
    width: 100%;
    text-align: center;
  }

  .product-title {
    font-size: 12px;
  }

  .filter-btn {
    font-size: 11px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .product-img {
    /* aspect-ratio: 1/1.35; */
  }

  .product-content {
    padding-top: 10px;
  }

  .product-btn {
    font-size: 10px;
    padding: 8px 10px;
    margin: 0;
  }

  .product-title {
    font-size: 11px;
    margin: auto;
  }
}