/*-----------------------------------------------------------------
Theme Name: MediCare
Author: Kamal Gupta
Version: 1.0.0
------------------------------------------------------------------*/

/* 02.Variables */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {

  --body: #ffffff;
  --black: #000000;
  --white: #ffffff;

  --primary: #911B1F;
  --primary-dark: #911b1fe0;
  --secondary: #D99027;

  --theme: #911B1F;
  --theme2: #f8f9fa;

  --title: #000000;
  --text: #000000;
  --btn-text: #911B1F;
  --btn-bg: #911B1F;

  --border: #00000033;
  --bg: #f8f9fa;

  --box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

/* 03.Typography */

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  margin: 0;
}

p {
  margin: 0;
  color: var(--text);
}

a {
  text-decoration: none;
  color: var(--white);
}

a:hover {
  color: var(--primary-dark);
}

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

/* Nav Links */
.navbar .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin: 0 8px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #c62828;
}

.custom-radius {
  border-radius: 40px;
}

/* Button */
.btn-warning {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-warning:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .nav-link {
    margin: 8px 0;
  }
}

/* HERO BACKGROUND */
.hero-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f3ebe3, #e4f1ee);
  background-image: url(/assets/images/banner-bg.png);
}

/* TEXT */
.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
}

.hero-content .highlight {
  color: var(--primary);
}

.hero-content h5 {
  font-weight: 500;
  color: var(--black);
  font-size: 24px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
}

.subtitle-text {
  color: var(--text);
  margin-left: 15px;
}

/* LINE */
.arrow-line {
  width: 100px;
  height: 2px;
  background: var(--primary);
  position: relative;
  flex-shrink: 0;
}

/* ARROW HEAD */
.arrow-line::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

.hero-content p {
  font-size: 18px;
  color: var(--text);
  max-width: 550px;
}

/* IMAGE WRAPPER */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image-wrapper .main-img {
  border-radius: 60% 40% 50% 30% / 40% 60% 30% 60%;
}

.hero-image-wrapper .dots {
  position: absolute;
  top: 400px;
  right: 550px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #00a29c 2px, transparent 2px);
  background-size: 12px 12px;
  border-radius: 50%;
}

/* GRAMOPHONE IMAGE */
.gramophone {
  position: absolute;
  bottom: 150px;
  left: 35%;
  width: 125px;
}

/* BUTTONS */
.btn-hero {
  background: var(--primary);
  color: var(--white);
}

.btn-hero:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--black);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section {
    margin-top: 150px;
    padding: 60px 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .gramophone {
    display: none;
  }

  .arrow-line {
    width: 40px;
    height: 2px;
  }

  .subtitle-text {
    margin-left: 0px;
  }

  .btns-wrapper {
    justify-content: center;
  }
}

/* SECTION */
.partner-section {
  padding: 90px 0;
  background: #f9fafb;
}

/* TITLE */
.partner-section h2 {
  font-size: 34px;
  font-weight: 700;
}

.partner-section p {
  color: var(--black);
}

/* CARD */
.partner-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

/* ICON BOX */
.icon-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(145, 27, 31, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.icon-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* TEXT */
.partner-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 15px;
  color: #777;
}

/* HOVER */
.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .partner-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .icon-box {
    width: 80px;
    height: 80px;
  }

  .icon-box img {
    width: 72px;
    height: 72px;
  }
}

/* SECTION */
.about-section {
  padding: 100px 0 60px;
  background: #fff;
  position: relative;
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* CONTENT */
.about-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 20px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.about-content p {
  color: #666;
}

/* FEATURE BOX */
.feature-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-box img {
  width: 35px;
}

.feature-box h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-box p {
  font-size: 13px;
}

/* BUTTON */
.btn-danger {
  background: var(--primary);
  border: none;
}

.btn-danger:hover {
  background: var(--primary-dark);
}

/* SCROLL TEXT */
.scroll-text {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 42px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .feature-box {
    justify-content: center;
    text-align: left;
  }

  .scroll-text {
    display: none;
  }
}

/* BLACK SECTION */
.trusted-section {
  background: #000;
  padding: 40px 0;
  color: #fff;
}

/* TITLE */
.trusted-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
}

