﻿:root {
  --primary-color: #ed1b2f;
  --primary-dark: #c0392b;
  --primary-light: #ffe06a;
  --secondary-color: #3498db;
  --secondary-dark: #2980b9;
  --secondary-light: #d6eaf8;
  --accent-color: #f39c12;
  --accent-dark: #e67e22;
  --success-color: #2ecc71;
  --warning-color: #f1c40f;
  --error-color: #e74c3c;
  --dark-color: #2c3e50;
  --text-color: #333333;
  --text-light: #7f8c8d;
  --light-color: #f5f5f5;
  --white-color: #ffffff;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
}
  

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  border: 1px solid #ffcb05ba;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-light);
  transition: var(--transition);
  z-index: -1;
  
}

.benefit-card:hover {
  transform: translateY(-10px);
  border: 1px solid #ed1b2f;
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(360deg);
}

.benefit-card h3 {
  margin-bottom: 16px;
  color: var(--dark-color);
}

.benefit-card p {
  color: var(--dark-color);
  margin-bottom: 0;
}

.card-offer .card-image{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
}

.services {
  background-color: var(--white-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px 24px;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Pricing Section */
.pricing {
  background-color: var(--light-color);
}

.pricing-tabs {
  margin-bottom: 48px;
}

.pricing-tab-header {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.pricing-tab {
  padding: 12px 24px;
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color:var(--text-color);
}

.pricing-tab:not(:last-child) {
  margin-right: 16px;
}

.pricing-tab.active,
.pricing-tab:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-row {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row.header {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
}

.pricing-cell {
  flex: 1;
  padding: 16px;
  text-align: center;
}

.pricing-calculator {
  background-color: var(--white-color);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.pricing-calculator h3 {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.pricing-calculator h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

table.table-pricing{
    width:100%;
    border-collapse: collapse;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.table-pricing thead tr th{
    background-color: var(--primary-color);
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
    text-align: center;
}
table.table-pricing tbody tr td{
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.swiper {
      width: 100%;
      height: 100%;
      padding:20px !important;
    }
.swiper-pagination .swiper-pagination-bullet{
    background:#d7d7d7;
}
.swiper-pagination .swiper-pagination-bullet-active{
    background:var(--primary-color);
}
/* Process Section */
.process {
  background-color: var(--white-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  position: relative;
  width: 18%;
  text-align: center;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.1);
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
}
.box-signup{
    width:auto !important;
    max-width:auto !important;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.info-icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 16px;
  font-size: 1.2rem;
}

.info-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.info-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Info Items Hover Effects */
.info-item {
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item:hover .info-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}


/* Medium Screens (992px - 1199px) */
@media screen and (max-width: 1199px) {
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  
  .process-steps {
    flex-wrap: wrap;
  }
  
  .process-step {
    width: 30%;
    margin-bottom: 30px;
  }
  
  .process-steps::before {
    display: none;
  }
}


/* Small Tablets (768px - 991px) */
@media screen and (max-width: 991px) {
  
    .process-step {
    width: 45%;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Phones (576px - 767px) */
@media screen and (max-width: 767px) {
  
  
  .process-step {
    width: 100%;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
}

/* Small Mobile Phones (Up to 575px) */
@media screen and (max-width: 575px) {
  
}

/* Landscape Orientation for Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  
}

/* Extra Large Screens (1400px and above) */
@media screen and (min-width: 1400px) {
  
}

/* Print Media */
@media print {
  
}