.se-i .se-footer .line {
    margin: 6px 12px;
}

.se-i .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
    margin-right: 10px;
}

/* GLOBAL HERO SECTION */
.hero-section {
  background-color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

/* Wrapper */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Hero Content */
.hero-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-title {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-off {
  color: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Hero List Section */
.hero-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-ul-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.hero-list-item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  width: max-content;
  align-items: start;
}

.hero-list-item::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-list-price {
  display: flex;
  justify-content: flex-start;
  /*align-items: center;*/
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  text-decoration-color: #61646e;
  font-size: 16px;
}

.start-price-text{
    font-size:18px;
    font-weight:600;
}

.price-current {
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee {
  font-size: 28px;
  color: var(--text-gray);
  position: absolute;
  top: 0px;
}

.rupee-number {
    color: var(--dark);
    color:var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-gray);
}

.bonus {
  font-size: 18px;
  font-weight:600;
  color: var(--primary);
}

/* Buttons + Timer */
.hero-button-timer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: var(--primary);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero-timer-wrapper {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: #f5f3fe;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero_timer {
  display: flex;
  justify-content: space-around;
  width: 85%;
  align-items: center;
  font-family: var(--secondary-font);
}

/* Guarantee */
.hero-guarantee {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 5px;
}

.hero-guarantee-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-guarantee-text {
  font-size: 14px;
  font-weight: 500;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%) scale(0.98);
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.tooltip-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent var(--primary) transparent transparent;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.underline-dotted {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #b7c3d1;
  text-decoration-style: dashed;
  text-underline-position: under;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.hero-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-list-section {
    align-items: center;
  }

  .hero-ul-list-items {
    align-items: center;
  }

  .hero-list-price {
    justify-content: center;
  }

  .hero-button-timer {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .tooltip-content {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
  }

  .tooltip-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border-color: var(--primary) transparent transparent transparent;
  }

  .tooltip:hover .tooltip-content {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 468px) {
  .hero-btn,
  .hero-timer-wrapper {
    width: 100%;
    max-width: 200px;
  }
}


/*GLOBAL HERO SECTION CSS END*/


/* GLOBAL REVIEW SECTION CSS START*/

.review-section-container {
  background-color: #ffffff;
  padding: 30px 0;
  text-align:center;
}

.review-section{
    max-width:1100px;
}

.rating-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}

.rating-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-icon .icon-cpanel {
  width: 100px;
  height: 50px;
}

.rating-icon .icon-wordpress {
  height: 45px;
}

.rating-plus {
  font-size: 20px;
  margin: 0 5px;
}

.rating-dash {
  font-size: 100%;
  margin: 0 5px;
}

.rating-text-bold {
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  margin-right: 5px;
}

.rating-text {
  font-size: 26px;
  color: var(--text-gray);
  font-weight: 700;
}

.reviews-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:7px;
  min-width: 220px;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.review-logo, .review-stars{
    display:flex;
    justify-content:center;
    align-items:center;
}

.user-logo-txt{
    font-size:20px;
}

.review-logo-img {
  height: 30px;
}

.review-star-img {
  height: 35px;
}

.review-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.review-text strong {
  color: var(--text-gray);
  font-weight: 600;
}

.review-link {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
  text-underline-position: under;
}

.review-link:hover {
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
}


@media (max-width: 768px) {
  .reviews-section {
    flex-wrap: nowrap;                 
    overflow-x: auto;                  
    scroll-snap-type: x mandatory;     
    -webkit-overflow-scrolling: touch; 
    gap: 20px;
    padding: 0 10px;
  }

  .review-box {
    flex: 0 0 50%;
  }

  .reviews-section::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 468px) {
  .rating-section {
    flex-wrap: wrap;
  }
  
  .review-box {
        flex: 0 0 100%;
    }
  
  .rating-text{
      margin-top: 10px;
  }
}

/* GLOBAL REVIEW SECTION CSS END*/



/* ========== Plans Container CSS ========== */

.plan_outer_container{
    margin:0 auto !important;
}

.plan_container_pointers{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.outer_plan_features{
    display: block;
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.2;
    position: relative;
    white-space: nowrap;
}

.outer_plan_features:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_container {
    width: 100%;
    position: relative;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    z-index: 1000;
}

.slider-button {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color:var(--primary);
    box-shadow: 0 4px 16px #00000029;
    cursor: pointer;
    height: 45px;
    justify-content: center;
    width: 45px;
    z-index: 2;
    font-size: 22px;
    line-height: 22;
    border: 0;
    outline: 0;
}

.slider-prev{
    transform:rotate(180deg);
}

.slider-button:disabled {
    background-color: #fff;
    opacity:0;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 80px 0px 20px;
}

.plan_column {
    background: #fff;
    border: 1px solid #D4D4D8;
    border-radius: 15px;
    margin: 10px;
    padding: 44px 17px 14px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all .3s ease-in-out;
    position: relative;
    min-height: 600px;
}

.plan_column:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 48px;
    background: #fff;
    border-radius: 16px 16px 0 0;
}

#plan2{
    border-color:var(--primary);
}

#plan3{
    border-color:var(--primary);
    background-color: #f5f3fe;
}
#plan3:before{
    background-color: #f5f3fe;
}

