@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

body {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* navber */

.top-navbar {
  background: #28a745;
}

.contact {
  font-size: 15px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .contact {
    font-size: 14px;
  }
}

.social-icon a {
  font-size: 17px;
  padding: 6px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s;

  &:hover {
    background-color: #fff;
    color: #cf8766;
  }
}

.custom-navbar {
  background-color: #fff;
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgb(0 0 0 / 6%);
  position: sticky;
  top: 0;
  z-index: 100;
}

.custom-navbar .container {
  padding: 0;
  overflow: hidden;
}

.custom-navbar .menubox {
  display: flex;
  justify-content: space-between;
  /* gap: 80px; */
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0;
  }
}

.logo {
  flex-shrink: 0;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .logo {
    min-width: 25%;
    display: flex;
    justify-content: center;
  }
}

.logo img {
  border-radius: 6px;
  margin: 7px 0;
}

.custom-navbar .logo img {
  width: 200px;
  height: auto;
}

.ftr .logo img {
  max-width: 280px;
  border-radius: 12px;
  border: 4px solid #ccc;
  box-shadow: 0 0 4px 7px #0000001a;
  padding: 10px;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 0 25px;
}

ul.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  max-width: 65%;
  width: 100%;
}

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

ul.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 20px;
  display: block;
}

ul.nav-links a:hover {
  color: #333;
}

.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: #e67a30;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  z-index: 999;
}

.dropdown-menu a {
  padding: 7px 12px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
}

.dropdown-menu a:hover {
  background: #5907bd;
  color: #fff !important;
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
    max-width: 100%;
    max-height: 100vh;
    overflow-y: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }
}

/* navber end */

/* main banner  */

.main-section-head {
  font-size: 38px;
  text-align: center;
  font-weight: 700;
  color: #1957a4;
  position: relative;
}

@media (max-width: 768px) {
  .main-section-head {
    font-size: 24px;
  }
}

.medical-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fdff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.medical-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23e3f2fd' opacity='0.3'/%3E%3C/svg%3E") repeat;
  background-size: 50px 50px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 123, 255, 0.05),
      transparent);
  transition: left 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #28a745;
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  transition: all 0.4s ease;
}

.service-card .service-icon-wrapper {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.service-icon {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.3;
}

.service-description {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-cta-btn {
  border: 2px solid #f38321;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 1;
  display: block;
  width: 100%;
  text-align: center;
  background: #f38321;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .medical-services-section {
    padding: 50px 0;
  }

  .service-card {
    margin-bottom: 30px;
    padding: 25px 20px;
  }

  .service-cta-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card {
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #ffffff;
  overflow: hidden;
  display: block;
}

.category-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.category-img {
  padding: 20px 20px 0;
}

.category-img.g-bg {
  background: #6bfd8d;
}

.category-img.y-bg {
  background: #ffaf68;
}

.cat-dge {
  /* padding: 15px 15px 0; */
  border-radius: 200px 200px 0 0;
  overflow: hidden;
}

.category-img.g-bg .cat-dge {
  background: #aeffc1;
}

.category-img.y-bg .cat-dge {
  background: #ffcea3;
}

.category-img img {
  aspect-ratio: 1/1.2;
  object-fit: contain;
  border-radius: 100px 100px 0 0;
}

.category-title {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  padding: 10px 0;
}

/* smart choice section  */

.smart-choice-block {
  background: url(../img/generic_poster.svg) no-repeat center center;
  background-size: 100%;
  padding: 35px 25px;
}

.generic-choice-card {
  padding: 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.trust-label {
  position: absolute;
  top: 20px;
  left: -35px;
  transform: rotate(-45deg);
  background: #28a745;
  color: #fff;
  padding: 5px 30px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.generic-choice-icon {
  font-size: 20px;
  width: 35px;
  margin: 0 auto 10px;
  border: 2px solid #28a745;
  background: #28a745;
  border-radius: 50px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
}

.generic-choice-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.generic-choice-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.smart-choice-title {
  font-size: 24px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 15px;
}

.smart-choice-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.generic-choice-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 15px;
}

@media(max-width: 768px) {
  .smart-choice-block {
    background-size: cover;
    padding: 25px 15px;
  }

  .smart-choice-title {
    font-size: 20px;
  }

  .smart-choice-text {
    font-size: 14px;
  }
}

/* service card slider  */

/* Owl Carousel Custom Dots */
.owl-theme .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  margin: 0;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #e3f2fd;
  border-radius: 50%;
  display: block;
  transition: background 0.3s, transform 0.3s;
  border: 2px solid #e67a30;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #e67a30;
  transform: scale(1.2);
  border-color: #28a745;
}

/* Owl Carousel Custom Nav Buttons */
.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: -27px;
  width: 104%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-90%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .owl-theme .owl-nav {
    left: -7px;
  }
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
  background: #fff;
  color: #28a745;
  border: 2px solid #28a745;
  border-radius: 10px;
  width: 35px;
  height: 70px;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  pointer-events: auto;
}

.owl-theme .owl-nav button.owl-prev:hover,
.owl-theme .owl-nav button.owl-next:hover {
  background: #28a745;
  color: #fff;
  /* border-color: #1957a4; */
}

.owl-theme .owl-nav button span {
  font-size: 35px;
  line-height: 0.9;
}

.owl-carousel .owl-stage-outer {
  background: linear-gradient(90deg,
      #fff2cc 1.48%,
      #ffffff 17.82%,
      #ffffff 86.7%,
      #fff2cc 99.48%);
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  padding: 8px;
}

.medic-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 25%);
  height: 100%;
  /* padding: 12px; */
  overflow: hidden;
}

