/**
 * Tabs with Cards Styles
 * Interactive tabs with cards - generic component for any content organization
 */

/* Main Section Styles */
.tabs-with-cards-section {
  position: relative;
  overflow: hidden;
}
.tabs-with-cards-section .tabs-card-title {
    color: var(--taevas-blue);
    font-size: 18px;
}
.tabs-with-cards-section .tabs-card-separator {
  width: 100%;
  height: 1px;
  background-color: var(--taevas-blue);
  margin: 5px 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.tabs-with-cards-section .tabs-card-description {
  color: #000;
  font-size: 0.8rem;
}
.tabs-with-cards-section .tabs-card-item:hover .tabs-card-separator {
  opacity: 0.6;
}
.tabs-card-description ul li {
    text-align: left;
}
/* Card Icon - Specific to tabs-with-cards */
.tabs-with-cards-section .tabs-card-icon {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 10px;
}

/* Header Section */
/* Header Section - Side by Side Layout */
.tabs-with-cards-header {
  margin-bottom: 30px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.header-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.header-title-section {
  flex: 0 0 auto;
  min-width: 300px;
}

.header-description-section {
  flex: 1;
  padding-top: 8px;
}

.tabs-with-cards-title {
  font-size: 2rem;
  margin: 0;
}

.tabs-with-cards-description {
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Archivo';
    margin: 0;
    color: #000;
}

/* Tabs Container */
.tabs-with-cards-tabs {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Tab Navigation */
.tab-navigation {
  margin-bottom: 10px;
  position: relative;
}

.tab-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.tab-nav-item {
  flex: 1;
  min-width: 150px;
}

.tab-nav-link {
  display: block;
  width: 100%;
  padding: 5px 10px;
  background: #FFF;
  border: 0;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Archivo';
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 0;
  text-transform: capitalize;
}

.tab-nav-link:hover {
  color: var(--taevas-blue);
  background: rgba(85, 25, 230, 0.05);
  border-color: rgba(85, 25, 230, 0.2);
}

.tab-nav-link.active {
  color: #ffffff;
  background-color: var(--taevas-blue);
  font-weight: 600;
}

/* Tab Content */
.tab-content {
  position: relative;
}

.tab-pane {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.tab-pane:not(.active) {
  display: none !important;
}

.tab-pane.active {
  display: block !important;
}

/* Test Cards Grid */
.tabs-with-cards-section .tabs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

/* Individual Test Card */
.tabs-with-cards-section .tabs-card-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(85, 25, 230, 0.1);
  overflow: hidden;
  text-align: center;
}

.tabs-with-cards-section .tabs-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(85, 25, 230, 0.15);
  border-color: rgba(85, 25, 230, 0.2);
}

.tabs-with-cards-section .tabs-card-item:hover::before {
  transform: scaleX(1);
}

/* Test Card Icon */
.tabs-with-cards-section .tabs-card-item-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--taevas-blue) 0%, var(--taevas-purple) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tabs-with-cards-section .tabs-card-item-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--taevas-blue) 0%, var(--taevas-purple) 100%);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-with-cards-section .tabs-card-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-with-cards-section .tabs-card-item-icon::before {
  opacity: 0.3;
}

