* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.trips-international-section {
  padding: 40px 0;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}

.trips-international-container {
  max-width: 1213px;
  margin: 0 auto;
  padding: 0 15px;
}

.trips-international-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.trips-international-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #333;
  border-left: 4px solid #ff5722;
  padding-left: 15px;
  margin: 0;
}

.trips-international-show-all {
  color: #ff5722;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ff5722;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  white-space: nowrap;
}

.trips-international-show-all:hover {
  background-color: #ff5722;
  color: #fff;
}

.trips-international-slider-container {
  position: relative;
  width: 100%;
  padding: 0 60px;
}

.trips-international-slider {
  overflow: hidden;
  width: 100%;
}

.trips-international-slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.trips-international-slide {
  flex-shrink: 0;
  padding: 0 10px;
  width: 100%;
}

.trips-international-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trips-international-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trips-international-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.trips-international-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.trips-international-card:hover .trips-international-img {
  transform: scale(1.1);
}

.trips-international-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trips-international-destination {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  min-height: 50px;
  line-height: 1.3;
}

.trips-international-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.trips-international-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trips-international-info-item i {
  color: #ff5722;
  width: 16px;
  flex-shrink: 0;
}

.trips-international-pricing {
  margin-bottom: 15px;
}

.trips-international-original-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.trips-international-price {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #333;
}

.trips-international-price-suffix {
  font-size: 14px;
  font-weight: 400;
}

.trips-international-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #fff8f5;
  color: #ff5722;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
  width: fit-content;
}

.trips-international-seats-badge {
  display: inline-block;
  background-color: #e8f5e9;
  color: #4caf50;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.trips-international-traveler-info {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

.trips-international-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.trips-international-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.trips-international-btn-call {
  background-color: #fff;
  color: #ff5722;
  border: 2px solid #ff5722;
}

.trips-international-btn-call:hover {
  background-color: #ff5722;
  color: #fff;
}

.trips-international-btn-view {
  background-color: #ff5722;
  color: #fff;
  border: 2px solid #ff5722;
}

.trips-international-btn-view:hover {
  background-color: #e64a19;
  border-color: #e64a19;
}

.trips-international-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  font-size: 18px;
}

.trips-international-nav-btn:hover {
  background-color: #ff5722;
  color: #fff;
  border-color: #ff5722;
}

.trips-international-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.trips-international-nav-prev {
  left: 10px;
}

.trips-international-nav-next {
  right: 10px;
}

/* Responsive breakpoints */
@media (min-width: 1200px) {
  .trips-international-slide {
    width: 33.333333%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .trips-international-slide {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .trips-international-slide {
    width: 100%;
  }

  .trips-international-slider-container {
    padding: 0 50px;
  }

  .trips-international-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .trips-international-nav-prev {
    left: 5px;
  }

  .trips-international-nav-next {
    right: 5px;
  }

  .trips-international-img-wrapper {
    height: 200px;
  }

  .trips-international-content {
    padding: 15px;
  }

  .trips-international-actions {
    flex-direction: column;
  }

  .trips-international-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .trips-international-section {
    padding: 20px 0;
  }

  .trips-international-header {
    padding: 0 10px;
  }

  .trips-international-slider-container {
    padding: 0 5px;
  }

  .trips-international-slide {
    padding: 0 5px;
  }
}



.service-vin-hero {
  color: #2d2c2c;
  text-align: center;
}

.service-vin-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-vin-container {
  padding: 80px 0;

}

.service-vin-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-vin-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-vin-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-vin-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-vin-title {
  color: #8b2e2e;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.service-vin-description {
  color: #333;
  line-height: 1.8;
  text-align: justify;
  flex-grow: 1;
}

.service-vin-btn {
  background: #f55501;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
  align-self: flex-start;
}

.service-vin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  color: white;
}

.service-vin-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.service-vin-contact-btn {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
  transition: all 0.3s ease;
}

.service-vin-contact-btn:hover {
  background: #c0392b;
  transform: scale(1.05);
}

.service-vin-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-vin-hero h1 {
    font-size: 2rem;
  }

  .service-vin-container {
    padding: 40px 0;
  }

  .service-vin-image {
    height: 200px;
  }

  .service-vin-content {
    padding: 20px;
  }

  .service-vin-title {
    font-size: 1.5rem;
  }

}