.medic-carousel-img img {
  text-align: center;
  padding: 0 5px;
  width: 100%;
  background: #f2f4f7;
  height: 100%;
  display: flex;
  align-items: center;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  /* margin-bottom: 10px; */
}

.medic-carousel-name {
  font-size: 18px;
  font-weight: 600;
  color: #291304;
  margin-bottom: 5px;
}

.medic-carousel-caption {
  padding: 15px;
}

.medic-carousel-cname {
  font-size: 13px;
  color: #555;
  line-height: 15px;
  margin-bottom: 5px;
}

.medic-carousel-mrp {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 0;
}

.medic-carousel-price {
  font-size: 15px;
  color: #333;
  font-weight: 700;
  margin-bottom: 0;

  span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
    background: #28a745;
    padding: 5px;
    border-radius: 20px;
  }
}

/* whatsapp section  */

.Whatsapp-order {
  background: url(../img/bg-img/whatsapp-bg.JPG) no-repeat center;
  background-size: 100.05%;
  padding: 50px;
  border-radius: 10px;
  min-height: 240px;
  position: relative;
}

.whatsapp-order-btn {
  padding: 12px 20px;
  font-size: 17px;
  border-radius: 7px;
  font-weight: 500;
  color: #fff;
  background-color: #28a745;
  position: absolute;
  bottom: 17%;
  right: 12%;
}

@media (max-width: 768px) {
  .Whatsapp-order {
    background-size: cover;
    padding: 0px;
    background-position: bottom right;
    min-height: 100px;
    background-size: 165%;
    border: 1px solid #10b981;
  }

  .whatsapp-order-btn {
    padding: 5px 10px;
    font-size: 14px;
    bottom: 5%;
    right: 4%;
  }
}

/* homecare requirement form  */

.requirement-form {
  background: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 /15%);
  padding: 20px;
}

.eme-requirement-title h2 {
  font-size: 32px;
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;

  span {
    color: #e67a30;
  }
}

@media (max-width: 768px) {
  .eme-requirement-title h2 {
    font-size: 24px;
  }
}

.form-group .form-control {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: 1px solid #888;
}

.form-group textarea {
  resize: vertical;
}

