* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "DM Sans";
  background-color: #ffff;
}

/* Nav Bar  */

.nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.nav-header .header-strip {
  background: #076461;
  display: none;
  justify-content: space-between;
  height: 86px;
  align-items: center;
  padding: 0 3rem;
}

.nav-header .header-strip .left-side p {
  display: flex;
  gap: 0.75rem;
  font-size: 0.933rem;
  color: #fff;
}

.nav-header .header-strip .center-side {
  display: flex;
  gap: 1rem;
}
.nav-header .header-strip .center-side .content {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-header .header-strip .center-side .content img {
  height: 32px;
  width: 32px;
}

.nav-header .header-strip .center-side .content .content-data {
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-header .header-strip .center-side .content .content-data a{	
  text-decoration:none;
  color: #fff;
}

.nav-header .header-strip .center-side .content .content-data p {
  font-size: 16px;
  font-weight: 700;
}

.nav-header .header-strip .center-side .content .content-data span {
  font-size: 14px;
  font-weight: 500;
}
.nav-header .header-strip .right-side {
  display: flex;
  gap: 1rem;
}

.nav-header .header-strip .right-side .content img {
  cursor: pointer;
}

.nav-bar-container {
  background-color: #fff;
  color: #000000;
  box-shadow: 0px 0px 47px -34px rgb(0 0 0);
  display: flex;
  justify-content: center;
  height: 90px;
  width: 100%;
}

.nav-bar {
  display: flex;
  align-items: center;
  /* max-width: 1200px; */
  gap: 3rem;
  width: 100%;
  padding: 1rem 4rem;
  justify-content: space-between;
}

.nav-bar .logo-container {
  width: auto;
  height: 100%;
}

.nav-bar .logo {
  width: auto;
  height: 100%;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  min-width: 425px;
}

.nav-bar ul li {
  position: relative;
}

.nav-bar ul li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  border-bottom: 3px solid #183b6e;
  left: 0;
  bottom: 0;
  transition: width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-bar ul li:hover::before {
  width: 100%;
}

.nav-bar ul .active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #183b6e;
  left: 0;
  bottom: 0;
}

.nav-bar ul li a {
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #170f49;
  padding: 18px 8px;
  display: block;
  position: relative;
  z-index: 2;
}

.nav-bar .contact-us-btn {
  background-color: #076461;
  border: none;
  width: 220px;
  height: 40px;
  font-family: "DM Sans";
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12.8px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 12px;
  cursor: pointer;
}

.nav-bar .contact-us-btn {
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-bar .contact-us-btn:hover {
  background-color: #0a7f7b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgb(77 86 86 / 25%);
}

.nav-bar .contact-us-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgb(158 161 161 / 25%);
}

/* nav bar small screen*/
.nav-bar-sm-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00000024;
}

.nav-bar-sm {
  padding: 1rem;
  height: 100%;
  width: 200px;
  background-color: #ffffff;
  animation: nav-bar-sm 0.4s ease forwards;
}

@keyframes nav-bar-sm {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-bar-sm ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  margin: 0;
}

.nav-bar-sm ul li {
  padding: 8px 12px;
}

.nav-bar-sm ul li a {
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}

.nav-bar-sm .nav-close-btn {
  display: flex;
}

.nav-bar-sm .nav-close-btn button {
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0 0 0 auto;
}

.nav-bar-open-btn-sm {
  display: none;
}

.header-strip {
  height: 86px;
  transition:
    height 0.35s ease,
    opacity 0.25s ease;
  overflow: hidden;
}

/* When hidden */
.header-strip.hide {
  height: 0;
  opacity: 0;
}

/* Navbar transition */
.nav-bar-container {
  transition: margin-top 0.35s ease;
}

@media (max-width: 1000px) {
  .nav-header .header-strip {
    padding: 0 0.75rem;
  }
  .nav-bar {
    padding: 1rem 1rem;
  }
}