:root {
  --whyus-primary: #3498db;
  --whyus-secondary: #2c3e50;
  --whyus-accent: #e74c3c;
  --whyus-light: #f8f9fa;
  --whyus-dark: #343a40;
}

.whyus-section {

  background-repeat: no-repeat;
}

.whyus-heading {
  text-align: center;
  margin-bottom: 60px;
}

.whyus-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--whyus-secondary);
  margin-bottom: 15px;
}

.whyus-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.whyus-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background-color: white;
  padding: 30px 20px;
}

.whyus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.whyus-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(52, 152, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--whyus-primary);
  font-size: 30px;
}

.whyus-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--whyus-secondary);
  margin-bottom: 15px;
}

.whyus-card-text {
  color: #6c757d;
  line-height: 1.6;
}

.whyus-cta {
  background-color: #f55501;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whyus-cta:hover {
  background-color: var(--whyus-secondary);
  transform: translateY(-3px);
}

.whyus-contact {
  background-color: var(--whyus-secondary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whyus-contact:hover {
  background-color: var(--whyus-primary);
  transform: translateY(-3px);
}

.whyus-divider {
  width: 80px;
  height: 3px;
  background-color: #f55501;
  margin: 20px auto;
}

@media (max-width: 768px) {
  .whyus-title {
    font-size: 2rem;
  }

  .whyus-card {
    margin-bottom: 30px;
  }
}


:root {
  --int-trips-primary: #ff5722;
  --int-trips-secondary: #4CAF50;
  --int-trips-text: #333;
  --int-trips-light-bg: #f8f9fa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--int-trips-text);
  background-color: #fff;
}

.int-trips-header {
  padding: 40px 0 20px;
}

.int-trips-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  padding-left: 15px;
  border-left: 5px solid var(--int-trips-primary);
}

.int-trips-show-all {
  color: var(--int-trips-primary);
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--int-trips-primary);
  padding: 10px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.int-trips-show-all:hover {
  background-color: var(--int-trips-primary);
  color: white;
}

.int-trips-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.int-trips-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.int-trips-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.int-trips-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.int-trips-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.int-trips-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--int-trips-text);
}

.int-trips-location,
.int-trips-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.int-trips-location i,
.int-trips-duration i {
  color: var(--int-trips-primary);
  font-size: 16px;
}

.int-trips-seats-badge {
  display: inline-block;
  background-color: #e8f5e9;
  color: var(--int-trips-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

.int-trips-price-section {
  margin: 15px 0;
}

.int-trips-price-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}

.int-trips-old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 5px;
}

.int-trips-current-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--int-trips-text);
}

.int-trips-date-section {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: var(--int-trips-light-bg);
  border-radius: 8px;
  margin-bottom: 12px;
}

.int-trips-date-section i {
  color: var(--int-trips-primary);
}

.int-trips-date-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--int-trips-text);
}

.int-trips-booking-alert {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 15px;
}