.trusted-section p {
  color: var(--white);
  max-width: 850px;
}

/* CARD */
.trusted-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

/* IMAGE WRAPPER */
.card-img {
  padding: 15px;
}

/* IMAGE */
.card-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTENT */
.card-body-custom {
  padding: 20px 20px 25px;
}

.card-body-custom h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.card-body-custom p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.trusted-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .trusted-section {
    padding: 60px 0;
    text-align: center;
  }

  .card-img img {
    height: 260px;
  }
}

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

/* SECTION */
.partner-logos {
  padding: 60px 0;
  background: #fff;
}

.partner-logos h4 {
  font-weight: 600;
}

/* LOGO ITEM */
.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE */
.logo-item img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.3s;
}

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

/* SECTION */
.why-section {
  padding: 80px 0;
  background: #fff;
}

/* TEXT */
.why-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

.why-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.why-content p {
  color: #666;
}

/* FEATURE BOX */
.feature-box {
  display: flex;
  gap: 12px;
}

.feature-box img {
  width: 30px;
}

.feature-box h6 {
  font-size: 15px;
  font-weight: 600;
}

.feature-box p {
  font-size: 13px;
  color: #777;
}

/* IMAGE WRAPPER */
.why-img-wrapper {
  position: relative;
  text-align: center;
}

/* MAIN IMAGE */
.main-img {
  border-radius: 12px;
}

/* OVERLAY CARDS */
.overlay-card {
  position: absolute;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
}

/* TOP CARD */
.top-card {
  top: 30px;
  left: -40px;
  width: 240px;
}

/* BOTTOM CARD */
.bottom-card {
  bottom: 20px;
  right: 20px;
  width: 160px;
}

/* IMAGE INSIDE */
.overlay-card img {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-section {
    padding: 60px 0;
    text-align: center;
  }
}

/* SECTION */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* CARD */
.pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  transition: 0.3s;
}

/* ACTIVE CARD */
.pricing-card.active {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* PRICE */
.price {
  font-size: 34px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* $ SIGN */
.dollar {
  font-size: 18px;
  position: relative;
  top: -6px;
  margin-right: 3px;
}

/* MONTH */
.month {
  font-size: 14px;
  margin-left: 5px;
}

/* TAG */
.plan-tag {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  background: #C8FDDD;
  font-weight: 600;
  color: var(--primary);
}

/* DESC */
.price-desc {
  font-size: 13px;
  color: var(--title);
  margin: 15px 0;
  text-align: center;
  letter-spacing: 4%;
}

/* BUTTON */
.price-btn .btn {
  border-radius: 6px;
  padding: 10px;
}

.btn-main:hover {
  background: var(--primary-dark);
}

/* LIST */
.price-list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.price-list li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.price-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .pricing-card.active {
    transform: none;
  }
}

/* SECTION */
.testimonial-section {
  padding: 40px 0;
  background-color: #FFF4F5;
}

.testimonila-title h2 {
  font-size: 36px;
  font-weight: 600;
}

.testimonila-title p {
  font-size: 16px;
  color: var(--black);
  max-width: 800px;
}

/* CARD */
.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  gap: 20px;
  height: 100%;
}

/* CONTENT */
.testimonial-content {
  flex: 1;
}

.testimonial-content h2 {
  font-size: 32px;
}

.testimonial-content p {
  font-size: 13px;
  line-height: 1.4;
}

/* IMAGE FIX */
.testimonial-img {
  /* width: 180px;  */
  flex-shrink: 0;
}

.testimonial-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* STARS */
.stars {
  color: #f4b400;
  font-size: 24px;
  margin-bottom: 8px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-content p {
    font-size: 12px;
  }

  .testimonial-img img {
    width: 150px;
    height: auto;
  }
}