@media (max-width: 800px) {
  .nav-bar ul {
    display: none;
  }

  .nav-bar-sm-container.show {
    display: block;
  }

  .nav-bar-open-btn-sm {
    display: block;
  }

  .nav-bar {
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
    flex-direction: column;
  }

  .nav-bar-container {
    height: 90px;
  }

  .nav-bar-container .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
  }
}

@media (max-width: 850px) {
  .nav-header .header-strip {
    display: none;
  }

  .nav-bar .contact-us-btn {
    display: none;
  }
  .nav-bar {
    justify-content: center;
  }
}

/* product details sec */

.product-detail-sec {
  display: flex;
  width: 100%;
  margin-top: 100px;
  background-color: #f2f4f5;
  overflow-x: hidden;
}

.product-detail-sec-content {
  margin-top: 30px;
  width: 100%;
  background-color: #fff;
}

.product-detail-sec-wrapper {
  width: 100%;
  padding: 20px;
  margin: 40px 0;
  border-top: 1px solid #e4e7e9;
  border-bottom: 1px solid #e4e7e9;
}

.product-detail-sec-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.product-detail-sec-container .bread-crumb {
  font-weight: 400;
  color: #00000099;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.product-detail-sec-container .bread-crumb a {
  color: #00000099;
  text-decoration: none;
}

.product-detail-sec-container .product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-detail-sec-container .image-section {
  position: sticky;
  top: calc(120px + 2.5rem);
  height: fit-content;
}

.product-detail-sec-container .main-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #ffff;
  border-radius: 8px;
}

.product-detail-sec-container .details-section {
  padding-left: 20px;
  font-family: "Poppins";
}

.product-detail-sec-container .product-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.product-detail-sec-container .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  padding: 15px 0;
  border-top: 1px solid #e9ecef;
}

.product-detail-sec-container .description-text {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.product-detail-sec-container .description-text table a{
	text-decoration: none;
	color: #076461;
}

.product-detail-sec-container .description-list {
  padding-left: 18px;
  color: #6c757d;
  line-height: 1.8;
  font-size: 14px;
}

.product-detail-sec-container .buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.product-detail-sec-container .btn {
  padding: 6px 24px;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-family: "Public Sans";
  letter-spacing: 0.7px;
  text-transform: uppercase;
  height: 50px;
  min-width: 270px;
}

.product-detail-sec-container .btn img {
  height: 20px;
  width: 20px;
}

.product-detail-sec-container .btn .btn-img {
  padding: 6px;
  border-radius: 50%;
  background-color: #01e311;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-sec-container .btn-primary {
  background: #076461;
  color: #fff;
}

.product-detail-sec-container .btn-primary:hover {
  background: #0b5f58;
}

.product-detail-sec-container .btn-secondary {
  background-color: #0eb136;
  color: #fff;
  flex: 1;
  text-decoration: none;
}

.product-detail-sec-container .btn-secondary:hover {
  background-color: #16a34a;
}

.product-detail-sec-container .btn-primary,
.product-detail-sec-container .btn-secondary {
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

/* click */
.product-detail-sec-container .btn-primary:active,
.product-detail-sec-container .btn-secondary:active {
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1050px) {
  .product-detail-sec-container .buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 850px) {
  .product-detail-sec {
    margin-top: 0px;
  }
}



@media (max-width: 768px) {
  .product-detail-sec-container .product-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-sec-container .image-section {
    position: static;
  }

  .product-detail-sec-container .details-section {
    padding-left: 0;
  }

  .product-detail-sec-container .buttons {
    flex-direction: column;
  }
}


/* modal  */
.product-detail-sec .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
 
.product-detail-sec .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
 
.product-detail-sec .modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}
 
.product-detail-sec .modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}
 
.product-detail-sec .modal-header {
  background: white;
  padding: 28px 28px 20px 28px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
 
.product-detail-sec .modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #193332;
}
 
