* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-primary: Roboto, sans-serif;
  --font-heading: "Rozha One", serif;
  --font-ui: "MS UI Gothic", "Yu Gothic", Meiryo, Arial, sans-serif;
  --primary-dark: #000;
  --secondary-dark: #1a1a1a;
  --light-bg: #fff;
  --border-color: #e5e5e5;
  --text-light: #fff;
  --text-dark: #000;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url(images/herobg.webp) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
}
.hero-icon img {
  width: 90px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 50px !important;
  letter-spacing: 1px !important;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 16px;
  font-family: var(--font-primary);
  color: #2e2e2e;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.hero-buttons .btn {
  padding: 7px 22px;
  font-size: 14px;
  border-radius: 20px;
}
.services-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
}
.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}
.section-subtitle {
  font-size: 14px;
  margin: 0 auto;
  color: #fff;
}
.service-card {
  position: relative;
  height: 420px !important;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000d9, #0003);
}
.service-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}
.service-content h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-content p {
  font-size: 14px;
  color: #d1d1d1;
  line-height: 1.6;
}
.service-card:hover img {
  transform: scale(1.08);
}
@media (max-width: 991px) {
  .services-section {
    padding: 70px 0;
  }
  .service-card {
    height: 380px;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }
  .service-card {
    height: 440px !important;
    width: auto;
  }
}
@media (max-width: 576px) {

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    display: none;
  }
}
.about-section {
  padding: 100px 0;
  background: #fff;
}
.about-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-content h2 span {
  color: #1db954;
}
.about-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 620px;
  text-align: justify;
}
.about-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-family: var(--font-primary) !important;
}
.about-image {
  position: relative;
}
.image-box {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}
.image-box img {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}
.image-box::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 8px;
  z-index: 1;
}
.logo-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 90px;
  height: 90px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.logo-badge img {
  width: 75px;
}
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }
  .about-content h2 {
    font-size: 30px;
  }
  .image-box {
    margin: 40px auto 0;
  }
}
@media (max-width: 576px) {
  .about-content h2 {
    font-size: 26px;
  }
  .logo-badge {
    width: 70px;
    height: 70px;
  }
  .logo-badge img {
    width: 35px;
  }
}
.portfolio-section {
  padding: 100px 0;
  background: #f9f9fa;
}
.portfolio-title {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 1px;
}
.portfolio-subtitle {
  font-size: 14px;
  color: #777;
}
.filter-title {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000;
}
.portfolio-filters {
  display: inline-flex;
  gap: 8px;
}
.filter-btn {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}
.filter-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.portfolio-card {
  height: 280px;
  background: linear-gradient(135deg, #000, #1a1a1a);
  display: flex;
  align-items: flex-end;
  padding: 15px;
  position: relative;
}
.brand-name {
  width: 100%;
  background: #2a2a2a;
  color: #fff;
  font-size: 13px;
  padding: 8px;
  text-align: center;
}
.portfolio-card:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .portfolio-section {
    padding: 70px 0;
  }
  .portfolio-card {
    height: 240px;
  }
  .portfolio-filters {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.portfolio-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px #00000014;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px #00000026;
}
.portfolio-img {
  width: 100%;
  height: 370px;
  overflow: hidden;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-content {
  padding: 18px 22px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.post-link {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-link:hover {
  text-decoration: underline;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .portfolio-img {
    height: 320px;
  }
}
.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-section {
  padding: 100px 0;
  background: #fff;
  font-family: var(--font-primary);
}
.process-title {
  font-size: 45px !important;
  font-weight: 600;
  margin-bottom: 60px;
  font-family: var(--font-primary);
}
.process-bg-image {
  margin-top: 40px;
  text-align: center;
}
.process-bg-image img {
  max-width: 90%;
  width: 750px;
}
@media (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }
  .process-title {
    font-size: 28px !important;
    margin-bottom: 40px;
  }
  .process-bg-image img {
    width: 100%;
  }
}
body {
  overflow-x: hidden;
}
.testimonial-section {
  padding: 100px 0;
  background: #fff8f80a;
  /* url(images/testimonial-bg.png) bottom center no-repeat; */
  background-size: contain;
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  will-change: transform;
  width: max-content;
}
.testimonial-card {
  width: 360px;
  min-width: 360px;
  max-width: 360px;
  background: #ffffff79;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 15px 40px #81757517;
  border: #000 2px solid;
  flex-shrink: 0;
}
.profile img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.quote {
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 46px;
  color: #000000;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}
.testimonial-nav button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.testimonial-nav button:hover {
  background: #000;
  color: #fff;
}

/* ================= RESPONSIVE TESTIMONIAL ================= */

/* Large Desktop (already fine, no change needed) */
@media (min-width: 1200px) {
  .testimonial-card {
    width: 360px;
    min-width: 360px;
  }
}


@media (max-width: 991px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    width: 300px;
    min-width: 300px;
    padding: 25px;
  }

  .quote {
    font-size: 38px;
  }
}


@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-card {
    width: 220px;
  min-width: 260px; 
    padding: 22px;
  }

  .profile img {
    width: 38px;
    height: 38px;
  }

  .quote {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-track {
    gap: 15px;
  }

  .testimonial-card {
    width: 90vw;
    min-width: 90vw;
    padding: 20px;
    margin: 0 auto;
  }

  .testimonial-nav button {
    width: 36px;
    height: 36px;
  }

  .quote {
    font-size: 30px;
    right: 15px;
    bottom: 10px;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .testimonial-card {
    width: 90vw;
    /* min-width: 95vw; */
    padding: 18px;
  }

  .profile img {
    width: 34px;
    height: 34px;
  }

  .quote {
    font-size: 26px;
  }
}
.cta-section {
  padding: 90px 0;
  background: radial-gradient(circle at center, #1f1f1f, #000);
  color: #fff;
  font-family: var(--font-primary);
}
.cta-section h2 {
  font-size: 46px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 10px;
}
/*.cta-section p {*/
/*  font-size: 18px;*/
/*  color: #151414;*/
/*  margin-bottom: 25px;*/
/*  text-align: justify;*/
/*}*/
.cta-section p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }
  .cta-section h2 {
    font-size: 26px;
  }
}

.recognition-section {
  padding: 100px 0;
  background: #fff;
  font-family: var(--font-primary);
}
.recognition-left h3 {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-primary);
  line-height: 1.2;
  /* margin-bottom: 10px; */
  position: relative;
}
.recognition-left h3 strong {
  color: #000;
}
.recognition-left .line {
  display: inline-block;
  width: 3px;
  height: 42px;
  background: #000;
  /* margin-right: 10px; */
  vertical-align: middle;
}
.recognition-left p {
  font-size: 16px;
  color: #111;
  line-height: 1.8;
  max-width: 520px;
    text-align: justify;
}
.recognition-right p {
  font-size: 16px;
  color: #121111;
  line-height: 1.8;
  max-width: 520px;
  margin-top: 26px !important;
    text-align: justify;
}
.read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: #2ecc71;
  text-decoration: none;
  font-weight: 500;
}
.read-more:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .recognition-section {
    padding: 70px 0;
  }
  .recognition-right {
    margin-top: 30px;
  }
  .recognition-left h3 {
    font-size: 22px;
  }
}
.industries-section {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  /* padding: 50px 0 50px; */

  color: #fff;
  font-family: var(--font-primary);
}
.industries-title {
  text-align: center;
  font-size: 46px !important;
  font-weight: 600;
  font-family: var(--font-primary);
  /* margin-bottom: 0px; */
  padding-top: 50px !important;
}

