@font-face {
  font-family: 'ArialRounded';
  src: url('../fonts/arialroundedmtbold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BorisBlackBloxx';
  src: url('../fonts/BorisBlackBloxx.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'ArialRounded', sans-serif;
  /* background-color: #f5f5f5; */
  padding: 0px;
}

.hero-container {
  margin: 0 auto;
  /* background: linear-gradient(135deg, #d2691e 0%, #8b4513 50%, #654321 100%); */
  border-radius: 0px 0px 50px 50px;
  overflow: hidden;
  position: relative;
}

.gradient-text {
  font-family: 'BorisBlackBloxx', sans-serif;


}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 400px;
}

.hero-content video {
  margin: auto;
  align-items: center;
  border-radius: 0px 0px 50px 50px;
}

.hero-character {
  flex: 0 0 300px;
  /* position: relative; */
  z-index: 2;
}

.hero-character img {
  width: 400px;
  position: absolute;
  top: 27px;
  left: 5px;
}

.character {
  width: 280px;
  height: 350px;
  position: relative;
  margin: 0 auto;
}

.character-body {
  width: 200px;
  height: 280px;
  background: linear-gradient(90deg, #F48420, #FF5800);
  border-radius: 20px 20px 40px 40px;
  position: absolute;
  top: 60px;
  left: 40px;
  z-index: 3;
}


.mouth {
  width: 20px;
  height: 10px;
  border: 2px solid #2c2c2c;
  border-top: none;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
}


.arm.left {
  left: -30px;
  transform: rotate(-20deg);
}

.arm.right {
  right: -30px;
  transform: rotate(20deg);
}

.procom-text {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
}

.procom-left {
  top: 50px;
  left: -45px;
  transform: rotate(-20deg);
}

.procom-right {
  top: 50px;
  right: -45px;
  transform: rotate(20deg);
}

.chest-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  color: #F48420;
}

.icon {
  width: 30px;
  height: 30px;
  border: 2px solid #F48420;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-text {
  flex: 1;
  padding-left: 120px;
  color: #fff;
}

.welcome-text {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.procom-title {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 105px;
  font-weight: 500;
  background: linear-gradient(90deg, #F48420, #FF5800);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  margin-bottom: 20px;
  line-height: 0.9;
}

.service {
  padding: 10px;
}


.services-text {
  font-family: 'ArialRounded', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 40px;
  color: #fff;
}

.cta-button {
  background: linear-gradient(90deg, #F48420, #FF5800);
  color: #fff;
  padding: 12px 42px;
  border: none;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  background-color: #F48420;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}




/* start the the grid css */


.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 50px 0px;
}

/* Card Styles */
.card {
  background: linear-gradient(50deg, #a84b1e, #333);
  color: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 260px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Icon */
.card-icon {
  margin-bottom: 1rem;
}

.card-icon img {
  width: 150px;
  height: 150px;
}

/* Text */
.card h3 {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s;
  background: linear-gradient(90deg, #F48420, #FF5800);
  color: white;
}

.btn:hover {
  background: linear-gradient(90deg, #000, #111);
  color: #FF5800;
}

.orange {
  font-family: 'BorisBlackBloxx', sans-serif;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



/* end the csss grid  */



/* start css 3 section */


/* Titles */
.title {
  font-family: 'BorisBlackBloxx', sans-serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.2rem;
  font-weight: 900;
}



.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.service-card {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  /* justify-content: end; */
  align-items: center;
  height: 360px;
}

.service-card img {
  width: 50px;
}

.service-card h3 {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 20px;
  text-align: start;
}

.service-card p {
  font-size: 15px;
  color: #444;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.text-center {
  text-align: start;
  width: 55%;
}

.grid-width {
  width: 588px !important;
}

.service-card a {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Active Highlight Card */
.service-card.active {
  background-color: #333;
  color: #fff;
}

.service-card:hover {
  background-color: #333;
  color: #fff;
}

.service-card:hover p,
.service-card:hover a {
  color: #fff;
}

.service-card.active p,
.service-card.active a {
  color: #fff;
}

/* Hero Card */
.hero-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.hero-card .bold {
  font-family: 'BorisBlackBloxx', sans-serif;
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 50px;

}

.hero-card .hero-img {
  width: 100px;
  margin-top: 1rem;
}

.hero-img-last {
  width: 270px !important;
  position: absolute;
  right: 10px;
  bottom: -208px;


}

.size-img {
  width: 100px !important;
}

.background-image-color {
  background-color: #FAF8F5;
  width: 85px;
  height: 152px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.link-down {
  height: 100px;
  display: flex;
  justify-content: end;
  align-items: end;
}

.link-down2 {
  height: 120px;
  display: flex;
  justify-content: end;
  align-items: end;
}

.link-down2 span {
  margin-left: 6px;
}

.link-down span {
  margin-left: 6px;
}

.height-set {
  width: 80px;
  height: 107px;
}

/* Section Background */
.credibility-section {

  background: linear-gradient(90deg, #F48420, #333);
  color: #fff;
  padding: 3rem 1rem;
  margin-top: 100px;

}

.credibility-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Text */
.cred-text {
  flex: 1 1 300px;
}

.cred-text h2 {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #000
}

.cred-text .orange {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cred-text .bold {
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  font-family: 'BorisBlackBloxx', sans-serif;
}

.cred-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
}

/* Hero Image */
.cred-hero {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  position: relative;
}

.cred-hero img {
  width: 329px;
  max-width: 100%;
  position: absolute;
  top: -251px;
  left: -24px;
}

/* Stats */
.cred-stats {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  width: 140px;
  text-align: center;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card img {
  width: 40px;
  margin-bottom: 0.8rem;
}

.stat-card h3 {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.stat-card p {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.3;
}

a {
  text-decoration: none;
}

/* Unify Section */
.unify-section {
  padding: 60px 0px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /* max-width: 1200px; */
  margin: auto;
  gap: 40px;
}

/* Image Area */
.unify-image {
  flex: 1 1 450px;
  text-align: center;
}

.unify-image img {
  max-width: 100%;
  height: auto;
}

/* Content Area */
.unify-content {
  flex: 1 1 500px;
}

.unify-content h2 {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 2.9rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.3;
  letter-spacing: 2px;
}

.unify-content .orange {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unify-content p {
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
  line-height: 24px;

}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 120px;
}

.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.feature-item span {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #F48420, #FF5800);
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #000;
  color: #fff;
}




.promotions h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.orange {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.black {
  font-family: 'BorisBlackBloxx', sans-serif;
  color: #000;
  font-weight: bold;
}

.promo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.promo-card {
  background: #fff;
  border-radius: 20px;
  border: 3px solid #ddd;
  width: 260px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.promo-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.promo-text {
  padding: 15px;
  text-align: center;
}

.promo-text h3 {
  font-size: 1.2rem;
  color: #000;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.promo-text h3 span {
  font-size: 1rem;
  font-weight: 500;
  color: #F48420;
}

.price-tag {
  background: #000;
  color: #F48420;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 8px 0;
  margin: 10px auto;
  width: 90%;
  border-radius: 5px;
}

.price-tag .small {
  font-size: 0.9rem;
  color: #fff;
}

.free-tag {
  font-size: 1.6rem;
  color: #000;
  margin: 10px 0;
}

.free-tag strong {
  font-size: 2.2rem;
  color: #F48420;
  text-shadow: 2px 2px #000;
}

.note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 8px;
}

.promo-footer {
  padding: 10px 15px 15px;
  text-align: center;
}

.footer-links a {
  display: block;
  font-size: 0.8rem;
  color: #F48420;
  margin-bottom: 5px;
  text-decoration: none;
}

/* .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #F48420, #FF5800);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  transition: 0.3s ease;
} */

/* .btn:hover {
  background: #000;
  color: #fff;
} */




/* section 5 start css */



.container-section5 {
  max-width: 1200px;
  margin: 0 auto;
}

.products-wrapper-section5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 75px 0px
}

.title-wrapper-section5 {
  padding-right: 40px;
}

.main-title-section5 {
  font-size: 122px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 0;
}

.title-best-section5 {
  font-family: 'BorisBlackBloxx', sans-serif;
  color: #2c2c2c;
  display: block;
}

.title-selling-section5 {
  font-family: 'BorisBlackBloxx', sans-serif;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.title-products-section5 {
  font-family: 'BorisBlackBloxx', sans-serif;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.cards-wrapper-section5 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-item-section5 {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.product-item-section5:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-item-section5.copier-card-section5:hover {
  background-color: #1a1a1a;
  color: #F48420;
}

.product-item-section5.copier-card-section5:hover .card-description-section5,
.product-item-section5.copier-card-section5:hover .card-action-section5 a {
  color: #F48420;
}

.product-item-section5.voip-card-section5 {
  background-color: #1a1a1a;
  color: #fff;
  border-left-color: #F48420;
}

.product-item-section5.copier-card-section5 {
  border-left-color: #F48420;
}

.product-item-section5.cctv-card-section5 {
  border-left-color: #F48420;
}

.card-content-section5 {
  flex: 1;
}

.card-title-section5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: inherit;
}

.product-item-section5.voip-card-section5 .card-title-section5 {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-item-section5.copier-card-section5 .card-title-section5 {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-item-section5.cctv-card-section5 .card-title-section5 {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-description-section5 {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  width: 272px;
}

.product-item-section5.voip-card-section5 .card-description-section5 {
  color: #ccc;
}

.card-action-section5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card-icon-section5 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}



.read-more-section5 {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.read-more-section5:hover {
  color: #F48420;
}

.read-more-section5::after {
  content: '→';
  font-size: 16px;
}

/* end section 5 end css   */


/* scroll section start */
.testimonials-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  text-align: center;
  padding: 0px 10px 100px 10px;
}

.section-title {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #000;
}

.section-title .highlight {
  font-family: 'BorisBlackBloxx', sans-serif;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 50px;
  letter-spacing: 1.5px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 28px 0px;
}

.testimonial-card {
  min-width: 300px;
  width: 300px;
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
  display: flex;
  margin-bottom: 20px;
  gap: 3px;
}

.star {
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
}

.testimonial-text {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.client-details h4 {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.client-details p {
  color: #999;
  font-size: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #F48420;
  transform: scale(1.2);
}

.dot:hover {
  background: #F48420;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2c3e50;
  z-index: 10;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #F48420;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}



.text-color {
  color: white;
  font-family: 'BorisBlackBloxx', sans-serif;
  letter-spacing: 2px;
}


/* scroll section end */


/* Responsive */
@media (max-width: 768px) {
  .promo-card {
    width: 100%;
    max-width: 360px;
  }
}





/* Responsive */
@media (max-width: 900px) {
  .credibility-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cred-stats {
    justify-content: center;
  }

}




/* end start  section 5 */


/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    padding: 40px 60px;
  }

  .hero-character {
    flex: 0 0 250px;
  }

  .character {
    width: 230px;
    height: 300px;
  }

  .procom-title {
    font-size: 52px;
  }

  .welcome-text {
    font-size: 30px;
  }

  .hero-text {
    padding-left: 165px;
  }

  .grid-width {
    width: 205% !important;
  }

  .cred-hero img {
    width: 329px;
    max-width: 100%;
    position: unset;
  }


  .main-title-section5 {
    font-size: 72px;
  }

  .products-wrapper-section5 {
    gap: 40px;
  }

  .title-wrapper-section5 {
    padding-right: 20px;
  }

}




@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    /* text-align: center; */
    padding: 40px 30px;
  }

  .hero-character {
    flex: none;
    margin-bottom: 30px;
  }

  .hero-text {
    padding-left: 270px;
  }

  .procom-title {
    font-size: 48px;
  }

  .welcome-text {
    font-size: 20px;
  }

  .services-text {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-character img {
    width: 300px;
    position: absolute;
    top: 27px;
    left: 5px;
  }

  .hero-container {
    height: 320px;
  }

  /* start reposive css grid */
  .card-grid {
    /* flex-direction: column; */
    align-items: center;
  }

  /* end reposive css grid */
  .grid-width {
    width: 205% !important;

  }

  .hero-img-last {
    width: 278px !important;
  }

  .container {
    flex-direction: column;
    padding: 15px;
  }

  .unify-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .unify-content {
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .products-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .title-section {
    padding-right: 0;
    order: 1;
  }

  .cards-section {
    order: 2;
  }

  .products-wrapper-section5 {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .title-wrapper-section5 {
    padding-right: 0;
    order: 1;
  }

  .cards-wrapper-section5 {
    order: 2;
  }

  .main-title-section5 {
    font-size: 56px;
    text-align: left;
  }

  .product-item-section5 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }

  .card-action-section5 {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .card-content-section5 {
    margin-bottom: 10px;
  }

  .services {
    padding: 15px;
  }

  .cred-text {
    flex: 1 1 100px;
  }

  .container-section5 {
    padding: 15px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  body {
    padding: 15px 10px;
  }

  .main-title-section5 {
    font-size: 42px;
  }

  .product-item-section5 {
    padding: 25px 15px;
  }

  .card-title-section5 {
    font-size: 18px;
  }

  .card-description-section5 {
    font-size: 13px;
  }

  .card-icon-section5 {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .read-more-section5 {
    font-size: 13px;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    min-width: 280px;
    width: 280px;
  }

  .nav-button {
    display: none;
  }
}



@media (max-width: 480px) {
  body {
    padding: 0px;
  }

  .hero-container {
    height: 100px;
  }


  .hero-content {
    flex-direction: column;
    text-align: center;
    /* padding: 40px 30px; */
    height: 0px;
  }

  .hero-content video {
    width: 373px;
    /* height: 132px; */
    margin: 0px;
    margin-top: -40px;
    align-items: center;
    border-radius: 0px 0px 50px 50px;
  }

  .hero-text {
    padding-left: 0px;
  }

  .character {
    width: 200px;
    height: 250px;
  }

  .character-body {
    width: 160px;
    height: 220px;
    left: 20px;
  }

  .character-head {
    width: 100px;
    height: 120px;
    left: 50px;
  }

  .procom-title {
    font-size: 46px;
  }

  .welcome-text {
    font-size: 18px;
  }

  .arm {
    width: 50px;
    height: 100px;
  }

  .hero-character img {
    width: 200px;
    position: absolute;
    top: 338px;
    left: 24%;
  }

  /* responsive 3 section */
  .title {
    font-size: 1.5rem;
  }

  .hero-card .hero-img {
    width: 80px;
  }

  .service-card {

    text-align: center;
  }

  .grid-width {
    width: 100% !important;
  }

  .service-card h3 {
    text-align: center;

  }

  .text-center {
    text-align: center;
    width: 90%;
  }

  .hero-card {
    align-items: center;
    height: 785px;
  }

  .hero-img-last {
    right: 0px;
    bottom: -264px;
  }

  .cred-hero img {
    width: 329px;
    max-width: 100%;
    position: unset;
    height: 500px;
  }

  .title {
    font-size: 42px;
  }

  .product-card {
    padding: 25px 15px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }

  /* .card-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  } */

  .read-more {
    font-size: 13px;
  }

  .card-icon img {
    width: 100px;
    height: 100px;
  }

  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(50deg, #a84b1e, #333);
    color: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 260px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .services {
    padding: 20px;
  }

  .service-card img {
    width: 100% !important;
  }

  .cred-text {
    flex: 1 1 0px;
  }

  .promotions {
    padding: 15px
  }

  .container-section5 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px;
  }

  .testimonials-section {
    padding: 60px 5px;
  }
}