.requirement-btn {
  background-color: #e67a30;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.requirement-btn:hover,
.requirement-btn:focus {
  background-color: #e67a30;
  color: #fff;
  outline: none;
}

.requirement-btn i {
  font-size: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

.f-text p {
  font-size: 20px;
  color: #555;
}

.requirement-contact-dt {
  padding: 20px;
  background: #e67a30;
  height: 100%;
}

.requirement-contact-title h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-dt-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cont-icon {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  font-size: 35px;
}

.contact-info-num span {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-info-num p {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
}

/* homecare whhy choose us  */

.custom-section-bg {
  background-color: #f8f9fa;
}

.custom-badge {
  background: linear-gradient(135deg, #eaa53f, #e67a30);
  color: white;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .custom-main-title {
    font-size: 2rem;
  }
}

.custom-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.custom-learn-btn {
  background: linear-gradient(135deg, #eaa53f, #e67a30);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;

  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-learn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(230, 126, 34, 0.3);
  color: white;
}

.custom-stat-card {
  background: white;
  border-radius: 15px;
  padding: 20px 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.custom-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.custom-card-dark {
  background: #505f6d;
  border: 2px solid #172431;
  border-top: 5px solid #172431;
  color: white;
}

.custom-card-pink {
  background: #fce4ec;
  border: 2px solid #eb6994;
  border-top: 5px solid #eb6994;
  color: #2c3e50;
}

.custom-card-green {
  background: #b5fac5;
  border: 2px solid #28a745;
  border-top: 5px solid #28a745;
  color: #2c3e50;
}

.custom-card-blue {
  background: #e3f2fd;
  border: 2px solid #6eb2e2;
  border-top: 5px solid #6eb2e2;
  color: #2c3e50;
}

.custom-card-yellow {
  background: #fff8e1;
  border: 2px solid #dcbd58;
  border-top: 5px solid #dcbd58;
  color: #2c3e50;
}

.custom-card-orange {
  background: #ffcfc1;
  border-top: 5px solid #ff5722;
  color: #2c3e50;
}

.custom-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-card-icon i {
  font-size: 30px;
}

.custom-diamond-icon {
  background: #172431;
  color: white;
}

.custom-heart-icon {
  background: #e91e63;
  color: white;
}

.custom-award-icon {
  background: #28a745;
  color: white;
}

.custom-clock-icon {
  background: #ff5722;
  color: white;
}

.custom-doctor-icon {
  background: #2196f3;
  color: white;
}

.custom-support-icon {
  background: #ff9800;
  color: white;
}

.custom-card-title {
  font-size: 19px;
  margin-bottom: 10px !important;
  font-weight: 700;
  line-height: 1.3;
}

.custom-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

.custom-stats-number {
  font-size: 20px;
  font-weight: 800;
}

/* faq */

.faq-item {
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(34, 79, 163, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f2ff 100%);
}

.faq-question.active {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: #28a745;
  min-width: 20px;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  display: none;
  padding: 12px 15px;
  background: white;
  border-top: 1px solid #e1e8f0;
  line-height: 1.7;
  color: #333;
}

.faq-answer.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-answer small a {
  color: #224fa3;
  text-decoration: underline !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-content {
    padding: 20px 0;
  }

  .question-text {
    font-size: 1rem;
  }

  .faq-question {
    padding: 12px;
  }

  .faq-answer {
    padding: 12px;

    ul {
      padding-left: 20px;
    }
  }
}

/* homecare about */

.about-homecare-img {
  position: relative;
  min-height: 310px;
}

.about-homecare-img .abt-img1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: auto;
  border-radius: 10px;
  border: 5px solid #e67a30;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-homecare-img .abt-img2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: auto;
  border-radius: 10px;
  border: 5px solid #e67a30;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-homecare-desc h2 {
  font-size: 32px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-homecare-desc p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .about-homecare-img {
    min-height: auto;
  }

  .about-homecare-img .abt-img1 {
    position: static;
    width: 100%;
    margin-bottom: 15px;
  }

  .about-homecare-img .abt-img2 {
    display: none;
  }

  .about-homecare-desc h2 {
    font-size: 24px;
  }

  .about-homecare-desc p {
    font-size: 16px;
  }
}

/* homecare choose */

.hmc-benefits-wrapper {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.hmc-benefits-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
}

.hmc-benefits-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
}

.hmc-content-container {
  position: relative;
  z-index: 2;
}

.hmc-hero-image-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  width: 100%;
}

.hmc-hero-image-card img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}

.hmc-mini-image-frame {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hmc-mini-image-frame img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}

.hmc-wellness-border {
  border: 3px solid #224a6e;
}

.hmc-medical-border {
  border: 3px solid #e74c3c;
}

.hmc-text-section {
  flex: 1;
  padding-left: 0;
}

.hmc-primary-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hmc-intro-paragraph {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.hmc-section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.hmc-section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #28a745;
  border-radius: 2px;
}

.hmc-feature-card {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(34, 79, 163, 0.1);
}

.hmc-feature-symbol {
  flex: 0 0 40px;
  height: 40px;
  background: #28a745;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 12px #e679303c;
}

.hmc-feature-label {
  flex: 1;
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
  line-height: 1.4;
}

.hmc-cta-button {
  background: linear-gradient(135deg, #eaa53f, #e67a30);
  color: white !important;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px #e679303c;
}

.hmc-professional-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e67a30;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hmc-care-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Responsive at 768px only */
@media (max-width: 768px) {
  .hmc-text-section {
    width: 100%;
  }

  .hmc-primary-title {
    font-size: 1.5rem;
  }

  .hmc-section-heading {
    font-size: 1.2rem;
  }

  .hmc-benefits-wrapper {
    padding: 60px 0;
  }

  .hmc-intro-paragraph {
    text-align: left;
  }
}

/* homecare service box  */

.service-box {
  height: 100%;
  box-shadow: 0 0 10px rgb(0 0 0 /15%);
}

.service-box h5 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.sv-btn {
  padding: 3px;
  color: #172431;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.sv-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #e67a30;
  transition: all 0.3s ease;
}

.sv-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background: #e67a30;
  transition: all 0.3s ease;
}

.sv-btn:hover {
  color: #e67a30;
  text-decoration: none;

  &::before {
    width: 100%;
    /* transition: all 0.3s ease; */
  }
}

.sv-btn:hover::after {
  width: 100%;
  /* transition: none; */
}

/* contact support section  */

.support-contact-wrapper {
  background-color: #f8f9fa;
}

.contact-service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.helpline-main-card {
  background: #e67a30;
  color: white;
}

.service-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.whatsapp-icon-box {
  background: #25d366;
  color: white;
}

.phone-icon-box {
  background: white;
  color: #2c3e50;
}

.feedback-icon-box {
  background: #6c757d;
  color: white;
}

.service-icon-container i {
  font-size: 35px;
}

.service-main-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.helpline-phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-action-button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.whatsapp-action-btn {
  background: #25d366;
  color: white;
}

.whatsapp-action-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

.call-action-btn {
  background: #fff;
  color: #e67a30;
  font-weight: 600;
}

.call-action-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(34, 74, 110, 0.3);
  color: #2c3e50;
}

.feedback-action-btn {
  background: #2c3e50;
  color: white;
}

.feedback-action-btn:hover {
  background: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(44, 62, 80, 0.3);
  color: white;
}

.contact-card-content {
  flex-grow: 1;
}

@media (max-width: 768px) {
  .contact-service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .service-main-title {
    font-size: 1.5rem;
  }

  .service-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-icon-container i {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .service-main-title {
    font-size: 1.3rem;
  }

  .contact-service-card {
    padding: 25px 15px;
  }
}

/* sidebar */

.sidebar {
  background: #e67a30;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px 12px;
}

.best-seller-sidebar h5 {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
}

.best-seller-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
}

.best-seller-list li {
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.best-seller-list li:last-child {
  border-bottom: none;
}

.best-seller-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e67a30;
  padding: 10px 8px;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
}

.best-seller-list li a i {
  margin-right: 10px;
  font-size: 18px;
  color: #e67a30;
  transition: color 0.3s;
}

.best-seller-list li a:hover {
  background-color: #e67a30;
  color: #fff;
}

.best-seller-list li a:hover i {
  color: #fff;
}

.best-seller-sidebar .form-group {
  margin-bottom: 15px;
}

.sidebar-form-btn {
  background: #e67a30;
  color: #fff;
  border: 2px solid #e67a30;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 5px;
  display: block;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar-form-btn:hover {
  background: #fff;
  color: #e67a30;
}

/* services  */

.serv-content {
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .serv-content {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }
}

.serv-img img {
  aspect-ratio: 16/8;
  border-radius: 10px;
  width: 100%;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-bottom: 20px;
}

.serv-text h2,
.serv-text h3,
.serv-text h4 {
  margin-bottom: 15px;
  color: #e67a30;
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}

.serv-text h2::after,
.serv-text h3::after,
.serv-text h4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #e67a30;
  border-radius: 2px;
}

.serv-text h2 {
  font-size: 28px;
}

.serv-text h3 {
  font-size: 24px;
}

.serv-text h4 {
  font-size: 20px;
}


.serv-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.serv-text ul,
.serv-text ol {
  margin-bottom: 15px;
  padding-left: 20px;
  color: #555;
}

.serv-text ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .serv-text h2 {
    font-size: 22px;
  }

  .serv-text h3 {
    font-size: 20px;
  }

  .serv-text h4 {
    font-size: 18px;
  }

  .serv-text p,
  .serv-text ul li {
    font-size: 15px;
  }
}