.testimonialSwiper {
  padding-bottom: 40px;
}

/* spacing between cards */
.swiper-slide {
  height: auto;
}

/* desktop */
@media (min-width: 768px) {
  .swiper-slide {
    width: auto;
  }
}

@media (max-width: 500px) {

  .testimonial-card {
    padding: 15px;
  }

  /* Heading chhota */
  .testimonial-card h5 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* Paragraph chhota + readable */
  .testimonial-card p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;

    /* max 3 lines show */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* stars size */
  .testimonial-card .stars {
    font-size: 12px;
    margin-bottom: 6px;
  }

  /* user name */
  .testimonial-card .user h6 {
    font-size: 13px;
  }

  /* user role */
  .testimonial-card .user span {
    font-size: 11px;
  }

  /* image size control */
  .testimonial-img img {
    max-height: 140px;
    object-fit: cover;
  }

}

/* CTA SECTION */

.cta-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

/* LEFT */
.cta-left h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* BUTTON */
.cta-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
}

.cta-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* RIGHT */
.cta-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.call-icon {
  width: 55px;
  height: 55px;
  background: #911B1F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cta-text span {
  font-size: 13px;
  color: #777;
}

.cta-text h6 {
  margin: 0;
  font-weight: 600;
}

/* FOOTER */
.footer-section {
  background: var(--black);
  color: var(--black);
  padding: 90px 0 0;
  margin-top: -40px;
}

/* LOGO BOX */
.footer-logo {
  /* background: #fff; */
  padding: 10px 15px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* LOGO SIZE CONTROL */
.footer-logo img {
  width: 300px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: #FFFFFFBA;
  font-size: 14px;
  line-height: 1.6;
}

/* HEADINGS */
.footer-section h5 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #FFFFFFBA;
}

/* LINKS */
.footer-section ul {
  padding: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #FFFFFFBA;
  font-size: 14px;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

/* CONTACT */
.contact-list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #FFFFFFBA;
}

/* ADDRESS SECTION */
.footer-address h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFFBA;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* mobile */
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

/* ICON */
.contact-item .icon {
  width: 38px;
  height: 38px;
  /* border: 1px solid #444; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFFBA;
  font-size: 16px;
  flex-shrink: 0;
}

/* TEXT */
.contact-item .text h6 {
  font-size: 14px;
  margin: 0;
  color: #FFFFFFBA;
  font-weight: 600;
}

.contact-item .text span {
  font-size: 13px;
  color: #FFFFFFBA;
  display: block;
  margin-top: 3px;
}

/* BOTTOM */
.footer-bottom {
  background: var(--primary);
  padding: 14px 0;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--white);
}