.industries-grid {
  margin-bottom: 50px;
}
.industry-card {
  position: relative;
  height: 550px;
  overflow: hidden;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.6s ease;
}
.industry-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: linear-gradient(to top, #000000d9, #0003);
}
.industry-card h5 {
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.industry-card:hover img {
  transform: scale(1.08);
}
.partners {
  text-align: center;
}
.partner-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  padding-top: 10px;
  /* margin-bottom: 20px; */
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 85px;
  transition: 0.3s;
}
.partner-logos img:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .industry-card {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .industries-title {
    font-size: 24px;
  }
  .industry-card {
    height: 260px;
  }
  .partner-logos {
    gap: 20px;
  }
}
.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scroll-logos 35s linear infinite;
}
.logo-track img {
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  transition: 0.3s ease;
}
.logo-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .logo-track img {
    height: 55px;
  }
  .logo-track {
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .industry-card {
    height: 550px;
  }
}
@media (max-width: 991px) {
  .industries-section {
    padding: 60px 0 40px;
  }
  .industries-title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .industry-card {
    height: 360px;
  }
  .industry-card h5 {
    font-size: 22px;
  }
  .industry-card p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .industries-section {
    padding: 50px 0 30px;
  }
  .industries-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .industry-card {
    height: 600px !important;
  }
  .industry-card .overlay {
    padding: 18px;
  }
  .industry-card h5 {
    font-size: 20px;
  }
  .industry-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  /* .industry-card {
    height: 490px !important;
  } */
     @media (max-width: 480px) {
       .industry-card {
         height: 490px !important;
       }
  
       .industry-card:nth-child(3),
       .industry-card:nth-child(4) {
         display: none;
       }
     }
  .industries-title {
    font-size: 26px;
  }
  .industry-card h5 {
    font-size: 20px;
  }
  .industry-card p {
    font-size: 16px;
  }
}
.recommended-section {
  padding: 90px 0;
  background: #fff;
  font-family: var(--font-primary);
}
.section-header h4 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.section-header p {
  font-size: 16px;
  color: #0e0e0e;
  margin-bottom: 40px;
}
.recommend-card {
  border: 1px solid #38c172;
  padding: 22px;
  border-radius: 6px;
  height: 100%;
  transition: all 0.3s ease;
}
.recommend-card:hover {
  background: #f8fff9;
  transform: translateY(-4px);
}
.recommend-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #38c172;
}
.recommend-card h5 {
  font-size: 21px px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 8px;
}
.recommend-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .recommended-section {
    padding: 70px 0;
  }
}
.why-choose-section {
  position: relative;
  padding: 120px 0;
  background: url(images/why-bg.png) center/cover no-repeat;
  color: #fff;
  font-family: var(--font-primary);
}
.why-choose-section .overlay {
  position: absolute;
  inset: 0;
  background: #000000bf;
  z-index: 1;
}
.why-choose-section .container {
  position: relative;
  z-index: 2;
}
.why-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.stat-box {
  text-align: center;
}
.stat-icon {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background: #ffffff26;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 25px;
}
.stat-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-box p {
  font-size: 11px;
  letter-spacing: 1px;
  color: #ccc;
}
@media (max-width: 768px) {
  .why-choose-section {
    padding: 80px 0;
  }
  .why-title {
    font-size: 26px;
  }
}
.blog-section {
  padding: 100px 0;
  background: #fff;
  font-family: var(--font-primary);
}
.blog-title {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-primary);
  margin-bottom: 20px;
}
.blog-card {
  max-width: 320px;
  margin: auto;
}
.blog-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.blog-text {
  font-size: 16px;
  font-family: var(--font-primary);
  color: #000;
  line-height: 1.6;
}
.blog-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 18px;
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.blog-btn:hover {
  background: #333;
}
@media (max-width: 768px) {
  .blog-section {
    padding: 70px 0;
  }
  .blog-title {
    font-size: 20px;
  }
}
.faq-section {
  padding: 100px 0;
  background: #f5f5f5;
  font-family: var(--font-primary);
}
.faq-tag {
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: #777;
  letter-spacing: 1px;
}
.faq-title {
  font-size: 40px;
  font-weight: 600;
  margin-top: 8px;
}
.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
}
.accordion-button {
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #000;
  background: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  font-size: 16px;
  color: #555;
  padding: 0 0 20px;
  line-height: 1.8;
}
.accordion-button::after {
  background-size: 14px;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }
  .faq-title {
    font-size: 26px;
  }
}
.talk-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.talk-modal {
  width: 1100px;
  max-width: 95%;
  height: 510px;
  background: #fff;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
}
.talk-left {
  width: 45%;
  background: radial-gradient(circle, #2b2b2b, #000);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.talk-left img {
  width: 95%;
  z-index: 1;
}
.talk-left-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
}
.talk-left-text h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
.talk-right {
  width: 55%;
  padding: 40px 45px;
  position: relative;
}
.talk-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}
.talk-right h2 {
  font-size: 32px;
  margin-bottom: 6px;
}
.talk-right h2 span {
  background: #c90000;
  color: #fff;
  padding: 2px 10px;
}
.talk-right p {
  color: #555;
  margin-bottom: 25px;
}
.talk-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 15px;
}
.talk-form input,
.talk-form select {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #cfd8e3;
  font-size: 14px;
}
.submit-btn {
  background: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 6px;
}
.policy {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}
.talk-features {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .talk-modal {
    flex-direction: column;
    height: auto;
  }
  .talk-left,
  .talk-right {
    width: 100%;
  }
  .talk-left {
    height: 250px;
  }
  .talk-left img {
    width: 80%;
  }
  .talk-right {
    padding: 30px 25px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    min-height: 85vh;
    padding: 80px 20px;
  }
  .hero-title {
    font-size: 44px;
    letter-spacing: 2px;
  }
  .hero-subtitle {
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.7;
  }
  .hero-buttons {
    gap: 12px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    min-height: 95vh;
    padding: 60px 16px;
    background-position: center top;
  }
  .hero-title {
    font-size: 32px;
    letter-spacing: 1.5px;
    line-height: 1.25;
    margin-top: 150px;
  }
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
    padding: 0 6px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }
  .about-content h2 {
    font-size: 28px;
    text-align: left;
  }
  .about-content p {
    font-size: 16px;
    text-align: left;
    max-width: 100% !important;
  }
}
.about-btn {
  display: block;
  margin: 15px auto 0;
}
.about-section img {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
    text-align: center;
  }
  .about-content h2 {
    font-size: 26px;
    line-height: 1.4;
  }
  .about-content p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.6;
  }
  .about-btn {
    font-size: 14px;
    padding: 6px 18px;
    margin-top: 10px;
  }
  .about-section img {
    max-width: 100%;
    margin-top: 25px;
  }
}
@media (min-width: 1200px) {
  .why-title {
    font-size: 44px;
  }
  .stat-box {
    padding: 30px 20px;
  }
}
@media (max-width: 991px) {
  .why-choose-section {
    padding: 80px 0 60px;
  }
  .why-title {
    font-size: 34px;
  }
  .stat-icon {
    font-size: 28px;
  }
  .stat-box h3 {
    font-size: 28px;
  }
  .stat-box p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .why-choose-section {
    padding: 60px 0 50px;
  }
  .why-title {
    font-size: 26px;
  }
  .stat-box {
    padding: 20px 10px;
  }
  .stat-icon {
    font-size: 24px;
  }
  .stat-box h3 {
    font-size: 24px;
  }
  .stat-box p {
    font-size: 11px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .why-title {
    font-size: 22px;
  }
  .stat-box h3 {
    font-size: 22px;
  }
  .stat-icon {
    font-size: 22px;
  }
}