/* Card Icon Image */
.tabs-with-cards-section .tabs-card-icon-image {
  object-fit: contain;
  transition: all 0.3s ease;
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-with-cards-section .tabs-card-icon-image {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Card Icon Placeholder (when no image) */
.tabs-with-cards-section .tabs-card-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-with-cards-section .tabs-card-icon-placeholder i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-with-cards-section .tabs-card-icon-placeholder i {
  transform: scale(1.1);
  opacity: 1;
}

/* Test Card Content */
.tabs-with-cards-section .tabs-card-item-content {
  flex: 1;
}

.tabs-with-cards-section .tabs-card-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-with-cards-section .tabs-card-item-title {
  color: var(--taevas-blue);
}

.tabs-with-cards-section .tabs-card-item-description {
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: 'Archivo';
  margin: 0;
  transition: color 0.3s ease;
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-with-cards-section .tabs-card-item-description {
  color: #475569;
}

/* Empty States */
.no-cards-message,
.no-tabs-message {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
}

.no-cards-message p,
.no-tabs-message p {
  margin: 0;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tabs-with-cards-section {
    padding: 60px 0;
  }
  
  .tabs-with-cards-header {
    margin-bottom: 20px;
  }
  
  .tabs-with-cards-title {
    font-size: 2.3rem;
  }
  
  .tabs-with-cards-section .tabs-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .tabs-with-cards-tabs {
    padding: 0;
  }
  .tabs-with-cards-section {
    padding: 10px 0;
  }
  
  .tabs-with-cards-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .tabs-with-cards-description {
    text-align: center;
    font-size: 0.8rem;
  }
  
  .tabs-with-cards-header {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .tab-nav-list {
    flex-direction: row;
    gap: 5px;
    justify-content: center;
  }
  
  .tab-nav-item {
    min-width: auto;
    flex: none;
  }
  
  .tab-nav-link {
    padding: 5px 15px;
    border-radius: 15px;
    margin-bottom: 0;
    width: auto;
  }
  
  .tab-nav-link.active {
    transform: none;
  }
  
  .tab-navigation {
    border-bottom: none;
    margin-bottom: 10px;
  }
  
  .tabs-with-cards-section .tabs-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .tabs-with-cards-section .tabs-card-item {
    padding: 25px;
  }
  
  .tabs-with-cards-section .tabs-card-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  
  .tabs-with-cards-section .tabs-card-icon-image {
    width: 35px;
    height: 35px;
  }
  
  .tabs-with-cards-section .tabs-card-icon-placeholder i {
    font-size: 1.8rem;
  }
  
  .tabs-with-cards-section .tabs-card-item-title {
    font-size: 1.2rem;
  }
  
  .tabs-with-cards-section .tabs-card-item-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .tabs-with-cards-title {
    font-size: 1.8rem;
  }
  
  .tabs-with-cards-description {
    font-size: 0.95rem;
  }
  
  .tabs-with-cards-section .tabs-card-item {
    padding: 20px;
  }
  
  .tabs-with-cards-section .tabs-card-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .tabs-with-cards-section .tabs-card-icon-image {
    width: 30px;
    height: 30px;
  }
  
  .tabs-with-cards-section .tabs-card-icon-placeholder i {
    font-size: 1.5rem;
  }
  
  .tabs-with-cards-section .tabs-card-item-title {
    font-size: 1.1rem;
  }
}

/* Animation for tab switching */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane.active .tabs-with-cards-section .tabs-card-item {
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}

.tab-pane.active .tabs-with-cards-section .tabs-card-item:nth-child(1) { animation-delay: 0.1s; }
.tab-pane.active .tabs-with-cards-section .tabs-card-item:nth-child(2) { animation-delay: 0.2s; }
.tab-pane.active .tabs-with-cards-section .tabs-card-item:nth-child(3) { animation-delay: 0.3s; }
.tab-pane.active .tabs-with-cards-section .tabs-card-item:nth-child(4) { animation-delay: 0.4s; }
.tab-pane.active .tabs-with-cards-section .tabs-card-item:nth-child(5) { animation-delay: 0.5s; }
.tab-pane.active .tabs-with-cards-section .tabs-card-item:nth-child(6) { animation-delay: 0.6s; }

/* Updated Card Icon Styles */
.tabs-with-cards-section .tabs-card-item:hover .tabs-card-icon-image {
  transform: scale(1.1);
}

.tabs-with-cards-section .tabs-card-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-with-cards-section .tabs-card-icon-placeholder i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.tabs-with-cards-section .tabs-card-item:hover .tabs-card-icon-placeholder i {
  transform: scale(1.1);
  opacity: 1;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .header-title-section {
    min-width: auto;
  }
  
  .header-description-section {
    padding-top: 0;
  }
  
  .tabs-with-cards-title {
    font-size: 1.5rem;
  }
  
  .tabs-with-cards-section .tabs-card-icon-image {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .tabs-with-cards-title {
    font-size: 1.2rem;
  }
  
  .tabs-with-cards-section .tabs-card-icon-image {
    width: 30px;
    height: 30px;
  }
}

/* Focus states for accessibility */
.tab-nav-link:focus {
  outline: 3px solid rgba(85, 25, 230, 0.3);
  outline-offset: 2px;
}

.tabs-with-cards-section .tabs-card-item:focus {
  outline: 3px solid rgba(85, 25, 230, 0.3);
  outline-offset: 2px;
}

/* ================================== */
/* STYLE 2: Card Item Display Styles */
/* ================================== */

.tabs-with-cards-style-2 {
  background: #f7f7f7;
  border-radius: 32px;
  padding: 32px 0;
}

.tabs-cards-grid-style-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}

.tabs-card-item-style-2 {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 420px;
  min-height: 320px;
  transition: box-shadow 0.2s;
}

.tabs-card-item-style-2:hover {
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}

.tabs-card-image-style-2 {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaeaea;
}

.tabs-card-img-style-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.tabs-card-content-style-2 {
  padding: 24px 28px 18px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tabs-card-title-style-2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #4f2ecb;
  margin-bottom: 12px;
}

.tabs-card-description-style-2 {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0;
}

/* Style 2 Responsive Design */
@media (max-width: 991px) {
  .tabs-cards-grid-style-2 {
    gap: 20px;
  }
  
  .tabs-card-item-style-2 {
    width: 100%;
    min-height: 220px;
  }
  
  .tabs-card-image-style-2 {
    height: 140px;
  }
}

@media (max-width: 767px) {
  .tabs-with-cards-style-2 {
    padding: 16px 0;
    border-radius: 16px;
  }
  
  .tabs-card-content-style-2 {
    padding: 16px 12px 12px 12px;
  }
}

/* ================================== */
/* STYLE 2: Custom HTML Content */
/* ================================== */

.tabs-style2-content {
  padding: 20px 0;
  width: 100%;
}

.tabs-style2-content .container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.tabs-style2-content .row {
  margin-left: -12px;
  margin-right: -12px;
}

.tabs-style2-content .col-md-4 {
  padding-left: 12px;
  padding-right: 12px;
}

/* Ensure Bootstrap classes work properly */
.tabs-style2-content .g-4 > * {
  padding-left: calc(1.5rem * 0.5);
  padding-right: calc(1.5rem * 0.5);
  margin-top: 1.5rem;
}

.tabs-style2-content .bg-white {
  background-color: #ffffff !important;
}

.tabs-style2-content .bg-light {
  background-color: #f8f9fa !important;
}

.tabs-style2-content .rounded-4 {
  border-radius: 0.75rem !important;
}

.tabs-style2-content .p-4 {
  padding: 1.5rem !important;
}

.tabs-style2-content .h-100 {
  height: 100% !important;
}

.tabs-style2-content .w-100 {
  width: 100% !important;
}

.tabs-style2-content .object-fit-cover {
  object-fit: cover;
}

.tabs-style2-content .img-fluid {
  max-width: 100%;
  height: auto;
}

.tabs-style2-content .fw-bold {
  font-weight: 700 !important;
}

.tabs-style2-content .text-primary {
  color: var(--taevas-blue, #5519E6) !important;
}

.tabs-style2-content .text-decoration-underline {
  text-decoration: underline !important;
}

.tabs-style2-content .mt-3 {
  margin-top: 1rem !important;
}

.tabs-style2-content .mb-0 {
  margin-bottom: 0 !important;
}

.tabs-style2-content ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.tabs-style2-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tabs-style2-content h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Responsive Design for Style-2 Content */
@media (max-width: 767px) {
  .tabs-style2-content .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .tabs-style2-content .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .tabs-style2-content .col-md-4 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 1rem;
  }
  
  .tabs-style2-content .p-4 {
    padding: 1rem !important;
  }
  
  .tabs-style2-content h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .tabs-style2-content .p-4 {
    padding: 0.75rem !important;
  }
  
  .tabs-style2-content h5 {
    font-size: 1rem;
  }
  
  .tabs-style2-content li {
    font-size: 0.9rem;
  }
}

/* ================================== */
/* STYLE 3: Cards Without Tabs Navigation */
/* ================================== */

.tabs-with-cards-style-3 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px 0;
}

.tabs-cards-no-navigation {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.tabs-with-cards-style-3 .tabs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 10px 0;
  animation: fadeInUp 0.6s ease-out;
}

.tabs-with-cards-style-3 .tabs-card-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 6px 25px rgba(85, 25, 230, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 2px solid rgba(85, 25, 230, 0.05);
  overflow: hidden;
  text-align: center;
  transform: translateY(0);
}

.tabs-with-cards-style-3 .tabs-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(85, 25, 230, 0.03), transparent);
  transition: left 0.6s ease;
}

.tabs-with-cards-style-3 .tabs-card-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(85, 25, 230, 0.15);
  border-color: rgba(85, 25, 230, 0.15);
}