#plan1:hover,#plan4:hover{
    border-color:var(--primary);
}


.plan-badge {
    position: absolute;
    display: block;
    width: 100%;
    top: -46px;
    z-index: -1;
    left: 0;
    text-align: center;
    padding: 7px 0 44px;
    padding-top: 8px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.plan-badge:before {
    position: absolute;
    background: var(--primary);
    content: "";
    left: -4px;
    top: -2px;
    right: 0;
    bottom: -43px;
    z-index: -2;
    border-radius: 14px 14px 0 0;
}

.plan-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shinePlanBadge 2s infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes shinePlanBadge {
  100% {
    left: 125%;
  }
}

/* Pricing plan Start */

.plan-badge-img {
    filter: brightness(15.5);
}

.plan-badge-text{
    color: #fff;
    font-size: 15px;
    padding-top: 4px;
    text-transform: uppercase;
    font-weight: bolder;
}

.plan_title {
    font-weight: 500;
    color: var(--dark);
    font-size: 20px;
}

.plan_para {
    font-size: 14px;
    font-weight: 500;
    padding-top: 8px;
    color:var(--text-gray);
}

.plan_content {
    border-radius: 20px;
    transition: all .3s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.plan_header_box {
    position: relative;
    z-index: 10;
}

.plan_header_padding {
    padding-top: 16px;
}

.plan_price_strikethrough {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

.plan_price_strikethrough:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    width: calc(100% + 8px);
    height: 1px;
    background: #61646e;
}

.plan_currency_icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
}

.plan_save {
    color: #ED7E07;
    background: #FFF0E3;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    border-radius: 8px;
    display: inline-block;
}

.plan_price {
    width: 100%;
    margin-top: 15px;
    display: flex;
    font-size: 22px;
    color: var(--text-gray);
}

.plan_price_discounted {
    font-size: 48px;
    margin: 0 1px;
    line-height: 1;
    font-weight: 600;
}

.plan_price_unit {
    font-size: 16px;
    font-weight: 400;
    align-self: flex-end;
}

.plan_month_free {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    margin-top: 14px;
    display: inline-block;
}


.plan_button_box {
    margin: 24px 0 22px;
    text-align: center;
}

.plan_button {
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--primary);
    background: #fff;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid var(--primary);
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight:500;
}

.plan_button:hover {
    background: var(--primary);
    color: #fff;
}

.plan_button {
  position: relative;
  overflow: hidden;
}

.plan_button:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.btn_active_plan{
    background: var(--primary);
    color: #fff;
}