/* SOCIAL */
.social-icons a {
  color: var(--white);
  margin-left: 12px;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* contact-page */
.contact-hero {
  padding: 150px 0;
  background: linear-gradient(135deg, #f6efe8, #e6f4f1);
}

.hero-content2 h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-content2 p {
  font-size: 14px;
  color: #555;
}

.hero-content2 a {
  text-decoration: none;
  color: #000;
}

.hero-content2 span {
  color: #911B1F;
  font-weight: 500;
}

/* CONTACT */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

/* LEFT */
.small-title {
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
}

.contact-left h2 {
  font-size: 42px;
  font-weight: 600;
  margin: 10px 0;
}

.contact-left p {
  font-size: 16px;
  color: var(--black);
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

/* ITEM */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ICON BOX */
.info-item .icon {
  width: 45px;
  height: 45px;
  background: #f3e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* IMAGE ICON */
.info-item .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* TEXT */
.info-item h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.info-item span {
  font-size: 13px;
  color: #666;
}

/* HOVER EFFECT */
.info-item:hover .icon {
  background: #911B1F;
}

.info-item:hover .icon img {
  filter: brightness(0) invert(1);
}

.info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

/* ITEM */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ICON BOX */
.info-item .icon {
  width: 45px;
  height: 45px;
  background: #f3e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* ICON */
.info-item .icon i {
  font-size: 18px;
  color: var(--primary);
}

/* TEXT */
.info-item h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.info-item span {
  font-size: 13px;
  color: #666;
}

/* HOVER EFFECT */
.info-item:hover .icon {
  background: var(--primary);
}

.info-item:hover .icon i {
  color: var(--white);
}

/* CALL BOX */
.call-box {
  margin-top: 25px;
  padding: 15px;
  background: #f3e9e9;
  border-left: 6px solid var(--primary);
  border-radius: 6px;
}

.call-box span {
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
}

.call-box h6 {
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
}

/* FORM */
.contact-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h5 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 14px;
}

/* BUTTON */
.submit-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 25px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* MAP */
.map-section {
  padding: 60px 0;
}

.map-box {
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-info {
    flex-direction: column;
  }

  .contact-hero {
    padding: 70px 0;
  }

  .hero-content2 h2 {
    font-size: 28px;
  }

  .hero-content2 p {
    font-size: 16px;
  }

  .contact-left h2 {
    font-size: 28px;
  }
}

/* about page */

.about-us {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* HEADING BLOCK */
.about-head {
  /* max-width: 900px; */
  margin: 0 auto;
  text-align: center;
}

.scroll-text2 {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 48px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
}

/* TITLE */
.about-head h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--black);
}

/* PARAGRAPH */
.about-head p {
  max-width: 1250px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
  color: var(--black);
  text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-us {
    padding: 60px 0;
  }

  .about-head h2 {
    font-size: 28px;
  }

  .scroll-text {
    font-size: 14px;
    gap: 20px;
  }

  .scroll-text span::after {
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  .scroll-text {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .scroll-text span::after {
    display: none;
  }
}

.about-section2 {
  padding: 80px 0;
}

/* SECTION */
.visual-section {
  padding: 80px 0;
  background: #fff;
}

@media (min-width: 768px) {

  .service-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .service-slider .swiper-slide {
    width: 25%;
  }

}

/* TABLET (768px - 1024px)  3 cards */
@media (min-width: 768px) and (max-width: 1024px) {
  .service-slider .swiper-slide {
    width: calc(100% / 3) !important;
  }
}

/*  DESKTOP  4 cards */
@media (min-width: 1025px) {
  .service-slider .swiper-slide {
    width: calc(100% / 4) !important;
  }
}

@media (max-width: 767px) {

  .service-slider .swiper-wrapper {
    display: flex;
  }

  .service-slider .swiper-slide {
    width: 80%;
  }

}

/* TITLE */
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  max-width: 750px;
  /* margin: 0 auto; */
  color: var(--black);
  font-size: 15px;
}

/* IMAGE */
.visual-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* CONTENT */
.visual-content h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.visual-content h6 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}

.visual-content p {
  font-size: 16px;
  color: var(--black);
  margin: 5px 0 10px;
}

/* LIST */
.visual-content ul {
  padding-left: 18px;
  margin: 0;
}

.visual-content ul li {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--black);
}

.flex {
  display: flex;
  gap: 80px;
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  margin: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .visual-section {
    padding: 60px 0;
  }

  .visual-content h4 {
    font-size: 18px;
  }
}

@media(max-width:1400px) {
  .scroll-text2 {
    display: none;
  }
}

/* Services */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* TITLE */
.section-title span {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 5px;
}

/* CARD */
.service-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

/* NUMBER (light background style) */
.service-number {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 80px;
  font-weight: 700;
  color: var(--white);
}

/* ICON */
.service-card .icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* ICON IMAGE */
.service-card .icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* white icon */
}

/* TEXT */
.service-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--black);
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }
}

/* blog */
.blog-page {
  padding: 90px 0;
  background: #f9f9f9;
}

/* SIDEBAR BOX */
.sidebar-box {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* RED HEADER */
.sidebar-title {
  background: #911B1F;
  padding: 15px 20px;
}

.sidebar-title h5 {
  color: var(--white);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* SERVICE LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  border-bottom: 1px solid #eee;
}

.service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  color: var(--black);
  transition: 0.3s;
}