.int-trips-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.int-trips-btn-call {
  flex: 0 0 auto;
  background: white;
  color: var(--int-trips-primary);
  border: 2px solid var(--int-trips-primary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.int-trips-btn-call:hover {
  background-color: var(--int-trips-primary);
  color: white;
}

.int-trips-btn-view {
  flex: 1;
  background-color: var(--int-trips-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.int-trips-btn-view:hover {
  background-color: #e64a19;
  color: white;
}

.int-trips-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--int-trips-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.int-trips-scroll-top:hover {
  background-color: #e64a19;
  transform: translateY(-5px);
}

.int-trips-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 32px;
}

.int-trips-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .int-trips-title {
    font-size: 24px;
  }

  .int-trips-card-title {
    font-size: 18px;
  }

  .int-trips-actions {
    flex-direction: column;
  }

  .int-trips-btn-call {
    flex: 1;
    justify-content: center;
  }
}


/* MAIN SECTION */
.dom-tours-section {
  padding: 40px 0;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}

.dom-tours-container {
  max-width: 1213px;
  margin: 0 auto;
  padding: 0 15px;
}

/* HEADER */
.dom-tours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.dom-tours-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #333;
  border-left: 4px solid #ff5722;
  padding-left: 15px;
  margin: 0;
}

.dom-tours-show-all {
  color: #ff5722;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ff5722;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  white-space: nowrap;
}

.dom-tours-show-all:hover {
  background-color: #ff5722;
  color: #fff;
}

/* SLIDER */
.dom-tours-slider-container {
  position: relative;
  width: 100%;
  padding: 0 60px;
}

.dom-tours-slider {
  overflow: hidden;
  width: 100%;
}

.dom-tours-slider-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.dom-tours-slide {
  flex-shrink: 0;
  padding: 0 10px;
  width: 100%;
}

/* CARD */
.dom-tours-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dom-tours-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.dom-tours-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.dom-tours-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.dom-tours-card:hover .dom-tours-img {
  transform: scale(1.1);
}

/* CONTENT */
.dom-tours-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dom-tours-destination {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  min-height: 50px;
  line-height: 1.3;
}

/* INFO */
.dom-tours-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.dom-tours-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dom-tours-info-item i {
  color: #ff5722;
  width: 16px;
  flex-shrink: 0;
}

/* PRICING */
.dom-tours-pricing {
  margin-bottom: 15px;
}

.dom-tours-price {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #333;
}

.dom-tours-price-suffix {
  font-size: 14px;
  font-weight: 400;
}

/* BADGES */
.dom-tours-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #fff8f5;
  color: #ff5722;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
  width: fit-content;
}

.dom-tours-seats-badge {
  display: inline-block;
  background-color: #e8f5e9;
  color: #4caf50;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.dom-tours-traveler-info {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}

/* BUTTONS */
.dom-tours-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.dom-tours-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.dom-tours-btn-call {
  background-color: #fff;
  color: #ff5722;
  border: 2px solid #ff5722;
}

.dom-tours-btn-call:hover {
  background-color: #ff5722;
  color: #fff;
}

.dom-tours-btn-view {
  background-color: #ff5722;
  color: #fff;
  border: 2px solid #ff5722;
}

.dom-tours-btn-view:hover {
  background-color: #e64a19;
  border-color: #e64a19;
}

/* NAV BUTTONS */
.dom-tours-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  font-size: 18px;
}

.dom-tours-nav-btn:hover {
  background-color: #ff5722;
  color: #fff;
  border-color: #ff5722;
}

.dom-tours-nav-prev {
  left: 10px;
}

.dom-tours-nav-next {
  right: 10px;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
  .dom-tours-slide {
    width: 33.333333%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .dom-tours-slide {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .dom-tours-slide {
    width: 100%;
  }

  .dom-tours-slider-container {
    padding: 0 50px;
  }

  .dom-tours-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .dom-tours-nav-prev {
    left: 5px;
  }

  .dom-tours-nav-next {
    right: 5px;
  }

  .dom-tours-img-wrapper {
    height: 200px;
  }

  .dom-tours-content {
    padding: 15px;
  }

  .dom-tours-actions {
    flex-direction: column;
  }

  .dom-tours-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .dom-tours-section {
    padding: 20px 0;
  }

  .dom-tours-header {
    padding: 0 10px;
  }

  .dom-tours-slider-container {
    padding: 0 5px;
  }

  .dom-tours-slide {
    padding: 0 5px;
  }
}


.contact-box {
  background: transparent;
  border-left: 3px solid #ffffff55;
  transition: 0.3s ease;
  padding-left: 20px !important;
  margin-bottom: 10px;
}

.contact-box i {
  margin-right: 20px !important;
  /* Increased gap */
}

.contact-box:hover {
  transform: translateX(5px);
  border-left: 3px solid #fff;
}

.best-icon{
color: #ff5722;
}



