/* Start custom CSS for html, class: .elementor-element-dcccb94 */body {overflow-x: hidden}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a853b6b */.why-carintell-section {
  background-color: #f8f8f8; 
  padding: 80px 0;
  width: 100%;
}

.inner-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.why-carintell-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #222;
}

.reasons {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 25px;
  flex-wrap: nowrap; /* original 4 in one row */
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.reason-box {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px;
}

.reason-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.reason-box .icon {
  font-size: 36px;
  color: #0099cc;
  margin-bottom: 20px;
}

.reason-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.reason-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ------------------ Responsive ------------------ */

/* Tablets */
@media (max-width: 992px) {
  .reasons {
    flex-wrap: wrap; /* wrap into multiple rows */
    gap: 20px;
    padding: 0 30px;
  }

  .reason-box {
    min-width: 45%; /* 2 boxes per row */
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reasons {
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
  }

  .reason-box {
    min-width: 100%; /* 1 box per row */
    margin-bottom: 15px;
  }

  .why-carintell-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .reason-box h3 {
    font-size: 18px;
  }

  .reason-box p {
    font-size: 14px;
  }

  .reason-box .icon {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0d0dbd0 *//* MAIN PAGE LAYOUT */
.page-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}

/* LEFT SIDE TEXT */
.left-info {
    width: 45%;
}

.left-info h1 {
    font-size: 36px;
    font-weight: 700;
    color: #025576;
    margin-bottom: 15px;
}

.left-info p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* RIGHT SIDE LIST */
.right-countries {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* COUNTRY BOX */
.country-box {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.country-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.13);
}

/* INNER CONTENT */
.country-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* FLAG IMAGE */
.flag-img {
    width: 100px;
    border-radius: 8px;
}

/* TEXT DETAILS */
.country-text h2 {
    font-size: 24px;
    color: #025576;
    margin: 0 0 6px;
}

.country-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

/* TAGS */
.tags span {
    display: inline-block;
    font-size: 13px;
    background: #eaf8ff;
    padding: 5px 12px;
    border-radius: 6px;
    margin-right: 8px;
    color: #0a84b5;
}

/* SELECT BUTTON */
.select-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #0a84b5;
    color: #fff;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: 0.25s ease;
}

.select-btn:hover {
    background: #066b90;
    color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .page-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .left-info {
        width: 100%;
    }

    .left-info h1 {
        font-size: 28px;
    }

    .left-info p {
        font-size: 16px;
    }

    .right-countries {
        width: 100%;
        gap: 20px;
    }

    .country-box {
        padding: 20px;
    }

    .country-content {
        flex-direction: row;
        gap: 15px;
    }

    .flag-img {
        width: 70px;
    }

    .country-text h2 {
        font-size: 20px;
    }

    .country-text p {
        font-size: 14px;
    }

    .tags span {
        font-size: 12px;
        padding: 4px 10px;
        margin-bottom: 6px;
        display: inline-block;
    }

    .select-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        margin-top: 12px;
    }
}/* End custom CSS */