/* --------------------- MARKETING SERVICES SECTION ------------------------- */
/* MARKETING HERO SECTION */
.marketing-hero-section {
  padding: 40px 0 20px;
}

.marketing-img {
  float: left;
  width: 32%;
  margin-right: 30px;
  margin-bottom: 15px;
}

.marketing-img img {
  border-radius: 15px;
  width: 100%;
}

.marketing-title-box {
  overflow: hidden;
}

.marketing-title-box h2 {
  margin-bottom: 6px;
}

.marketing-subtitle {
  font-size: 24px;
  margin-bottom: 6px;
}

.marketing-hero-section p {
  margin-bottom: 0;
  margin-top: 10px;
  line-height: 1.6;
}

.marketing-p1,
.marketing-p2,
.marketing-p3 {
  overflow: hidden;
}

.marketing-p4 {
  clear: left;
  display: block;
  margin-top: 24px;
}

.marketing-p5 {
  display: block;
}

@media (max-width: 1440px) {
  .marketing-subtitle {
    font-size: 22px;
  }
  .marketing-hero-section p {
    margin-top: 6px;
  }
}

@media (max-width: 1200px) {
  .marketing-subtitle {
    font-size: 20px;
  }
  .marketing-img {
    width: 34%;
    margin-right: 30px;
  }
  .marketing-hero-section p {
    margin-top: 6px;
  }
  .marketing-p3 {
    clear: left;
    display: block;
    overflow: visible;
  }
  .marketing-p4 {
    clear: none;
  }
}

@media (max-width: 991px) {
  .marketing-hero-section {
    padding: 30px 0 15px;
  }
  .marketing-subtitle {
    font-size: 18px;
    margin-bottom: 0;
  }
  .marketing-img {
    width: 36%;
    margin-right: 25px;
    margin-bottom: 12px;
  }
  .marketing-p2 {
    clear: left;
    display: block;
    overflow: visible;
  }
  .marketing-p3 {
    clear: none;
  }
}

@media (max-width: 767px) {
  .marketing-hero-section {
    padding: 25px 0 15px;
  }
  .marketing-subtitle {
    font-size: 16px;
  }
  .marketing-hero-section .container {
    display: flex;
    flex-direction: column;
  }
  .marketing-title-box {
    order: 1;
    overflow: visible;
  }
  .marketing-hero-section p {
    text-align: justify;
    text-justify: inter-word;
  }
  .marketing-p1 {
    order: 2;
    overflow: visible;
  }
  .marketing-p2 {
    order: 3;
    clear: none;
    overflow: visible;
  }
  .marketing-img {
    order: 4;
    text-align: center;
    margin: 10px auto;
    width: 100%;
    float: none;
  }
  .marketing-img img {
    width: 70% !important;
    margin: 0 auto;
    display: block;
  }
  .marketing-p3 {
    order: 5;
  }
  .marketing-p4 {
    order: 6;
  }
  .marketing-p5 {
    order: 7;
  }
}

@media (max-width: 575px) {
  .marketing-hero-section {
    padding: 10px 0 10px;
  }
  .marketing-img img {
    width: 60% !important;
  }
  .marketing-hero-section p {
    margin-top: 3px;
  }
}

/* MARKETING EXPERTISE SECTION */
.marketing-expertise-section {
  padding: 20px 15px;
}

.marketing-expertise-section h3 {
  font-family: "barlow-regular";
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.marketing-expertise-row {
  margin-top: 0px;
}

.marketing-expertise-row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

.marketing-expertise-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.marketing-expertise-card:hover {
  transform: translateY(-5px);
  border-color: #f47627;
  box-shadow: 0 10px 25px rgba(244, 118, 39, 0.08);
  background: #fffcf9;
}

.marketing-expertise-card .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fcf3ec;
  color: #f47627;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.marketing-expertise-card:hover .icon-wrap {
  background: #f47627;
  color: #fff;
}

.marketing-expertise-card h5 {
  margin: 0;
  font-family: "barlow-regular";
  font-size: 20px;
  line-height: 1.4;
}