.service-list li a span {
  font-size: 14px;
  color: var(--black);
}

/* HOVER */
.service-list li a:hover {
  background: #f8f8f8;
  color: var(--primary);
  padding-left: 22px;
}

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

/* CARD */
.opening-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.opening-img img {
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.opening-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

/* ICON CIRCLE */
.opening-icon {
  width: 65px;
  height: 65px;
  background: #f3d6d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening-icon img {
  width: 30px;
}

s

/* TEXT */
.opening-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.opening-text p {
  font-size: 14px;
  color: var(--black);
  margin: 0;
}

.opening-text span {
  font-size: 14px;
  color: var(--black);
}

/* CALL BAR */
.call-bar {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
}

.call-bar img {
  width: 22px;
  filter: brightness(0) invert(1);
}

/* CARD */
.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* SMALL OVERLAY BOX */
.img-shape {
  position: absolute;
  bottom: -15px;
  left: 20px;
  width: 35px;
  height: 35px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.blog-content {
  padding: 25px 20px 22px;
}

/* TITLE */
.blog-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* TEXT */
.blog-card p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--black);
}

.blog-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.blog-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.service-details img {
  width: 100%;
  border-radius: 10px;
}

.service-img {
  margin-bottom: 20px;
}

.service-content p {
  color: var(--black);
  line-height: 1.7;
}

.service-content h2 {
  font-size: 36px;
  font-weight: 600;
}

/* BOX */
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  overflow: hidden;
}

/* IMAGE WRAPPER */
.feature-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

/* IMAGE */
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* TEXT */
.feature-content h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.feature-content p {
  font-size: 14px;
  color: var(--black);
  margin: 0;
}

/* HOVER EFFECT */
.feature-box:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* IMAGE ZOOM */
.feature-box:hover .feature-img img {
  transform: scale(1.1);
}

/* DESCRIPTION */
.why-desc {
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
  max-width: 800px;
}

/* LIST */
.why-list {
  margin-top: 20px;
}

.why-list ul {
  padding-left: 18px;
}

.why-list li {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 12px;
  position: relative;
}

/* CUSTOM BULLET */
.why-list li::marker {
  color: var(--primary);
  font-size: 20px;
}

/* EXTRA TEXT */
.why-extra {
  margin-top: 20px;
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
  max-width: 900px;
}

@media (max-width:768px) {
  .why-content h2 {
    font-size: 24px;
  }

  .partner-section h2 {
    font-size: 24px;
  }

  .testimonila-title h2 {
    font-size: 24px;
  }

  .service-content h2 {
    font-size: 24px;
  }
}

/* SIDEBAR BOX */
.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.recent-title h5 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* RECENT ITEM */
.recent-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

/* LAST ITEM BORDER REMOVE */
.recent-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* IMAGE */
.recent-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.recent-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--black);
}

.recent-content p {
  font-size: 13px;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 3px;
}

/* LINK */
.recent-content a {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.recent-content a:hover {
  text-decoration: underline;
}

/* Faq Section */
.faq-section {
  background: #f8fafc;
}

.faq-tag {
  background: #ffe7d6;
  color: #ff5c35;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.custom-faq .accordion-item {
  border: none;
  margin-bottom: 18px;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.custom-faq .accordion-button {
  padding: 22px;
  font-size: 18px;
  font-weight: 600;
  background: #fff;
}

/* start invert color  */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* closed state black */
.accordion-button.collapsed::after {
  filter: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
}

.custom-faq .accordion-body {
  padding: 22px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    margin-top: 50px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .hero-content h1 {
    margin-top: 10px;
  }
}

.footer-contact h5,
.footer-contact h6,
.footer-contact span,
.footer-contact a,
.footer-contact i {
  color: #fff !important;
}

.footer-contact a {
  text-decoration: none;
}