/* HERO SECTION */
.smbhero-section {
  position: relative;
  height: 90vh;
  background: url('../img/smb/nav_section.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
  font-family: 'Inter', sans-serif;

}

/* DARK OVERLAY */
.smbhero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.2) 100%
  ); */
}

/* CONTENT */
.smbhero-content {
  position: relative;
  max-width: 850px;
  z-index: 2;  
}

/* MAIN HEADING */
.smbhero-content h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;color: #fff;
}

/* RED LINE */
.smbhero-content h2 {
  font-size: 42px;
  font-weight: 900;
  color: #e11d2e;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.smbhero-content p {
  font-size: 18px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 30px;
   max-width: 580px;
}

/* BUTTON */
.smbhero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e11d2e, #b90e22);
  padding: 14px 28px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.smbhero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(225, 29, 46, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .smbhero-section {
    padding: 40px 20px;
    height: auto;
  }

  .smbhero-content h1 {
    font-size: 36px;
  }

  .smbhero-content h2 {
    font-size: 24px;
  }

  .smbhero-content p {
    font-size: 14px;
  }
}


/* digital section  */
.digital-section {
  padding: 100px 0;
  background: #fff;
  font-family: "Open Sans", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #c41e3a;
  font-weight: 600;
  margin-bottom: 20px;
}

.left h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
}

/* RIGHT SIDE */
.top-text {
  font-size: 16px;
  line-height: 28px;
  color: #2f4858;
  margin-bottom: 30px;
}

/* CARD */
.card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
}

.card p {
  font-size: 15px;
  line-height: 26px;
  color: #333;
  margin-bottom: 18px;
}

.highlight {
  color: #c41e3a !important;
  font-weight: 800 !important;
  margin-top: 10px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .left h1 {
  font-size: 24px;
  }
}

/* package//////////////////////////////// */




/* SECTION */
.packages {
  padding: 80px 20px;
    margin: 0;
  font-family: "Open Sans", sans-serif;
  background: #f3eded;
  color: #111;
}

.container {
  /* max-width: 1200px; */
  margin: auto;
}

/* HEADER */
.title {
  /* line-height: 40px; */
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
}

.subtitle {
  color: #5c6b75;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* TOP AWS CARD */
.aws-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}

.aws-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #c41e3a;
  border-radius: 10px;
}

.label {
  font-size: 12px;
  font-weight: 700;
  color: #c41e3a;
  letter-spacing: 1px;
}

.aws-card h2 {
  margin: 5px 0 10px;
  font-size: 32px;
}

.aws-card p {
  font-size: 17px;
  color: #4a5b66;
  line-height: 1.6;
}

.section-head {
  font-size: 11px;
  font-weight: 700;
  color: #7b8a94;
  margin-bottom: 5px;
}

.price {
  text-align: right;
  font-size: 28px;
  font-weight: 800;
  color: #c41e3a;
}

.price span {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

/* HOSTING TITLE */
.hosting-title {
  text-align: center;
  margin: 70px 0 30px;
  font-size: 20px;
  font-weight: 800;
  color: #c41e3a;
  letter-spacing: 1px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  border: 1px solid #eee;
}

.card.popular {
  border: 2px solid #c41e3a;
}

.badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #c41e3a;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}

.small-tag {

  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f1f1f1;
  color: #777;
  letter-spacing: 0.5px;
  width: fit-content;

}
.medium-tag{
    background:#fbe9eb;
  color: #ab0027;
}

.card h3 {
  margin: 5px 0 15px;
  font-size: 20px;
}

.card p {
  font-size: 17px;
  color: #4a5b66;
  margin-bottom: 10px;
}

.card ul {
  list-style-type: disc;
  padding-left: 18px;
  margin: 10px 0;
}

.card li {
  font-size: 17px;
  margin-bottom: 6px;
}

.section-mini {
  font-size: 11px;
  font-weight: 700;
  color: #7b8a94;
  margin-top: 15px;
}

.bottom-price {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
}

.bottom-price span {
  font-size: 12px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .aws-card {
    grid-template-columns: 1fr;
  }

  .price {
    text-align: left;
    margin-top: 10px;
  }
  .title {
  /* line-height: 40px; */
  font-size: 24px;
  }
}

/* part2 */

/* CARD */
.waf-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px;
  position: relative;
}

