body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1565C0;   /* თეთრი ფონი */
  color: #333;           /* ტექსტისთვის მუქი ნაცრისფერი */
  overflow-x: hidden;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 70px 20px;
  text-align: center;
    background-color: #1565C0;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab {
  padding: 12px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tab:hover,
.tab.active {
  background: linear-gradient(135deg, #00f0ff, #00bcd4);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
  transform: translateY(-3px);
}

/* ===== Categories ===== */
.category {
  display: none;
}
.category.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

/* ===== Glassmorphism Card ===== */
/* ===== Modern Sharp but Soft Card ===== */
.internetpackcard {
  background: #1565C0;
  border-radius: 16px;
  padding: 35px 28px;
  width: 320px;
  color: #222;
  border: 1px solid #e5eaf0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover ეფექტი */
.internetpackcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 188, 212, 0.2);
  border-color: #00bcd4;
}

/* Title */
.internetPacket_header{
  color:white;
}

/* Price */
.priceintpack {
  font-size: 30px;
  font-weight: bold;
  margin: 18px 0 22px;
  color: #111;
  text-align: center;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */
.internetpackcard hr {
  border: 0;
  height: 1px;
  background: #e5eaf0;
  margin: 20px 0;
}

/* Features list */
.featuresinternetpack {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.featuresinternetpack li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
  transition: 0.25s ease;
}

.featuresinternetpack li:hover {
  transform: translateX(5px);
  color: #00a5bb;
}

.featuresinternetpack svg {
  width: 20px;
  height: 20px;
  fill: #00a5bb;
}

/* Buy button inside card */
.internetpackcard .fancy-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 4px 14px rgba(0, 114, 255, 0.25);
}

.internetpackcard .fancy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.35);
}

/*//*-*/
.priceintpack {
  font-size: 30px;
  font-weight: bold;
  margin: 15px 0 25px;
  color: #222;
}

/* ===== Features ===== */
.featuresinternetpack {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.featuresinternetpack li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.featuresinternetpack li:hover {
  transform: translateX(5px);
  opacity: 1;
}

.featuresinternetpack svg {
  width: 20px;
  height: 20px;
  fill: #00bcd4;
}

/* ===== Fancy Purchase Button ===== */
.fancy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(135deg, #00f0ff, #00bcd4);
  color: white;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 229, 255, 0.4);
  cursor: pointer;
  transition: all 0.35s ease;
}

.fancy-btn:hover {
  background: linear-gradient(135deg, #00bcd4, #00f0ff);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.6);
}

.fancy-btn .btn-icon {
  width: 22px;
  height: 22px;
  fill: white;
  transition: transform 0.35s ease;
}

.fancy-btn:hover .btn-icon {
  transform: translateX(6px);
}