.marketing-expertise-footer-text {
  margin-top: 16px;
  padding: 20px 20px;
  background: linear-gradient(135deg, #fdf7f3 0%, #fffbf8 100%);
  border: 1px dashed rgba(244, 118, 39, 0.25);
  border-radius: 12px;
  text-align: center;
}

.marketing-expertise-footer-text p {
  font-family: "figtree-light";
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1200px) {
  .marketing-expertise-card h5 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .marketing-expertise-section {
    padding: 15px;
  }
  .marketing-expertise-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .marketing-expertise-row {
    margin-top: 6px;
  }
  .marketing-expertise-card {
    padding: 14px 15px;
    gap: 8px;
  }
  .marketing-expertise-card h5 {
    font-size: 16px;
  }
  .marketing-expertise-card .icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .marketing-expertise-footer-text {
    padding: 15px 20px;
    margin-top: 12px;
  }
  .marketing-expertise-footer-text p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .marketing-expertise-section {
    padding: 15px;
  }
  .marketing-expertise-section h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .marketing-expertise-row {
    margin-top: 0px;
  }
  .marketing-expertise-row > [class*="col-"] {
    margin-bottom: 15px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .marketing-expertise-card {
    padding: 12px 15px;
    border-radius: 10px;
  }
  .marketing-expertise-card h5 {
    font-size: 15px;
  }
  .marketing-expertise-card .icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .marketing-expertise-footer-text {
    padding: 10px 15px;
    margin-top: 10px;
  }
  .marketing-expertise-footer-text p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .marketing-expertise-section {
    padding: 10px;
  }
  .marketing-expertise-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .marketing-expertise-card {
    padding: 10px 12px;
    border-radius: 8px;
    gap: 6px;
  }
  .marketing-expertise-card h5 {
    font-size: 13px;
  }
  .marketing-expertise-card .icon-wrap {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .marketing-expertise-footer-text {
    padding: 6px 10px;
    margin-top: 8px;
  }
  .marketing-expertise-footer-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .marketing-expertise-card {
    padding: 8px 10px;
    gap: 5px;
  }
  .marketing-expertise-card h5 {
    font-size: 12px;
  }
  .marketing-expertise-card .icon-wrap {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .marketing-expertise-footer-text p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .marketing-expertise-card {
    padding: 6px 8px;
    gap: 4px;
  }
  .marketing-expertise-card h5 {
    font-size: 11px;
  }
  .marketing-expertise-card .icon-wrap {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .marketing-expertise-footer-text p {
    font-size: 11px;
  }
}

/* MARKETING CAROUSEL SECTION */
.marketing-carousel {
  padding: 20px 0 40px;
}

.marketing-carousel-inner {
  margin: 0 -20px;
}

.marketing-slide-item {
  padding: 0 20px;
}

.marketing-card-slide h5 {
  font-family: "barlow-regular";
  font-size: 32px;
  background: linear-gradient(to right, #f47627, #fca951);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}

.marketing-card-slide li {
  font-family: "figtree-light";
  font-size: 18px;
}

.marketing-carousel-controls-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.marketing-carousel-num {
  font-size: 20px;
  font-family: "barlow-regular";
  color: #333;
}

.marketing-carousel-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.marketing-carousel-controls-wrapper .marketing-carousel-btn {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  opacity: 1;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.marketing-carousel-icon {
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #383b3e;
  color: #383b3e;
  border-radius: 100%;
  transition: all 0.3s ease;
  background: none;
}

.marketing-carousel-icon:hover {
  background: #f57c2b;
  border-color: #f67e2e;
  color: #fff;
}

@media (max-width: 1200px) {
  .marketing-card-slide h5 {
    font-size: 26px;
  }
  .marketing-card-slide li {
    font-size: 16px;
  }
  .marketing-carousel-num {
    font-size: 18px;
  }
  .marketing-carousel-icon {
    font-size: 13px;
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 991px) {
  .marketing-carousel {
    padding: 15px 20px 30px;
  }
  .marketing-carousel-inner {
    margin: 0 -15px;
  }
  .marketing-slide-item {
    padding: 0 15px;
  }
  .marketing-card-slide h5 {
    font-size: 24px;
  }
  .marketing-card-slide li {
    font-size: 15px;
  }
  .marketing-carousel-controls-wrapper {
    margin-top: 10px;
  }
  .marketing-carousel-num {
    font-size: 16px;
  }
  .marketing-carousel-icon {
    font-size: 12px;
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .marketing-carousel {
    padding: 10px 15px 25px;
  }
  .marketing-carousel-inner {
    margin: 0 -10px;
  }
  .marketing-slide-item {
    padding: 0 10px;
  }
  .marketing-card-slide h5 {
    font-size: 22px;
  }
  .marketing-card-slide li {
    font-size: 14px;
  }
  .marketing-carousel-controls-wrapper {
    margin-top: 8px;
  }
  .marketing-carousel-num {
    font-size: 15px;
  }
  .marketing-carousel-icon {
    font-size: 11px;
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 575px) {
  .marketing-carousel {
    padding: 10px 20px 20px;
  }
  .marketing-card-slide h5 {
    font-size: 20px;
  }
  .marketing-card-slide li {
    font-size: 13px;
  }
  .marketing-carousel-controls-wrapper {
    margin-top: 6px;
  }
  .marketing-carousel-num {
    font-size: 14px;
  }
  .marketing-carousel-icon {
    font-size: 10px;
    width: 20px;
    height: 20px;
  }
}