.btn_active_plan {
  position: relative;
  overflow: hidden;
}

.btn_active_plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 2s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}


.plan_renew_note {
    padding: 2px 0 30px;
    font-size: 12px;
}

.plan_divider {
    margin-bottom: 34px;
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
}

.plan_feature_list {
    padding: 0;
    list-style: none;
}

.plan_feature, .plan_feature_crossed {
    display: block;
    margin-bottom: 18px;
    padding-left: 25px;
    font-size: 14px;
    /*line-height: 1.2;*/
    position: relative;
}

.plan_feature:before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #13b763;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_crossed {
    color: #9baab8 !important;
}

.plan_feature_crossed:before {
    content: "✗";
    position: absolute;
    top: 0;
    left: 1px;
    width: 15px;
    height: 15px;
    color: #ef4444;
    font-weight: bold;
    font-size: 16px;
}

.plan_feature_bold {
    font-weight: 800;
}

.plan_feature_highlight {
    color: var(--text-gray);
    text-decoration: underline;
    text-decoration-color: #B7C3D1;
    text-decoration-style: dashed;
    text-underline-position: under;
    padding-bottom: 2px;
    position: relative;
    cursor: help;
}

.plan_feature_highlight[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 67%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--primary);
    color: white;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    min-width: 160px;
    max-width: 300px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px);
}

.plan_feature_highlight[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 67%;
    width: 18px;
    height: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
    transform: translateX(-50%) rotate(45deg);
    background-color:var(--primary);
}


.plan_feature_highlight[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.plan_feature_highlight[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) rotate(45deg) translateY(0px);
}

.plan_feature_highlight_strong{
    font-weight:600;
    color: var(--dark);
}

.plan_feature_list_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.plan_toggle_features {
    text-align: left;
    padding-bottom: 28px;
    margin-top: auto;
}

.plan_toggle_button {
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    width:100%;
    margin-bottom:20px;
}

