/* home about us start here  */

.premium-section {
  background: #f9fafc;
}

/* Badge */
.badge-pill {
  display: inline-block;
  background: #eef2f7;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* Heading */
.main-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.main-heading span {
  color: #ff5a2c;
}

/* Description */
.description {
  color: #555;
  margin-top: 15px;
  font-size: 15px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.feature-box {
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 32px;
  color: #ff5a2c;
  margin-bottom: 8px;
}

.stat-card p {
  color: #666;
  font-size: 14px;
}


/* Responsive */
@media (max-width: 991px) {
  .main-heading {
    font-size: 23px;
  }

  .stats-grid {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* home about us end here  */

/* ///////  WHY CHOOSE USE START HERE HOME PAGE  */
.why-choose {
  background: #f8f9fc;
}

/* Heading */
.section-title {
  font-size: 36px;
  font-weight: 700;
}

.section-title span {
  color: #ff5a2c;
}

.badge-pill {
  display: inline-block;
  background: #eef1f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

/* LEFT CARD */
.main-card {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-card h3 {
  font-size: 26px;
  margin: 20px 0;
}

.main-card p {
  font-size: 14px;
  opacity: 0.9;
}

.main-card .highlight {
  font-weight: 600;
}

/* Icon */
.icon-box {
  background: rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 10px;
  display: inline-block;
  font-size: 20px;
}

/* Stats */
.stats {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.stat {
  flex: 1;
  background: rgba(255,255,255,0.2);
  padding: 15px;
  border-radius: 12px;
}

.stat h4 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.stat span {
  font-size: 13px;
}

/* RIGHT CARDS */
.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card .icon {
  background: #f1f3f7;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.info-card h5 {
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }

  .main-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .stats {
    flex-direction: column;
  }
}

/* ///////  WHY CHOOSE USE END HERE HOME PAGE  */

/* /////  OUR APPROACH START HERE  ///////////////////// */

.approach-section {
  background: #ffffff;
}

/* Heading */
.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-title span {
  color: #ff5a2c;
}

/* Badge */
.badge-pill {
  display: inline-block;
  background: #eef1f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Cards */
.approach-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.approach-card:hover {
  transform: translateY(-6px);
}

/* Step Number */
.step {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #eef1f6;
}

/* Title */
.approach-card h5 {
  margin-top: 40px;
  font-weight: 600;
}

/* Text */
.approach-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .approach-card {
    padding: 20px;
  }

  .step {
    font-size: 32px;
  }
}
/* /////  OUR APPROACH END HERE  ///////////////////// */

/* ///////// TOGGLE SECTION START HERE ///////////////// */

.work-section {
  background: #f8f9fc;
}

/* Heading */
.section-title {
  font-size: 34px;
  font-weight: 700;
}
.section-title span {
  color: #ff5a2c;
}

/* Badge */
.badge-pill {
  background: #eef1f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Toggle */
.toggle-buttons {
  display: inline-flex;
  background: #f1f3f7;
  padding: 5px;
  border-radius: 30px;
}

.toggle-btn {
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.toggle-btn.active {
  background: #ff3b2f;
  color: #fff;
}

/* Tabs */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

/* Cards */
.logo-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-size: 14px;
  transition: 0.3s;
}

.logo-card:hover {
  transform: translateY(-5px);
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 25px;
  border-radius: 16px;
  font-size: 18px;
}

.cta-box span {
  color: #ff5a2c;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 26px;
  }
}
/* ///////// TOGGLE SECTION END HERE ///////////////// */

/* ///////// BRAND VERTICALS START HERE ///////////////// */

.brand-verticals {
  background: #ffffff;
}

.badge-pill--outline {
  background: #fff;
  border: 1px solid #e8ecf2;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  font-weight: 500;
  color: #3c4049;
}

.badge-pill--outline i {
  color: #ff3b2f;
  margin-right: 4px;
}

.brand-verticals .section-title span {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brand-verticals__subtitle {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}

.brand-verticals__grid {
  margin-top: 2.5rem;
}

.vertical-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 28px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.vertical-card:hover,
.vertical-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.vertical-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.vertical-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.vertical-card__icon--fashion {
  background: #fce7f3;
  color: #e11d48;
}

.vertical-card__icon--beauty {
  background: #ede9fe;
  color: #7c3aed;
}

.vertical-card__icon--kids {
  background: #ffedd5;
  color: #ea580c;
}

.vertical-card__icon--pet {
  background: #ccfbf1;
  color: #0d9488;
}

.vertical-card__icon--luxury {
  background: #1e293b;
  color: #fbbf24;
}

.vertical-card__title {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #112344;
  margin: 0 0 8px;
  line-height: 1.3;
}

.vertical-card__desc {
  flex: 1;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

.vertical-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ff3b2f;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}

.vertical-card__cta i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.vertical-card__cta:hover,
.vertical-card__cta:focus-visible {
  color: #e03520;
  gap: 10px;
}

.vertical-card__cta:hover i,
.vertical-card__cta:focus-visible i {
  transform: translateX(4px);
}

.vertical-card__cta:focus-visible {
  outline: 2px solid #ff5a2c;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1199px) {
  .brand-verticals__grid {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .brand-verticals .section-title {
    font-size: 28px;
  }

  .brand-verticals__subtitle {
    font-size: 14px;
    padding: 0 8px;
  }

  .vertical-card {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 575px) {
  .brand-verticals .section-title {
    font-size: 24px;
  }

  .brand-verticals__grid {
    margin-top: 2rem;
  }

  .vertical-card {
    border-radius: 20px;
  }

  .vertical-card__title {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vertical-card,
  .vertical-card__cta,
  .vertical-card__cta i {
    transition: none;
  }

  .vertical-card:hover,
  .vertical-card:focus-within {
    transform: none;
  }
}

/* ///////// BRAND VERTICALS END HERE ///////////////// */

/* /////////////  F & Q START HERE .////////////// */

.faq-section {
  background: #ffffff;
}

/* Heading */
.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-title span {
  color: #ff5a2c;
}

/* Badge */
.badge-pill {
  background: #eef1f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: auto;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.faq-question .icon {
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  display: none;
  padding: 0 20px 15px;
  font-size: 14px;
  color: #666;
}

/* Active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* Hover */
.faq-item:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
  }
}


/* /////////////  F & Q END HERE .////////////// */

/* /////////////  GET STARTED SECTION //////////////// */

.get-started {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0b0f1a 0%, #0f172a 45%, #1a1030 100%);
}

.get-started__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% 40%, rgba(59, 130, 246, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 70%, rgba(168, 85, 247, 0.14), transparent 55%),
    radial-gradient(circle at 50% 0%, rgba(255, 59, 47, 0.08), transparent 40%);
}

.get-started__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000 0%, transparent 95%);
}

.get-started .container {
  z-index: 1;
}

.badge-pill--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-weight: 500;
}

.badge-pill--dark i {
  color: #ff5a2c;
  margin-right: 6px;
}

.get-started__header {
  margin-bottom: 3rem;
}

.get-started__title {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.get-started__title span {
  background: linear-gradient(135deg, #ff3b2f, #ff8a4c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.get-started__subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #94a3b8;
  line-height: 1.6;
}

.get-started__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  will-change: transform;
}

.get-started__card:hover,
.get-started__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 44, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.get-started__card--static {
  cursor: default;
}

.get-started__card--static:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.get-started__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.get-started__card-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: capitalize;
}

.get-started__card-value {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
  word-break: break-word;
}

.get-started__steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.get-started__step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.get-started__step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.6);
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  font-family: var(--heading-font, "Montserrat", sans-serif);
}

.get-started__step-text {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  color: #f8fafc;
  line-height: 1.45;
}

.get-started__form-wrap {
  height: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.4s ease;
}

.get-started__form-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(255, 90, 44, 0.08);
}

.get-started__form-title {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.get-started__form-title span {
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.get-started__form-desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.get-started__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.get-started__input::placeholder {
  color: #94a3b8;
}

.get-started__input:hover {
  background: #e8eef4;
}

.get-started__input:focus {
  outline: none;
  background: #fff;
  border-color: #ff5a2c;
  box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.15);
}

.get-started__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%2394a3b8' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.get-started__select:invalid {
  color: #94a3b8;
}

.get-started__textarea {
  resize: vertical;
  min-height: 120px;
}

.get-started__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff3b2f, #ff5a2c);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    filter 0.3s ease;
  will-change: transform;
}

