/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}
.icon{
    width: 50px;
    height: 50px;
}
.img-fluidd{
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;

}

.text-whitee{
    color: #fff;
    text-align: top !important;
}
.towel-item {
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.towel-item .btn-square,
.towel-item h5 {
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.towel-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.towel-item:hover .btn-square {
    border-color: #0D6B68;
    transform: scale(1.1);
}

.towel-item:hover h5 {
    color: #0D6B68;
    transform: translateX(5px);
}

/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}
.image-ceo{
  width: 400px;
  height: 400px;
}
.company-overview {
  background: #ffffff;
  padding: 40px;
  border-left: 5px solid #0d6b68;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-overview:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.company-overview h3 {
  color: #0d6b68;
  font-weight: 600;
  text-transform: uppercase;
}

.company-overview p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/*** Product ***/
/* ======== Catalog Section ======== */

.catalog-container-left,
.catalog-container-right {
  width: 100%;
  max-width: 1300px;
  height: 500px;
  background-color: #0D6B68; /* Deep green background for premium look */
  overflow: hidden;
  margin: 60px auto;
  border-radius: 8px;
}

.catalog_right .row {
  align-items: stretch; /* Ensures both columns align evenly */
  justify-content: right;
  margin: 0;
  width: 100%;
  height: 500px;
}

.catalog_left .row {
  align-items: stretch; /* Ensures both columns align evenly */
  justify-content: left;
  margin: 0;
  width: 100%;
  height: 500px;
}

/* ======== Image Section ======== */
.image-left,
.image-right {
  padding: 0; /* Removes gap */
}

.catalog {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 8px 0 0 8px;
}

/* ======== Text Section ======== */
.text-right,
.text-left {
  background-color: #fff;
  padding: 80px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 500px;
}

.catalog-content {
  max-width: 450px;
}

/* ======== Headings ======== */
.catalog-heading {
  font-size: 36px;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 10px;
}

.catalog-subhead {
  font-size: 20px;
  color: #0D6B68;
  margin-bottom: 20px;
}

/* ======== Paragraph ======== */
.cat-para {
  font-size: 18px;
  line-height: 1.4;
  color: #343a40;
  margin-bottom: 35px;
  text-align: left;
}

/* ======== Responsive Design ======== */
@media (max-width: 992px) {
  .catalog_left .row,
  .catalog_right .row {
    flex-direction: column;
    height: auto !important;
  }

  .catalog-container-left,
  .catalog-container-right {
    height: auto !important;
    margin: 40px 15px;
  }

  .text-left,
  .text-right {
    width: 100% !important;
    height: auto !important;
    padding: 50px 25px !important;
    text-align: center;
  }

  .image-left img,
  .image-right img,
  .catalog {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .catalog-heading {
    font-size: 28px !important;
  }

  .catalog-subhead {
    font-size: 18px !important;
  }

  .cat-para {
    font-size: 16px !important;
    line-height: 1.7 !important;
    text-align: center !important;
  }

  .view-catalog {
    font-size: 15px;
    padding: 10px 24px;
  }
}

/* ======== Extra Small Screens ======== */
@media (max-width: 576px) {
  .catalog-heading {
    font-size: 22px !important;
  }

  .catalog-subhead {
    font-size: 16px !important;
  }

  .cat-para {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .text-left,
  .text-right {
    padding: 35px 20px !important;
  }
}


/*** Industriies we serve ***/
/* ===== INDUSTRIES WE SERVE: HOSPITALITY ===== */
.indus-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin: 100px auto;
  max-width: 1400px;
  padding: 20px;
}

/* Circle background */
.indus-circle {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #f5f7fa, #e2e6ea);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Image inside the circle */
.indux-hospital {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Hide carousel arrows background */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 10px;
}

/* Text styling */
.indus-heading {
  max-width: 500px;
}

.indus-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.indus-para {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .indus-container {
    flex-direction: column;
    text-align: center;
  }

  .indus-circle {
    width: 400px;
    height: 400px;
  }

  .indus-heading h1 {
    font-size: 2rem;
  }

  .indus-para {
    font-size: 1rem;
  }
}

/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
   .towel-item {
        position: relative;
        display: block;
        text-align: center;
        overflow: hidden;
    }

    .towel-item img.icon {
        width: 120px; /* Image ka size bara */
        height: 120px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .towel-item h5 {
        position: absolute;
        bottom: 10px; /* Text ko image ke upper laaya */
        left: 50%;
        transform: translateX(-50%);
        color: #ffffff;
        font-weight: 600;
        font-size: 18px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        pointer-events: none;
    }

    .towel-item:hover img.icon {
        transform: scale(1.1);
    }
  

    .company {
  text-align: center;
  background: #03201f;
  color: white;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 50px auto;
  width: 100%;
  height: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.comp {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
  line-height: 1.4;
}

.profile {
  background-color: #ffffff;
  color: black;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile:hover {
  background-color: #0D6B68;
  color: #ffffff;
  transform: scale(1.05);
}

.pdf {
  text-decoration: none;
}
