.master-header-logo {
  width: 250px;
  height: auto;
  max-width: 100%;
}

.desktop-banner {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.mobile-banner {
  display: none;
}

@media (max-width: 500px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    width: 100%;
  }
}

/* Value Proposition */

.vp-usp-section {
  padding: 60px 0;
  background-color: #000000f1;
  background-image: url("../images/0/lines-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.vp-usp-section .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}

.vp-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.vp-section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ebebeb;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

/* .vp-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 14px;
  background: #E82425;
  z-index: -1;
} */

.vp-carousel-wrapper {
  position: relative;
  padding: 0 60px;
  margin-bottom: 0;
}

.vp-usp-carousel {
  overflow: hidden;
}

.vp-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.vp-usp-card {
  min-width: calc((100% - 120px) / 4);
  /* flex-shrink: 0; */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vp-usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.vp-usp-icon {
  width: 125px;
  height: 125px;
  object-fit: contain;
  margin-bottom: 25px;
}

.vp-usp-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ebebeb;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.vp-usp-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vp-usp-card h3 a:hover {
  color: #a50d0a;
}

.vp-usp-card p {
  font-size: 15px;
  color: #a0aec0;
  line-height: 1.7;
  margin: 0;
}

.vp-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #ffffff;
}

.vp-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.vp-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.vp-carousel-arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.vp-carousel-arrow-left {
  left: 0;
}

.vp-carousel-arrow-right {
  right: 0;
}

.vp-carousel-arrow svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1199px) {
  .vp-usp-card {
    min-width: calc((100% - 60px) / 3);
  }
}

@media (max-width: 991px) {
  .vp-carousel-wrapper {
    padding: 0 50px;
  }

  .vp-usp-card {
    min-width: calc((100% - 30px) / 2);
  }

  .vp-section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .vp-usp-section {
    padding: 50px 0;
  }

  .vp-section-title {
    margin-bottom: 40px;
  }

  .vp-section-title h2 {
    font-size: 32px;
  }

  .vp-carousel-wrapper {
    padding: 0 40px;
  }

  .vp-carousel-track {
    gap: 20px;
  }

  .vp-usp-card {
    min-width: 100%;
    padding: 35px 20px;
  }

  .vp-usp-icon {
    width: 100px;
    height: 100px;
  }

  .vp-usp-card h3 {
    font-size: 17px;
    min-height: auto;
  }

  .vp-usp-card p {
    font-size: 14px;
  }

  .vp-carousel-arrow {
    width: 45px;
    height: 45px;
  }

  .vp-carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .vp-section-title h2 {
    font-size: 28px;
  }

  .vp-carousel-wrapper {
    padding: 0 35px;
  }

  .vp-usp-card {
    padding: 30px 20px;
  }

  .vp-usp-icon {
    width: 90px;
    height: 90px;
  }
}

/* Value Proposition */

/*Testimonials Section */

.testimonial-section {
  padding: 80px 0;
  background: #ffffff;
}

.testimonial-content {
  padding-right: 40px;
}

.testimonial-label {
  font-size: 14px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.testimonial-title {
  font-size: 52px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 30px;
}

.testimonial-title-highlight {
  position: relative;
  display: inline-block;
}

.testimonial-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 12px;
  background: #E82425;
  z-index: -1;
}

.client-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-right: -15px;
  object-fit: cover;
}