.plan_toggle_button:after {
    background:var(--primary);
    width: 70px;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.plan_toggle_button:hover:after {
    width: 138px;
}

.plan_hidden_features.show {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.month_free {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-top: 14px;
    display: inline-block;
}

.domain_span{
    background: #13b763;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 13px;
    display: inline-block;
    margin-top: -7px;
    margin-left:3px;
}

.rupee_icon{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right:2px;
}

/* ========== RESPONSIVE RULES ========== */

/* Mobile - Show 1 plan */
@media (max-width: 480px) {
    .plan_column {
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track {
        width: 100%;
    }
    
    .carousel-track{
        padding: 60px 0px 20px;
    }
}

/* Tablet - Show 2 plans */
@media (min-width: 481px) and (max-width: 768px) {
    .plan_column {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track{
        padding: 60px 0px 20px;
    }
}

/* Laptop Medium - Show 3 plans */
@media (min-width: 769px) and (max-width: 1024px) {
    .plan_column {
        width: calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .slider-controls {
        display: flex;
    }
    
    .carousel-track{
        padding: 60px 0px 20px;
    }
}

/* Laptop Large - Show 4 plans */
@media (min-width: 1025px) and (max-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
    
    .slider-controls {
        display: none;
    }
}

/* Desktop - Show 4 plans */
@media (min-width: 1200px) {
    .plan_column {
        width: calc(25% - 20px);
        min-width: calc(25% - 20px);
        max-width: calc(25% - 20px);
    }

    .slider-controls {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .plan_container {
        /* padding-top: 80px; */
    }
    
    .plan_save {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .plan_price_discounted {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .plan_container {
        /* padding: 80px 5px 0; */
    }
    
    .plan_column {
        /*margin: 5px;*/
    }
    
    .plan_save {
        display: block;
        margin: 8px 0;
        margin-left: 0;
        text-align: center;
    }
}

.plan_hidden_features {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.6s ease, opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.plan_hidden_features.expanded {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow: visible;
}

/*PLANS TABLE CSS END*/






/*  HIGHLIGHTS SECTION */

.nodejs-highlights-section {
  padding: 60px 0px;
  background-color: var(--primary);
}

.nodejs-highlights-header {
  max-width: 850px;
  margin: 0 auto 50px;
}

.highlights-header-title1 {
  color: #ffffff !important;
}

/* Highlight Cards Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-card {
  padding: 25px;
  color: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor:pointer;
}

.highlight-icon {
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
}

.highlight-icon-img {
  width: 100%;
  height: 100%;
}

.highlight-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

.highlight-title::after {
  content: "";
  display: block;
  margin: 6px auto 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 1) 47%,
    rgba(255, 255, 255, 1) 56%,
    rgba(255, 255, 255, 0) 80%
  );
  transition: opacity 0.3s ease, width 0.3s ease;
  opacity: 0;
}

.highlight-card:hover .highlight-title::after {
  width: 100%;
  opacity: 1;
}

.highlight-text {
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Button */
.nodejs-highlights-cta-button {
  text-align: center;
  margin-top: 40px;
}

.cta-box-btn {
  display: inline-block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: var(--primary);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cta-box-btn:hover {
  background: #ffffff;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}













/* ================= ZIGZAG SECTION ================= */

.zizzag-container-sections {
    padding: 60px 0;
    background: #ffffff;
}

.zigzag-container-header{
    max-width: 750px;
}

.zigzag-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zigzag-item {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    overflow: hidden;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Zigzag Items */
.zigzag-item--speed {
    background-color:  #c9e0ff;
    border-radius: 8px;
}

.zigzag-item--security {
    background-color: #ECEDF9;
    flex-direction: row-reverse;
    border-radius: 8px;
}

.zigzag-item--growth {
    background: #E6F5FF;
    border-radius: 8px;
}

.zigzag-item--performance {
    background-color: #ffe7be !important;
    border-radius: 8px;
}

/* Content & Image Containers */
.zigzag-item-contents {
    width: 63%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 6rem;
}

.zigzag-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.zigzag-image-container {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.zigzag-image-div {
    width: 100%;
    height: 100%;
}

.zigzag-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 500px;
}

/* Titles & Text */
.zigzag-title {
    font-size: 52px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
}

.zigzag-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

/* List Styling */
.zigzag-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zigzag-list-item {
    position: relative;
    padding-left: 1.75rem;
    font-size: 16px;
    color: var(--text-gray);
}

.zigzag-list-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 16px;
}

/* Links */
.zigzag-link {
    margin-top: 1rem;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.zigzag-text-link {
    text-decoration: underline;
    color: var(--primary);
}

.zigzag-image-div{
    display:flex;
    justify-content: center;
    align-items: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    
    .zigzag-item-contents,
    .zigzag-image-container {
        width: 100%;
        padding: 1.5rem;
    }
    
    .zigzag-image-div{
        text-align:center;
    }
    
    .zigzag-item-contents {
        padding: 2.5rem 4rem;
    }

    .zigzag-image-container {
        padding: 1.5rem;
    }

    .zigzag-title {
        font-size: 42px;
    }

    .zigzag-subtitle {
        font-size: 17px;
    }

    .zigzag-list-item {
        font-size: 15px;
    }

    .zigzag-list-item::before {
        font-size: 15px;
    }
    
    .zigzag-performance-items{
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {


    .zigzag-title {
        font-size: 32px;
    }

    .zigzag-subtitle {
        font-size: 16px;
    }

    .zigzag-list-item {
        font-size: 14px;
        padding-left: 1.5rem;
    }

    .zigzag-list-item::before {
        font-size: 14px;
    }

    .zigzag-link {
        display: block;
    }

}

@media (max-width: 480px) {

    .zigzag-title {
        font-size: 26px;
    }

    .zigzag-item-contents,
    .zigzag-image-container {
        padding: 2rem;
    }
}