/* breadcrumb  */

.breadcrumb-section {
  background: linear-gradient(135deg, #eaa53f, #e67a30);
  color: white;
  padding: 100px 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 30px 0;
  }
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='50' fill='%2333c89e' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 0;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-item a i {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 100px;
  color: #e67a30;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-item a:hover {
  color: #d4f6ec;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffffcc;
}

.breadcrumb-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumb-subtitle {
  font-size: 16px;
  color: #d9f4eb;
}

@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 20px;
  }

  .breadcrumb-subtitle {
    font-size: 14px;
  }
}

/* medical equipment */

.medical-equipment-cards {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title,
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #266689;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, #266689, #df7c6f);
  border-radius: 2px;
}

@media (max-width: 768px) {

  .section-title,
  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title::after {
    width: 150px;
  }
}

.equipment-card {
  background: white;
  border-radius: 15px;
  padding: 20px 12px;
  box-shadow: 0 8px 15px rgba(7, 49, 72, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;

  border: 1px solid #e9ecef;
}

.equipment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #266689, #df7c6f);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.equipment-card:hover::before {
  transform: scaleX(1);
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(38, 102, 137, 0.15);
  border-color: transparent;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 50px);
  z-index: 1;
}

.equipment-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #eaa53f, #e67a30);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-icon {
  transform: scale(1.1) rotate(5deg);
}