.product-detail-sec .modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #5a8381;
  font-size: 22px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
 
.product-detail-sec .modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}
 
.product-detail-sec .modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(90vh - 100px);
}
 
.product-detail-sec .product-name {
  background: #f8fafc;
  border: 1px solid #d8e9e8;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
  color: #076461;
}
 
.product-detail-sec .form-group {
  margin-bottom: 20px;
}
 
.product-detail-sec .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}
 
.product-detail-sec .form-input,
.product-detail-sec .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s ease;
  background: white;
  outline: none;
  color: #374151;
}
 
.product-detail-sec .form-input:focus,
.product-detail-sec .form-textarea:focus {
  border-color: #076461;
  box-shadow: 0 0 0 3px rgb(11, 168, 163, 0.1);
}
 
.product-detail-sec .form-textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}
 
.product-detail-sec .submit-btn {
  width: 100%;
  background: #076461;
  border: none;
  padding: 16px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}
 
.product-detail-sec .submit-btn:hover {
  background: #054d4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 59, 110, 0.3);
}
 
.product-detail-sec .submit-btn:active {
  transform: translateY(0);
}
 
/* Responsive Design */
@media (max-width: 768px) {
  .product-detail-sec .modal {
    margin: 10px;
    max-width: calc(100% - 20px);
    border-radius: 16px;
  }
 
  .product-detail-sec .modal-header {
    padding: 24px 24px 16px 24px;
  }
 
  .product-detail-sec .modal-title {
    font-size: 20px;
    padding-right: 50px;
  }
 
  .product-detail-sec .modal-body {
    padding: 24px;
  }
 
  .product-detail-sec .form-input,
  .product-detail-sec .form-textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}
 
@media (max-width: 480px) {
  .product-detail-sec .modal-header {
    padding: 20px 20px 14px 20px;
  }
 
  .product-detail-sec .modal-title {
    font-size: 18px;
  }
 
  .product-detail-sec .modal-body {
    padding: 20px;
  }
 
  .product-detail-sec .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}



/* sec-5 */
.sec-5 {
  background-color: #ffffff;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-5-wrapper {
  max-width: 1200px;
  margin: auto;
}

.sec-5-header {
  text-align: center;
}

.sec-5-label {
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  color: #192535;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.sec-5-label::before {
  content: "";
  width: 6px;
  height: 28px;
  background-color: #0a6e6e;
  display: inline-block;
  margin-right: 8px;
  border-radius: 3px;
}

.sec-5-carousel {
  display: flex;
  align-items: center;
}