.tabs-with-cards-style-3 .tabs-card-item:hover::before {
  left: 100%;
}

.tabs-with-cards-style-3 .tabs-card-icon {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-icon {
  transform: scale(0.75) rotate(3deg);
  box-shadow: 0 8px 25px rgba(85, 25, 230, 0.3);
}

.tabs-with-cards-style-3 .tabs-card-icon-image {
  object-fit: contain;
  transition: all 0.3s ease;
}

.tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-icon-image {
  transform: scale(1.2);
}

.tabs-with-cards-style-3 .tabs-card-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-with-cards-style-3 .tabs-card-icon-placeholder i {
  font-size: 2.5rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-icon-placeholder i {
  transform: scale(1.2) rotate(-3deg);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.tabs-with-cards-style-3 .tabs-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--taevas-blue);
  margin-bottom: 15px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-title {
  color: var(--taevas-purple);
  transform: translateY(-2px);
}

.tabs-with-cards-style-3 .tabs-card-separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--taevas-blue) 0%, var(--taevas-purple) 100%);
  margin: 0 auto 15px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-separator {
  width: 80px;
  box-shadow: 0 2px 8px rgba(85, 25, 230, 0.3);
}

.tabs-with-cards-style-3 .tabs-card-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #000;
  margin: 0;
  transition: color 0.3s ease;
}

.tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-description {
  color: #2d3748;
}

/* Style 3 Animation */
.tabs-with-cards-style-3 .tabs-card-item:nth-child(1) { animation-delay: 0.1s; }
.tabs-with-cards-style-3 .tabs-card-item:nth-child(2) { animation-delay: 0.2s; }
.tabs-with-cards-style-3 .tabs-card-item:nth-child(3) { animation-delay: 0.3s; }
.tabs-with-cards-style-3 .tabs-card-item:nth-child(4) { animation-delay: 0.4s; }
.tabs-with-cards-style-3 .tabs-card-item:nth-child(5) { animation-delay: 0.5s; }
.tabs-with-cards-style-3 .tabs-card-item:nth-child(6) { animation-delay: 0.6s; }

/* Style 3 Responsive Design */
@media (max-width: 1024px) {
  .tabs-with-cards-style-3 {
    padding: 30px 0;
  }
  
  .tabs-with-cards-style-3 .tabs-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-item {
    padding: 25px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon-image {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .tabs-with-cards-style-3 {
    padding: 20px 0;
    border-radius: 15px;
  }
  
  .tabs-with-cards-style-3 .tabs-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-item {
    padding: 25px 20px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon-image {
    width: 35px;
    height: 35px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon-placeholder i {
    font-size: 2rem;
  }
  
  .tabs-with-cards-style-3 .tabs-card-title {
    font-size: 1.25rem;
  }
  
  .tabs-with-cards-style-3 .tabs-card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tabs-with-cards-style-3 .tabs-card-item {
    padding: 20px 15px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon-image {
    width: 30px;
    height: 30px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-icon-placeholder i {
    font-size: 1.8rem;
  }
  
  .tabs-with-cards-style-3 .tabs-card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-description {
    font-size: 0.85rem;
  }
  
  .tabs-with-cards-style-3 .tabs-card-separator {
    width: 50px;
    height: 2px;
    margin-bottom: 12px;
  }
  
  .tabs-with-cards-style-3 .tabs-card-item:hover .tabs-card-separator {
    width: 65px;
  }
}