.equipment-icon i {
  font-size: 1rem;
  color: white;
}

.availability-badge {
  background: #10b981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.equipment-image {
  text-align: center;
  margin-bottom: 20px;
}

.image-placeholder {
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.image-placeholder img {
  aspect-ratio: 5/4;
  object-fit: contain;
}

.equipment-card:hover .image-placeholder {
  transform: scale(1.05);
}

.image-placeholder i {
  font-size: 2rem;
  color: #266689;
}

.equipment-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #266689;
  text-align: center;
  margin-bottom: 15px;
}

.equipment-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.btn-rent,
.btn-call {
  flex: 1;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.btn-rent {
  background: linear-gradient(135deg, #eaa53f, #e67a30);
  color: white;
}

.btn-rent:hover {
  background: transparent;
  border: 2px solid #e67a30;
  transform: translateY(-2px);
  color: #e67a30;
}

.btn-call {
  background: transparent;
  color: #21c36c;
  border: 2px solid #21c36c;
}

.btn-call:hover {
  background: #21c36c;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {

  .equipment-card {
    padding: 20px;
  }

  .equipment-actions {
    flex-direction: column;
  }

  .card-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* model box  */

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

/* Modal Container */
.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow: auto;
  z-index: 1001;
  transition: all 0.3s ease;
}

.modal-container {
  /* Custom scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: #2875a4 #f0f0f0;
}

.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #2875a4;
  border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: #2875a4;
}


.modal-container.modal-show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Modal Header */
.modal-header {
  background: linear-gradient(135deg, #266689, #2980b9);
  color: white;
  padding: 15px;
  position: relative;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 25px;
}

.modal-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
  padding: 15px;
  overflow-y: auto;
}

/* Modal Form Styling */
.modal-form-group {
  margin-bottom: 15px;
}

.modal-form-group:last-child {
  margin: 0;
}

.modal-form-label {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.modal-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.modal-form-input:focus {
  outline: none;
  border-color: #266689;
  background: white;
  box-shadow: 0 0 0 3px rgba(38, 102, 137, 0.1);
}

.modal-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-form-select:focus {
  outline: none;
  border-color: #266689;
  background: white;
}

/* Modal Checkbox and Radio */
.modal-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.modal-checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: #266689;
}

/* Modal Footer */
.modal-footer {
  padding: 20px 30px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn-primary {
  background: linear-gradient(45deg, #266689, #2980b9);
  color: white;
}

.modal-btn-primary:hover {
  background: linear-gradient(45deg, #2980b9, #3498db);
  transform: translateY(-1px);
}

.modal-btn-secondary {
  background: #6c757d;
  color: white;
}

.modal-btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-form-label {
    display: none;
  }

  .modal-footer {
    padding: 15px 20px;
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }
}

/* footer  */

.footer {
  background: #28a745;
  color: white;
  padding: 2.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.06"/><circle cx="10" cy="60" r="0.3" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  border-radius: 2px;
}

.footer-link {
  color: rgba(255, 255, 255, 1);
  padding: 6px 8px;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* border-radius: 8px; */
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  border-bottom: 2px solid rgba(255, 255, 255, 0);
}

.footer-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.company-logo {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: white;
}

.about-text {
  font-size: 1.1rem;
  /* line-height: 1.7; */
  color: #fff;
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-item i {
  width: 20px;
  margin-right: 8px;
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 1rem;
  line-height: 1.5;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.social-link:hover {
  background: #fff;

  i {
    color: #28a745;
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 12px 1rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0 0;
}

.copyright p {
  font-size: 20px;

  .small {
    font-size: 16px;
    color: inherit;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 3rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}