.get-started__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 59, 47, 0.35);
  filter: brightness(1.05);
}

.get-started__submit:focus-visible {
  outline: 2px solid #ff5a2c;
  outline-offset: 3px;
}

.get-started__submit:active {
  transform: translateY(0);
}

.get-started .php-email-form .loading,
.get-started .php-email-form .error-message,
.get-started .php-email-form .sent-message {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .get-started {
    padding: 60px 0;
  }

  .get-started__header {
    margin-bottom: 2rem;
  }

  .get-started__form-wrap {
    margin-top: 0.5rem;
  }
}

@media (max-width: 575px) {
  .get-started {
    padding: 48px 0;
  }

  .get-started__steps {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .get-started__step-num {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .get-started__card,
  .get-started__form-wrap,
  .get-started__submit {
    transition: none;
  }

  .get-started__card:hover,
  .get-started__card:focus-visible,
  .get-started__submit:hover {
    transform: none;
  }
}

/* /////////////  GET STARTED SECTION END //////////////// */

/* //////////  FOOTER CSS START HRE  */

/* Footer Background */
.custom-footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding-top: 60px;
}

/* Logo */
.footer-brand .logo {
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: #ff3b2f;
}

/* Text */
.footer-brand p {
  font-size: 14px;
  margin-top: 10px;
}

/* Social */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff3b2f;
}

/* Headings */
.custom-footer h5 {
  color: #fff;
  margin-bottom: 15px;
}

/* Links */
.custom-footer ul {
  list-style: none;
  padding: 0;
}

.custom-footer ul li {
  margin-bottom: 8px;
}

.custom-footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.custom-footer ul li a:hover {
  color: #ff3b2f;
}

/* Contact */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-item i {
  margin-right: 10px;
  color: #ff3b2f;
}

/* Newsletter */
.newsletter label {
  font-size: 13px;
}

.input-group {
  display: flex;
  margin-top: 8px;
}

.input-group input {
  flex: 1;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  border: none;
}

.input-group button {
  background: #ff3b2f;
  border: none;
  padding: 10px 15px;
  color: #fff;
  border-radius: 0 8px 8px 0;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  font-size: 14px;
}

.footer-bottom .links a {
  margin-left: 15px;
  color: #cbd5e1;
  text-decoration: none;
}

.footer-bottom .links a:hover {
  color: #ff3b2f;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .links {
    margin-top: 10px;
  }
}
/* //////////  FOOTER CSS END HRE  */