/* Header */
.header {
    padding: 30px 0 50px;
    background-color: #96c4f2;
    overflow: hidden;
  }

  @media only screen and (max-width: 767.98px) {
    .header {
      padding: 70px 0;
    }
  }
  /* navigator */
  .header .navigator {
    margin-bottom: 120px;
    font-family: var(--secondary-font);
  }
  
  /* title */
  .header .navigator .title {
    position: relative;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    margin-right: 45px;
  }
  .header .navigator .title::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--dark);
    right: -24px;
  }
  
  /* item */
  .header .navigator .item {
    font-size: 15px;
    color: var(--dark);
    font-weight: 300;
    border-bottom: 1px solid transparent;
  }
  .header .navigator .item.active {
    font-weight: 500;
    border-bottom-color: var(--dark);
   }
  .header .navigator .item:not(:last-child) {
    margin-right: 25px;
  }
  .header .navigator .item:hover {
    border-bottom-color: var(--dark);
  }
  
  /* title-5 */
  .header .title-5 {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  /* title-1 */
  .header .title-1 {
    font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
    font-family: var(--third-font);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 30px;
  }
  
  /* hero */
  .header .hero {
    position: absolute;
    bottom: -50px;
    right: 12vw;
    width: 420px;
  }
  @media only screen and (max-width: 1199.98px) {
    .header .hero {
      width: 370px;
      right: 4vw
    }
    .web-dev-anim{
      margin-left: 0px !important;
    }
  }
  @media only screen and (max-width: 991.98px) {
    .header .hero {
      display: none
    }
  }
  /*------------------------------------------------------*/
  
  /* Section I */
  
  /* item */
  .se-i .filter-bar .item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 14px 28px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s ease;
  }
  .light-theme .se-i .filter-bar .item {
    background-color: var(--light);
  }
  .se-i .filter-bar .item:not(.active):hover {
    background-color: var(--semi-dark);
  }
  .light-theme .se-i .filter-bar .item:not(.active):hover {
    background-color: var(--border);
  }
  .se-i .filter-bar .item.active {
    background-color: var(--primary);
    color: #FFFFFF;
  }
  
  /* responsive-table */
  .se-i .responsive-table {
    display: none
  }
  .se-i .responsive-table.show {
    display: block
  }
  
  /* custom-table */
  .se-i .custom-table {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 45px;
    padding-bottom: 50px;
    display: none;
  }
  .div-budget-card{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .budget-card {
    border-radius: 2px;
    padding: 14px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: max-content;
    background-color: #f4f8fb;
    color: #001033;
    cursor: pointer;
  }
  .budget-card.active{
    background-color: #0060fe;
    color: #FFFFFF;
  }

  .budget-card:hover{
    background-color: #e2e9ee;
    color: #001033;
  }
  .budget-card-mdm {
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
    text-align: center;
  }
  .budget-card-high {
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
    text-align: center;
  }
    
  .title {
    font-weight: 500;
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-family:'Roboto', sans-serif;
  }
  .title-mdm {
    font-size: 28px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
    
  .description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
  }
        
  .corner-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .price-tag {
    position: absolute;
    bottom: 20px;
    left: 28px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
  }
  
  .price-tag::before {
    content: "→";
    margin-right: 6px;
    color: #facc15;
  }
  
  /* tbody */
  .se-i .custom-table .tbody {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .se-i .custom-table .tbody .tr {
    width: calc(25% - 20px);
    border-radius: 4px !important;
    overflow: hidden;
    margin: 10px;
    background-color: var(--semi-dark);
    border: 1px solid rgba(255, 255, 255, .05);
  }
  .light-theme .se-i .custom-table .tbody .tr {
    background-color: var(--light);
    border-color: var(--border);
  }
  .se-i .custom-table .tbody .tr:hover {
    background-color: rgba(255, 255, 255, .02);
  }
  .light-theme .se-i .custom-table .tbody .tr:hover {
    background-color: #fff;
  }
  @media only screen and (max-width: 1199.98px) {
    .se-i .custom-table .tbody .tr {
      width: calc(33.33% - 20px);
    }
  }
  @media only screen and (max-width: 991.98px) {
    .se-i .custom-table .tbody .tr {
      width: calc(50% - 20px);
    }

  }
  @media only screen and (max-width: 767.98px) {
    .se-i .custom-table .tbody .tr {
      width: calc(100% - 20px);
    }
    .web-dev-anim{
      display: flex;
    }
    .se-i .custom-table {
      justify-content: center;
    }
  }
  
  /* td */
  .se-i .custom-table .tbody .td {
    width: 100% !important;
    display: flex !important;
  }
  .se-i .custom-table .tbody .td:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, .05) !important;
  }
  .light-theme .se-i .custom-table .tbody .td:nth-child(2) {
    border-color: var(--border) !important;
  }
  .se-i .custom-table .tbody .td:not(:first-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, .05) !important;
    padding: 0 !important;
  }
  .light-theme .se-i .custom-table .tbody .td:not(:first-of-type) {
    border-color: var(--border) !important;
  }
  
  /* icon */
  .se-i .custom-table .tbody .td .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .05);
    min-width: 40px;
    width: 40px;
  }
  .light-theme .se-i .custom-table .tbody .td .icon {
    border-color: var(--border);
  }
  .se-i .custom-table .tbody .td .icon img {
    filter: invert(1);
    width: 17px;
    opacity: .6;
  }
  .light-theme .se-i .custom-table .tbody .td .icon img {
    filter: invert(0);
    opacity: .7;
  }
  
  /* text */
  .se-i .custom-table .tbody .td:not(.plan-td) .text {
    margin-left: 16px;
    padding: 6px;
  }
  
  /* plan-td */
  .se-i .custom-table .tbody .td.plan-td {
    min-width: 208px;
    width: 208px;
    padding: 20px 12px;
  }
  
  .se-i .custom-table .tbody .td.plan-td .flag {
    position: relative;
  }
  .se-i .custom-table .tbody .td.plan-td .flag:not(:last-child) {
    margin-bottom: 8px;
  }
  .se-i .custom-table .tbody .td.plan-td .flag::before {
    position: absolute;
    content: attr(data-tooltip);
    left: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    background: #1e5f74;
    color: #fff;
    border-radius: 4px;
    padding: 10px;
    font-size: 12px;
    min-width: 10px;
    white-space: nowrap;
    word-wrap: break-word;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
  }
  .se-i .custom-table .tbody .td.plan-td .flag::after {
    position: absolute;
    content: '';
    left: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #1e5f74;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
  }
  .se-i .custom-table .tbody .td.plan-td .flag:hover::before,
  .se-i .custom-table .tbody .td.plan-td .flag:hover::after {
    opacity: 1;
    visibility: visible;
  }
  
  .se-i .custom-table .tbody .td.plan-td .flags img {
    display: block;
    width: 17px;
    margin: 0 8px;
  }
  
  .se-i .custom-table .tbody .td.plan-td .text {
    margin-left: 8px;
  }
  .se-i .custom-table .tbody .td.plan-td .text .name {
    font-size: 14px;
    font-family: var(--secondary-font);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.6;
  }
  .light-theme .se-i .custom-table .tbody .td.plan-td .text .name {
    color: var(--dark);
  }
  .se-i .custom-table .tbody .td.plan-td .text .des {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: var(--text-gray);
  }
  
  .se-i .custom-table .tbody .td:not(.plan-td) {
    padding: 0 8px;
  }
  /* text */
  .se-i .custom-table .tbody .td:not(.plan-td) .name {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
  }
  .se-i .custom-table .tbody .td:not(.plan-td) .des {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: var(--text-gray);
  }
  
  /* cpu-td */
  .se-i .custom-table .tbody .td.cpu-td {
    min-width: 176px;
    width: 176px;
  }
  
  /* ram-td */
  .se-i .custom-table .tbody .td.ram-td {
    min-width: 112px;
    width: 112px;
  }
  
  /* storage-td */
  .se-i .custom-table .tbody .td.storage-td {
    min-width: 144px;
    width: 144px;
  }
  
  /* bandwidth-td */
  .se-i .custom-table .tbody .td.bandwidth-td {
    min-width: 144px;
    width: 144px;
  }
  
  /* ip-td */
  .se-i .custom-table .tbody .td.ip-td {
    min-width: 130px;
    width: 130px;
  }
  
  /* price-td */
  .se-i .custom-table .tbody .td.price-td {
    min-width: 154px;
    width: 154px;
  }
  .se-i .custom-table .tbody .td.price-td .price {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: #ffffff;
    margin-left: 16px;
    padding: 10px 6px;
  }
  .se-i .custom-table .tbody .td.price-td .price {
    color: var(--text-gray);
  }
  .se-i .custom-table .tbody .td.price-td .price span {
    font-size: 12px;
    display: inline-flex;
    margin-left: 4px;
    font-weight: 300;
    color: var(--text-gray);
  }
  
  /* actions-td */
  .se-i .custom-table .tbody .td.actions-td {
    min-width: 160px;
    width: 160px;
    padding: 10px !important;
  }
  .se-i .custom-table .tbody .td.actions-td .btn-fill-primary {
    width: 100%;
    min-width: unset;
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
  }
  
  /* se-footer */
  .se-i .se-footer .line {
    margin: 6px 12px;
  }
  .se-i .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
    margin-right: 10px;
  }
  .se-i .se-footer .line .text {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1;
  }
  /* --------------------------------- */
  
  .web-dev-anim{
    width: 285px; 
    height: 100%; 
    margin-left: 200px;
    margin-top: 40px;
  }


  .card {
    width: 100%;
    height: max-content;
    max-width: 320px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e2e9ee;
    background: #f4f8fb;
}