.avatar-count {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2d3748;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 3px solid #ffffff;
  margin-left: 5px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-logo {
  font-size: 24px;
  font-weight: 700;
  color: #4285f4;
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-reviews-text {
  font-size: 12px;
  color: #718096;
  margin-top: 2px;
}

.rating-stars {
  color: #000000;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-left: 5px;
}

.testimonial-box {
  background: #000000;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-author {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.testimonial-stars {
  color: #E82425;
  font-size: 20px;
  letter-spacing: 3px;
}

.testimonial-badge {
  font-size: 13px;
  color: #b8b8b8;
  font-weight: 600;
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 400;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dot.active {
  background: #E82425;
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .testimonial-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .testimonial-title {
    font-size: 42px;
  }

  .client-avatars {
    justify-content: center;
  }

  .google-rating {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-title {
    font-size: 36px;
  }

  .testimonial-box {
    padding: 35px 25px;
    min-height: 350px;
  }

  .google-icon {
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .testimonial-author {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .avatar {
    width: 45px;
    height: 45px;
  }

  .avatar-count {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .testimonial-title {
    font-size: 32px;
  }

  .testimonial-box {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

/*Testimonials Section */

/* Lead Form Section */

.lead-form-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  line-height: 1.3;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title-highlight {
  position: relative;
  display: inline-block;
}

.section-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 14px;
  background: #E82425;
  z-index: -1;
}

.form-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.quote-form-wrapper {
  background: #000000;
  border-radius: 20px;
  padding: 45px 40px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;`
}

.quote-icon {
  position: absolute;
  top: -25px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: #E82425;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 5px 20px rgba(198, 255, 0, 0.4); */
}

.quote-icon svg {
  width: 35px;
  height: 35px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: none;
}

.form-control {
  height: 55px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  padding: 0 25px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: transparent;
  border-color: #E82425;
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
  transition: background-color 5000s ease-in-out 0s;
  border: 2px solid #E82425;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 25px center;
  cursor: pointer;
}

select.form-control option {
  background: #000000;
  color: #ffffff;
}

.submit-btn {
  width: 100%;
  height: 55px;
  background: #E82425;
  border: none;
  border-radius: 50px;
  color: #000000;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: white;
  transform: translateY(-2px);
  color: #000000;
  /* box-shadow: 0 8px 25px rgba(198, 255, 0, 0.3); */
}

@media (max-width: 991px) {
  .form-image-wrapper {
    margin-bottom: 40px;
    min-height: 400px;
  }

  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .lead-form-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .form-image-wrapper {
    min-height: 300px;
    margin-bottom: 30px;
  }

  .quote-form-wrapper {
    padding: 40px 25px;
  }

  .quote-icon {
    width: 60px;
    height: 60px;
    top: -20px;
    right: 25px;
  }

  .quote-icon svg {
    width: 30px;
    height: 30px;
  }

  .form-title {
    font-size: 26px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .form-control {
    height: 50px;
    font-size: 14px;
  }

  .submit-btn {
    height: 50px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .quote-form-wrapper {
    padding: 35px 20px;
  }

  .form-title {
    font-size: 24px;
  }
}

/* Lead Form Section */

/*FAQs Section */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.faq-header {
  margin-bottom: 50px;
}

.faq-label {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.faq-title {
  font-size: 56px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 0;
}

.faq-title-highlight {
  position: relative;
  display: inline-block;
}

.faq-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 14px;
  background: #E82425;
  z-index: -1;
}

.faq-content-wrapper {
  position: relative;
}

.faq-list {
  padding-right: 40px;
}

.faq-item {
  background: white;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.faq-question {
  padding: 28px 60px 28px 0;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
  display: block;
  background: #f8f9fa;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: #000000;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 300;
  color: #2d3748;
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-question.active::after {
  content: "−";
  color: #000000;
  background: #f8f9fa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  background: #f8f9fa;
}

.faq-answer.active {
  max-height: 300px;
  padding-bottom: 28px;
  background: #f8f9fa;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #718096;
  margin: 0;
  padding-right: 60px;
}

.faq-image-wrapper {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 45%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.faq-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .faq-image-wrapper {
    display: none;
  }

  .faq-list {
    padding-right: 0;
  }

  .faq-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-header {
    margin-bottom: 35px;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-question {
    font-size: 18px;
    padding: 22px 50px 22px 0;
  }

  .faq-question::after {
    font-size: 28px;
  }

  .faq-answer p {
    font-size: 15px;
    padding-right: 50px;
  }

  .faq-answer.active {
    padding-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 17px;
    padding: 20px 45px 20px 0;
  }

  .faq-answer p {
    font-size: 14px;
    padding-right: 45px;
  }
}
/*FAQs Section */


/* Product Carousel */
.products-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 14px;
  background: #E82425;
  z-index: -1;
}

.carousel-wrapper {
  position: relative;
  padding: 0 60px;
  margin-bottom: 50px;
}

.products-carousel {
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.product-card {
  min-width: calc((100% - 90px) / 4);
  flex-shrink: 0;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.product-image-wrapper {
  width: 100%;
  height: 330px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 25px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.buy-btn {
  flex: 1;
  height: 45px;
  background: rgb(232, 36, 37);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.buy-btn:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(198, 255, 0, 0.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #000000;
  border-color: #000000;
  color: white;
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background: white;
  color: #000000;
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.explore-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.explore-more-btn {
  display: inline-block;
  padding: 16px 50px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #000000;
}

.explore-more-btn:hover {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1199px) {
  .product-card {
    min-width: calc((100% - 60px) / 3);
  }
}

@media (max-width: 991px) {
  .carousel-wrapper {
    padding: 0 50px;
  }

  .product-card {
    min-width: calc((100% - 30px) / 2);
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .carousel-wrapper {
    padding: 0 40px;
    margin-bottom: 40px;
  }

  .carousel-track {
    gap: 20px;
  }

  .product-card {
    min-width: 100%;
  }

  .product-image-wrapper {
    height: 250px;
  }

  .product-info {
    padding: 20px;
  }

  .product-name {
    font-size: 17px;
    min-height: auto;
  }

  .product-price {
    font-size: 22px;
  }

  .carousel-arrow {
    width: 45px;
    height: 45px;
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }

  .explore-more-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .carousel-wrapper {
    padding: 0 35px;
  }

  .product-image-wrapper {
    height: 305px;
  }

  .product-footer {
    flex-direction: column;
    gap: 12px;
  }

  .buy-btn {
    width: 100%;
  }

  .explore-more-btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}

/* Product Carousel */

/* About Us */

.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-content-wrapper {
  background: #000000;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heritage-icon {
  position: absolute;
  top: -40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* border: 2px solid #E82425; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  /* color: #E82425; */
  background: transparent;
}

.about-label {
  font-size: 14px;
  font-weight: 600;
  color: #E82425;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-title-highlight {
  position: relative;
  display: inline-block;
}

.about-title-highlight span {
  position: relative;
  z-index: 1;
  /* color: #000000; */
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 35px;
}

.read-more-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #E82425;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more-btn:hover {
  background: #8b2121ff;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 10px 25px #E82425;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.modal-container {
  background: #ffffff;
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #E82425;
  color: #000000;
  transform: rotate(90deg);
}

.modal-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-content {
  padding: 50px;
}

.modal-title {
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.3;
}

.modal-text {
  font-size: 17px;
  line-height: 1.9;
  color: #2d3748;
  margin-bottom: 25px;
}

.modal-highlight {
  background: #E82425;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: white;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    min-height: 400px;
    margin-bottom: 30px;
  }

  .about-content-wrapper {
    min-height: auto;
  }

  .about-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
  }

  .about-image-wrapper {
    min-height: 300px;
  }

  .about-content-wrapper {
    padding: 35px 25px;
  }

  .heritage-icon {
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }

  .modal-content {
    padding: 35px 25px;
  }

  .modal-title {
    font-size: 28px;
  }

  .modal-text {
    font-size: 16px;
  }

  .modal-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

  .about-content-wrapper {
    padding: 30px 20px;
  }

  .read-more-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 24px;
  }
}

/* Scrollbar styles for modal */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* About Us  */