.sec-5-slide {
  background: #ffffff;
  border: 0.8px solid #076461;
  border-radius: 2px;
  height: 90px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.sec-5-slide img {
  width: 150px;
  max-height: 45px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* remove slick arrows */
.sec-5 .slick-arrow {
  display: none !important;
}

/* spacing fix */
.sec-5 .slick-slide {
  margin: 0 -10px;
  height: 100px;
  width: 170px;
  z-index: 1;
  position: relative;
  box-shadow: 0px 0px 18px -5px rgb(10 110 110 / 50%);
}

.sec-5 .slick-list {
  margin: 0 -10px;
}

/* responsive spacing */
@media (max-width: 950px) {
  .sec-5 {
    padding: 1.5rem 1rem;
  }
}

/* default slide */
.sec-5 .slick-slide {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  transform: translateY(0);
}

/* optional: emphasize center image */
.sec-5 .slick-center img {
  opacity: 1;
}

.sec-5 .sec-5-carousel .slick-list {
  padding: 40px 60px !important;
}

/* base */
.sec-5 .slick-slide {
  transition:
    transform 0.35s ease,
    z-index 0.35s ease;
  z-index: 1;
}

/* far left / right */
.sec-5 .slick-slide[data-from-center="-2"],
.sec-5 .slick-slide[data-from-center="2"] {
  transform: scale(1.05);
  z-index: 2;
}

/* near center */
.sec-5 .slick-slide[data-from-center="-1"],
.sec-5 .slick-slide[data-from-center="1"] {
  transform: scale(1.12);
  z-index: 4;
}

/* center slide */
.sec-5 .slick-slide[data-from-center="0"] {
  transform: scale(1.23);
  z-index: 10;
}

/* footer section */

.footer {
  background-color: #076461;
  color: #ffffff;
  padding: 4rem 1rem 2rem;
  font-size: 14px;
  font-family: "Inter";
}

.footer-wrapper {
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
}

/* BRAND */
.footer-brand {
  display: flex;
  gap: 1rem;
}

.footer-logo {
  width: 300px;
  height: 160px;
}

.footer-desc {
  font-size: 13px;
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 10px 20px;
  border-radius: 50px;
}

.footer-socials img {
  width: 22px;
  height: 22px;
}

/* COLUMNS */
.footer-column h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column ul li {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  opacity: 75%;
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  opacity: 1;
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-column ul li:hover {
  opacity: 1;
}

.footer-location p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7rem;
  opacity: 75%;
}

.footer-bottom {
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}


/* animation on scroll */

.fade-in-animation {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.fade-in-animation.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* SLIDE FROM LEFT */
.left-slide-in-animation {
  opacity: 0;
  transform: translateX(-300px);
  transition:
    transform 1s ease,
    opacity 0.8s ease;
}

.left-slide-in-animation.show {
  opacity: 1;
  transform: translateX(0);
}

/* SLIDE FROM RIGHT */
.right-slide-in-animation {
  opacity: 0;
  transform: translateX(300px);
  transition:
    transform 1s ease,
    opacity 0.8s ease;
}

.right-slide-in-animation.show {
  opacity: 1;
  transform: translateX(0);
}

/* modal  */
.product-detail-sec .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.product-detail-sec .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-detail-sec .modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.product-detail-sec .modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.product-detail-sec .modal-header {
  background: white;
  padding: 28px 28px 20px 28px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.product-detail-sec .modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #193332;
}

.product-detail-sec .modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #5a8381;
  font-size: 22px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.product-detail-sec .modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}

.product-detail-sec .modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(90vh - 100px);
}

.product-detail-sec .product-name {
  background: #f8fafc;
  border: 1px solid #d8e9e8;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
  color: #076461;
}

.product-detail-sec .form-group {
  margin-bottom: 20px;
}

.product-detail-sec .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.product-detail-sec .form-input,
.product-detail-sec .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s ease;
  background: white;
  outline: none;
  color: #374151;
}

.product-detail-sec .form-input:focus,
.product-detail-sec .form-textarea:focus {
  border-color: #076461;
  box-shadow: 0 0 0 3px rgb(11, 168, 163, 0.1);
}

.product-detail-sec .form-textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.product-detail-sec .submit-btn {
  width: 100%;
  background: #076461;
  border: none;
  padding: 16px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.product-detail-sec .submit-btn:hover {
  background: #054d4a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 59, 110, 0.3);
}

.product-detail-sec .submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-detail-sec .modal {
    margin: 10px;
    max-width: calc(100% - 20px);
    border-radius: 16px;
  }

  .product-detail-sec .modal-header {
    padding: 24px 24px 16px 24px;
  }

  .product-detail-sec .modal-title {
    font-size: 20px;
    padding-right: 50px;
  }

  .product-detail-sec .modal-body {
    padding: 24px;
  }

  .product-detail-sec .form-input,
  .product-detail-sec .form-textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .product-detail-sec .modal-header {
    padding: 20px 20px 14px 20px;
  }

  .product-detail-sec .modal-title {
    font-size: 18px;
  }

  .product-detail-sec .modal-body {
    padding: 20px;
  }

  .product-detail-sec .btn {
/*     padding: 14px 28px; */
    font-size: 15px;
  }
}
