@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}
.text-justify{
  text-align: justify;
}
.layout_padding {
  padding: 70px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    /* font-size: 3.5rem; */
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70%;
    height: 5px;
    background: #f7444e;
    margin: 10px auto 10px;
}

.heading_container h2 span {
  color: #f7444e;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/

/* Header default */
.header_section {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1100;
}

/* Sticky state */
.header_section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  animation: slideDown 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Smooth slide animation */
@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }
  to {
      transform: translateY(0);
  }
}
/* Top Bar */
.top-bar {
  background: #33a871;
  color: #fff;
  font-size: 14px;
}

.top-bar a {
  color: #ffff00;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
}

.top-bar a:hover {
  text-decoration: underline;
}

.nav-link {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
  margin: 0px 6px;
}
/* Navbar Active */
.nav-link.active {
  color: #198754 !important;
  font-weight: 600;
  border-bottom: 2px solid #198754;
}

.dropdown-item.active {
  background-color: #198754;
  color: #fff;
}
.navbar-brand img{
  height: 65px;
}

/*end header section*/


.product_section .heading_container {
  margin-bottom: 20px;
}

.product_section .box {
    position: relative;
    margin-top: 15px;
    padding: 20px;
    background-color: #f7f8f9;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    
}

.product_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 215px;
}