.card:hover{
  background-color: white;
}

.card-header {
    color: #001033;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e9ee;
    display: flex;
    align-items: start;
}

.card-title {
  font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    height: 30px;
    text-align: left;
    display: flex;
    align-items: start;
    margin-left: 10px;
}

.pricing {
    color: #001033;
    padding: 20px 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid #e2e9ee;
}

.period {
    font-size: 18px;
    color: #e6e6e6;
    font-weight: 400;
    color:#001033;
}

.card-body {
    padding: 30px 25px;
    text-align: center;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.security-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.03;
    background-size: 50%;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #0060fe;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(46, 125, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

.order-btn:hover {
    transform: translateY(-3px);
    background-color: #003bdf;
}

.order-btn:active {
    transform: translateY(1px);
}

.order-btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 300%;
    top: -100%;
    left: -100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    transition: 0.7s;
}

.order-btn:hover::after {
    left: 120%;
}

.product-link {
    display: inline-block;
    margin-top: 15px;
    color: #0061a7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0061a7;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.product-link:hover {
    color: #0c5a94;
}

.product-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.shield-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    color: #0061a7;
}
.price-image{
  width: 24px;
  margin-right: 10px;
}
.tag-most-plpr{
  width: 100%;
  background: black;
  display: flex;  
  justify-content: center;
  align-items: center;
  color: #15CD72;
  height: 35px;
  font-weight: 700;
  position: absolute;
  top: 6%;
  left: 36%;
  transform: rotate(45deg);
  z-index: 1;
}

.category-header {
  text-align: center;
  margin: 3rem 0 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.category-header h2 {
  font-size: 1.75rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

.category-header p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.card-plan-info{
    max-height: 250px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-align: left;
    color: #001033;
    font-weight: 400;
}
.ssl-image{
  width: 24px;
  height: 100%;
}

.category-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: 1;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #64748b;
}

/* .process-step h3 {
  text-align: center;
  margin: 1rem 0;
} */
    
/* Team Section */
/* .team {
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 2rem auto 1rem;
  background-color: #e2e8f0;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  margin-bottom: 0.5rem;
}

.team-position {
  color: #4a6cf7;
  font-weight: 600;
  margin-bottom: 1rem;
}  */

@media only screen and (min-width: 481px) and (max-width: 992px){
  .web-dev-anim{
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .web-dev-anim{
    display: none;
  }
  .se-i .custom-table {
    justify-content: center;
  }
}