/* RED LINE */
.waf-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  bottom: 25px;
  width: 5px;
  background: #c41e3a;
  border-radius: 10px;
}

/* TOP ROW */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 🔥 aligned properly */
  margin-bottom: 25px;
}

/* TITLE */
.waf-card h2 {
  font-size: 28px;
  margin: 5px 0 0;
  font-weight: 800;
}

/* TAG */
.tag {
  font-size: 11px;
  font-weight: 700;
  color: #c41e3a;
  letter-spacing: 1.5px;
}

/* PRICE */
.price {
  font-size: 28px;
  font-weight: 800;
  color: #c41e3a;
}

.price span {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* CONTENT ROW */
.content-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* TEXT */
.mini-title {
  font-size: 11px;
  font-weight: 700;
  color: #8a949b;
  margin-bottom: 6px;
}

.content-row p {
  font-size: 17px;
  line-height: 1.65;
  color: #3e4c55;
}


.ai-card {
  background: linear-gradient(135deg, #2b2f33, #6a1f2d);
  border-radius: 14px;
  padding: 35px;
  color: #fff;
  margin-top:30px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* BADGE */
.ai-badge {
  background: #c41e3a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
}

/* SUB TAG */
.sub-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #ffb3b3;
}

/* TITLE */
.ai-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  color: white;
}

/* PRICE */
.ai-price {
  text-align: right;
  font-size: 32px;
  font-weight: 800;
}

.ai-price span {
  font-size: 13px;
  color: #ccc;
}

.ai-price small {
  display: block;
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 5px;
}

/* CONTENT ROW  */
.content-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mini-title {
  font-size: 11px;
  font-weight: 700;
  color: #9aa3a8;
  margin-bottom: 6px;
}

.ai-card p {
  color: #d6d6d6;
  font-size: 17px;
  line-height: 1.65;
}
@media (max-width: 992px) {
  .top-row,.tag-row {
    flex-direction: column;
    align-items: start;
  }
  .price {
    margin-top: 0px; 
    /* padding-top: 0px; */
  }
  .content-row {
    grid-template-columns: repeat(1, 1fr);
}
}


/* part 3 */

/* SECTION */
.infra-section {
  padding: 80px 20px;
}

.section3-title {
  text-align: center;
  color: #b11226;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* GRID */
.infra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.infra-card {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border: 1px solid #eee;
}

/* POPULAR CARD */
.infra-card.popular {
  border: 2px solid #c41e3a;
  background: #fff;
}

/* BADGE */
.popular-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #c41e3a;
  color: #fff;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* TAG */
.tag {
  display: inline-block;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #eaeaea;
  color: #666;
  margin-bottom: 10px;
}

.tag.medium {
  background: #fdecee;
  color: #c41e3a;
}

/* TITLE */
.infra-card h3 {
  margin: 5px 0 15px;
  font-size: 20px;
  font-weight: 700;
}

/* TEXT */
.mini-title {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  margin-top: 12px;
}

.infra-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.infra-card ul {
  padding-left: 18px;
    list-style-type: disc;

}

.infra-card li {
  font-size: 17px;
  margin-bottom: 6px;
}

/* PRICE */
.price {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  font-size: 22px;
  font-weight: 800;
}

.price span {
  font-size: 12px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .infra-cards {
    grid-template-columns: 1fr;
  }
  .section3-title,.why-left h2 {
  font-size: 24px;
  }
  
}




/* ///////////////////why section */
/* ===============================
   WHY SECTION
================================ */
.why-section {
  background: #f5f5f5;
  padding: 80px  120px;
  font-family: 'Inter', sans-serif;
}

.why-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* LEFT */
.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: #f3dede;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
}

/* RIGHT */
.why-right {
  flex: 1;
  background: #eadcdc;
  padding: 40px;
  border-radius: 20px;
}

.why-right h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}

.why-right p {
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* STATS */
.why-stats {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

.why-stats h2 {
  color: #b11226;
  font-size: 40px;
  margin-bottom: 5px;
}

.why-stats span {
  font-size: 16px;
  color: #374151;
  font-weight: 600;
}
.smb-icon{
  height: 20px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }

  .why-section {
    padding: 50px 20px;
  }

  .why-stats {
    gap: 30px;
  }
}