.product_section .box .img-box img {
  max-width: 100%;
  max-height: 200px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.product_section .box .detail-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_section .box .detail-box h5 {
  font-size: 18px;
  margin-top: 10px;
}

.product_section .box .detail-box h6 {
  margin-top: 10px;
  color: #002c3e;
  font-weight: 600;
}

.product_section .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product_section .box:hover .option_container {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.arrival_section {
    background-color: #d4ced0;
}
.product_section .option_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.product_section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product_section .options a {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  width: 165px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 5px 0;
}

.product_section .options .option1 {
  background-color: #f7444e;
  border: 1px solid #f7444e;
  color: #ffffff;
}

.product_section .options .option1:hover {
  background-color: transparent;
  color: #f7444e;
}

.product_section .options .option2 {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.product_section .options .option2:hover {
  background-color: transparent;
  color: #000000;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #f7444e;
  border: 1px solid #f7444e;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #f7444e;
}

.arrival_section .heading_container {
  color: #002c3e;
  margin-bottom: 10px;
}

.arrival_section .box {
  padding: 120px 45px;
  position: relative;
}

.arrival_section .arrival_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.arrival_section .arrival_bg_box img {
    width: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top left;
    object-position: top left;
}

.arrival_section a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f7444e;
  border: 1px solid #f7444e;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.arrival_section a:hover {
  background-color: transparent;
  color: #f7444e;
}

.why_section .box {
    text-align: center;
    margin-bottom: 45px;
    background-color: #002c3e;
    padding: 45px 50px;
    border-radius: 5px;
    color: #ffffff;
}

.detail-box h5 {
    font-size: 21px;
    font-weight: 700;
}

.remove_line_bt h2::after {
    display: none;
}

.why_section .box .img-box {
  margin-bottom: 15px;
}

.why_section .box .img-box svg {
  width: 55px;
  height: auto;
  fill: #ffffff;
}



/* index page */
.about-text {
  text-align: justify;
}

.box {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}



/* about page */
.inner_page_head {
    background: #f7444e;
    text-align: center;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 10px;
}

.inner_page_head h3 {
    font-size: 42px;
    font-weight: 800;
}


.inner_page_head {
  background: linear-gradient(135deg, #198754, #2ecc71);
}

.icon-box {
  font-size: 48px;
}

.mission-card {
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


.about-text {
  text-align: justify;
  margin-bottom: 1rem;
}

.about-card {
  border-radius: 12px;
}

.info-box {
  padding: 20px;
}

.info-box .icon {
  font-size: 42px;
}

.about-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}


/** footer **/

.footer_section {
  background: #0f5132;
  color: #fff;
}

.footer_section p,
.footer_section li,
.footer_section a {
  color: #d1e7dd;
  font-size: 14px;
}

.footer_section a {
  text-decoration: none;
}

.footer_section a:hover {
  color: #ffffff;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #20c997;
}

.footer-bottom {
  background: #0b3d2e;
  color: #d1e7dd;
}

.footer-bottom a {
  color: #20c997;
}
.footer-logos img {
  height: 85px;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.footer-about img{
  width: 300px;
}
/* Footer end */


/* ---------------------------------------------    Home page Slide --------------------------------------- */
/* ================= SLIDER IMAGE ================= */
.slider_section img {
  max-height: 85vh;
  width: 100%;
  object-fit: cover;
}

/* ================= SLIDER ITEM ================= */
.slider_section .carousel-item {
  position: relative;
}

/* ================= CAPTION ================= */
.slider_section .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  max-width: 600px;
  z-index: 2;
}

/* Left & Right caption alignment */
.slider_section .carousel-caption.text-start {
  left: 8%;
  right: auto;
}

.slider_section .carousel-caption.text-end {
  right: 8%;
  left: auto;
}

/* ================= DARK OVERLAY ================= */
/* Default (left caption) */
.slider_section .carousel-item::before {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

/* Right caption slides */
.slider_section .carousel-caption.text-end {
  right: 8%;
}

.slider_section .carousel-item:has(.carousel-caption.text-end)::before {
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

.slider_section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ================= TEXT STYLING ================= */
/* Animation delay for slider text */
.carousel-caption h1 {
  animation-delay: 0.2s;
}

.carousel-caption h2 {
  animation-delay: 0.4s;
}

.carousel-caption p {
  animation-delay: 0.6s;
}

.carousel-caption .btn {
  animation-delay: 0.8s;
}

.carousel-caption h1 {
  font-size: 3rem;
  line-height: 1.3;
  background-color: rgba(255,255,255,0.35);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px 0;
}

.carousel-caption p {
  font-size: 1.1rem;
  margin-top: 10px;
}

.slider_section .btn {
  padding: 10px 25px;
  font-weight: 500;
}

/* ================= CONTROLS ================= */
.carousel-control-next,
.carousel-control-prev {
  width: 9%;
}

/* ================= ANIMATION ================= */
.carousel-caption h1,
.carousel-caption p,
.carousel-caption a {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ================= RESPONSIVE ================= */
@media (max-width: 1156px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .slider_section .carousel-caption {
    text-align: center !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    width: 87%;
  }

  .carousel-caption h1 {
    font-size: 1.1rem;
    line-height: 1;
    /* background-color: rgba(0,0,0,0.45);
    color: #fff; */
  }
  .carousel-caption h1,   .carousel-caption h2{
    margin: 0px;
  }
  .carousel-caption p {
    font-size: 0.7rem;
    margin: 0px;
  }

  .slider_section .btn {
    padding: 3px 10px;
    font-size: 0.5rem;
  }
  .carousel-indicators {
    margin-bottom: 1px;
  }
}
/* ---------------------------------------------   end Home page Slide --------------------------------------- */



/* Gallery Page */

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #198754, #2ecc71) border-box;
  border: 2px solid transparent;
  height: 260px;            /* FIXED HEIGHT */
  transition: all 0.3s ease;
}

/* Image fills card */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* IMPORTANT */
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effect */
.gallery-card:hover img {
  transform: scale(1.12);
}

.gallery-card:hover {
  transform: translateY(-6px);
}

/* Responsive heights */
@media (max-width: 992px) {
  .gallery-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .gallery-card {
    height: 200px;
  }
}






/* Certificate Card */
.certificate-card {
  position: relative;
  height: 260px;
  border-radius: 14px;
  cursor: pointer;
  background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, #198754, #2ecc71) border-box;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

/* Icon */
.certificate-icon {
  font-size: 64px;
}

/* Hover Lift */
.certificate-card:hover {
  transform: translateY(-6px);
}

/* Overlay */
.certificate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 135, 84, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 14px;
}


.certificate-overlay span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid #fff;
  padding: 8px 22px;
  border-radius: 30px;
}

/* Show Overlay */
.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

/* Responsive Heights */
@media (max-width: 992px) {
  .certificate-card { height: 220px; }
}

@media (max-width: 576px) {
  .certificate-card { height: 200px; }
}

/* PDF Modal */
#pdfViewer {
  min-height: 70vh;
}




#contactPopupModal{
  z-index: 1101;
}



/* ----------------------------------------- Product data ----------------------------------------------- */

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Image Wrapper */
.product-img {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Product Image */
.product-img img {
  max-width: 100%;
  max-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}



.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 135, 84, 0.8);
  display: flex;
  flex-direction: column;      /* STACK BUTTONS */
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: 0.4s ease;
}

/* Buttons */
.product-overlay .btn {
  min-width: 160px;
  font-weight: 500;
}

/* Hover Effects */
.product-card:hover .product-img img {
  transform: scale(1.12);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Product Info */
.product-info {
  padding: 15px;
}


/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
  .product-img:hover .product-overlay {
      opacity: 1;
      visibility: visible;
  }
}

@media (hover: none) and (pointer: coarse) {

  .product-overlay {
      position: static;          /* removes overlay */
      opacity: 1;
      visibility: visible;
      background: transparent;
      margin-top: -30px;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 8px;
  }

  .product-overlay .btn {
      font-size: 14px;
      padding: 6px 10px;
  }
}



/* --------------------Product page sidebar ------------------- */
/* Sidebar */
.side-category .list-group-item {
  border: 0;
  padding: 12px 10px;
  transition: all 0.3s ease;
}

.side-category .list-group-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.side-category .list-group-item:hover {
  background-color: rgba(25, 135, 84, 0.08);
}

.side-category .list-group-item.active {
  background-color: #198754;
  border-radius: 6px;
}

.side-category .list-group-item.active a {
  color: #fff;
}

.side-category .list-group-item i {
  font-size: 12px;
  opacity: 0.6;
}

/* -------------------- end Product page sidebar ------------------- */



/* -------------------- Contact Us page ------------------- */

.contact-page .card a {
  color: #198754;
  text-decoration: none;
}

.contact-page .card a:hover {
  text-decoration: underline;
}
/* -------------------- end Contact Us page ------------------- */


/* -------------------- testimonial ------------------- */
.testimonial-box {
  background: #fff;
  border-radius: 18px;
}

.testimonial-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #198754;
}

.testimonial-icon {
  font-size: 26px;
  color: #198754;
}


/* Bottom testimonial controls */
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Button style */
.testimonial-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #198754;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.testimonial-btn:hover {
  background: #157347;
  transform: translateY(-2px);
}

/* Icon size */
.testimonial-btn i {
  font-size: 16px;
}


/* Mobile center alignment */
@media (max-width: 767px) {
  .testimonial-box {
      text-align: center;
  }
}



/* -------------------- end testimonial ------------------- */



/* -------------------- product Details page ------------------- */

/* Main image animation */
.fade-img {
  transition: opacity 0.5s ease-in-out;
}


.thumb-img {
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.thumb-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ACTIVE THUMBNAIL */
.thumb-img.active-thumb {
  border: 3px solid #198754;
  opacity: 1;
  transform: scale(1.08);
}


/* .product-details br{
  display: none;
} */
.product-details table{
  width: 100%;
  margin-bottom: 20px;
}
.product-details table tr td{
  border: 1px solid #ccc;
  padding: 3px 8px;
}
.product-details p{
  width: 100%;
  text-align: justify;
}
#mainProductImage {
  max-height: 400px;
}
.thumb-image{
  width: 80px;
  height: 60px;
}
img.thumb-img{
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {

  #mainProductImage {
    max-height: 300px;
  }
}
/* -------------------- end product Details page ------------------- */


/* -------------------- home page contact form popup ------------------- */

.enquiry-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.35);
  transition: all 0.3s ease;
}

.enquiry-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(25, 135, 84, 0.45);
}
@media (max-width: 576px) {
  .enquiry-float-btn {
      padding: 14px 16px;
      font-size: 0;
  }
  .enquiry-float-btn i {
      font-size: 18px;
      margin: 0;
  }
}

/* -------------------- end home page contact form popup ------------------- */

@media (max-width: 768px) {
  .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .navbar-brand img{
    height: 45px;
  }
}