:root {
  /* ===== Colors ===== */
  --primary-color: #0a0f3a;
  --secondary-color: #ffffff;

  --text-color: #333333;
  --muted-text: #777777;

  --bg-body: #f5f7fb;
  --bg-white: #ffffff;

  --border-color: #e5e7eb;

  /* Header / Top bar */
  --main-bar-bg: #011843;
  --main-buttons-bg:#0c59e9;
  --dark-bg-color:#011843;
  /* Links */
  --link-color: var(--primary-color);

  /* Spacing */
  --radius: 6px;
}
/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:system-ui,sans-serif;background:#f8faff; font-size: 14px;}
section{overflow: hidden;}
img{max-width: 100%;}
a{text-decoration: none;}
.main-bar {
  background: var(--main-bar-bg);
}

/* 🔥 HEADER BECOMES FLEX COLUMN */
.header {
  background: #fff;
  border-radius: 15px;
  padding:;

  display: flex;
  flex-direction: column;   /* IMPORTANT */
  gap: 0;

  overflow: hidden; /* KEY: keeps expansion inside */
  transition: all 0.4s ease;
}

/* TOP NAV ROW */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV */
.primary-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 30px;
}

/* =========================
🔥 MEGA MENU INSIDE HEADER
========================= */

.mega-wrapper {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);

  transition: all 0.4s ease;
}

/* ACTIVE HEADER EXPANSION */
.header.mega-open .mega-wrapper {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
  border-top: 1px solid #f0f0f0;
  background: #efefef;
}

/* GRID */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LINKS */
.mega-wrapper a {
  display: block;
  font-size: 14px;
  color: #444;
  margin-top: 8px;
  text-decoration: none;
}

.mega-wrapper a:hover {
  color: #2392f6;
}

.nav-item {
   position: relative;
}

.nav-link {
   display: flex;
   align-items: center;
   gap: 6px;

   font-size: 15px;
   font-weight: 500;
   color: #011843;

   text-decoration: none;
   letter-spacing: 0.2px;

   padding: 30px 10px;
   transition: all 0.25s ease;
   position: relative;
}

/* subtle underline animation */
.nav-link::after {
   content: "";
   position: absolute;
   left: 6px;
   bottom: -3px;
   width: 0%;
   height: 2px;
   background: linear-gradient(90deg, #4f9cff, #7c5cff);
   transition: width 0.3s ease;
   border-radius: 2px;
}

.nav-link:hover {
   color: #2392f6;
   background: #f0f0f0;
}

.nav-link:hover::after {
   width: calc(100% - 12px);
}

/* icon styling */
.nav-icon {
   width: 14px;
   height: 14px;
   opacity: 0.7;
   transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
   transform: rotate(180deg);
   opacity: 1;
}

/* CTA button style */
.nav-cta .nav-link.highlight {
   padding: 10px 16px;
   border-radius: 10px;

   background: linear-gradient(135deg, #4f9cff, #7c5cff);
   color: #fff;

   box-shadow: 0 10px 25px rgba(79, 156, 255, 0.25);
}

.nav-cta .nav-link.highlight:hover {
   transform: translateY(-1px);
   box-shadow: 0 14px 30px rgba(124, 92, 255, 0.35);
}

.nav-cta .nav-link.highlight::after {
   display: none;
}



/* =========================
NEW REGION LAYOUT INSIDE YOUR MEGA GRID
========================= */
.region-heading{
    color: #011843;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}
.region-grid {
  grid-template-columns: 220px 1fr;
  gap: 30px;
}

/* LEFT SIDE */
.region-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
background: #ededed;
  border-right: 1px solid #fff;
  padding-right: 15px;
  padding: 30px;
}

.region-btn {
  background: transparent;
  border: none;
  text-align: left;

  padding: 10px 12px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;
  color: #1a2b4a;

  cursor: pointer;
  transition: 0.2s ease;
}

.region-btn:hover {
  background: #fff;
  color: #2563eb;
}

.region-btn.active {
  background: #fff;
  color: #2563eb;
}

/* RIGHT SIDE */
.region-content {
  padding: 30px 0;
}

/* LOCATION GRID */
.region-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 14px;
  padding-right: 30px;
}

.region-panel.active {
  display: grid;
}

/* LOCATION LINKS */
.region-panel a {
  display: block;

  padding: 10px 12px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;

  text-decoration: none;
  color: #1a2b4a;

  font-size: 14px;
  font-weight: 500;

  transition: 0.2s ease;
  background: #fff;
}

.region-panel a:hover {
  border-color: #2563eb;
  background: #f7faff;
  transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 768px) {
  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

/* CONTAINER */
.container{width:90%;max-width:1200px;margin:auto;}
.site-header{color: #fff;}
.main-bar{background: var(--main-bar-bg);padding-top: 30px;}
.hero-slide{    background: var(--dark-bg-color);
    padding: 80px 0px;
    padding-bottom: 80px;}
.topbar{padding: 10px; background:#002563; font-size: 12px;}
.heading-wrapper{max-width: 60%;
    margin: 0px auto;padding-bottom: 50px;}
    .main-heading{text-align: center;}
    .main-heading h2{font-size: 48px;
    margin-bottom: 20px;}
    .heading-wrapper p{text-align: center;
    font-size: 19px;
    line-height: 25px;
    color: #7e8396;}
.heading-badge{    padding: 10px 18px;
    border-radius: 50px;
    background: rgb(1 24 67);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;}
.standard-icon svg {
    width: 1em;
    height: 1em;
    font-size: 28px;
    fill: #fff;
}
.gap-30{gap: 30px;}
/* layout */
.row-flex {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.col-fluid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; /* prevents breaking inside item */
}

/* allow wrapping behavior inside row */
.col-fluid-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* spacing between items */
}
.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.w-50 {width: 50%;}
.w-25{width: 25%;}
.w-75{width:75%; }
.w-30{width: 30%;}
.w-70{width: 70%;}
.col-33{flex: 0 0 31%;}

.services-wrapper{
    padding: 30px;
    border-radius: 16px;

    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 8px rgba(0,0,0,0.04),
        0 10px 24px rgba(0,0,0,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.services-wrapper h2{padding: 20px 0px;
    font-size: 22px;
    padding-bottom: 10px;}
.services-wrapper p{    color: #444a5f;
    padding-right: 20px;
    font-size: 15px;
    line-height: 19px;}

.services-svg{    width: 50px;
    height: 50px;
    padding: 8px;
    fill: #fff;
    border-radius: 5px;}

.services-wrapper .blue{    background: #1170e7;
}
.services-wrapper ul{list-style: none;
    margin: 0px;
    padding: 20px 0px; font-size: 14px;
}
.services-wrapper ul li{display: flex
;line-height: 28px;}
.services-wrapper ul li svg{    display: flex
;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    position: relative;
    top: 4px;}


.ui-tick{fill: none;
  stroke: #22c55e;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  flex-shrink: 0;}

/* spacing */
.wrap-gap {
  flex-wrap: wrap;
  gap: 16px;
}

/* item */
.item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* icon box */
.icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG styling */
.icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor; /* inherits text color */
  display: block;
}

/* default */
.trust-strip {
  display: none;
}
.features-desktop {
    display: flex;
    gap: 15px;
  }

.eyebrow{
   background: #0751b1;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;}
.hero-slide{color: var(--secondary-color);}
.hero-slide h1{    font-size: 58px; font-weight: 700; letter-spacing: -1px;
    line-height: 66px;
    padding-top: 20px;}
.hero-slide h1 span{ color:#2292f6;}
.hero-text{padding: 15px 0px; color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.9;
    }
.hero-slide svg{fill:#2292f6;height: auto; width: auto;}
.hero-slide .icon{width: 30px; height: 30px;}
.slide-features{padding: 10px 0px; font-size:18px;}
.slide-features p{color: #8694af; font-size: 14px;
    padding-top: 4px;}
.hero-actions{padding:20px 0px;}
.btn{padding:10px 20px; display: inline-block; text-align: center;
color:var(--secondary-color); border-radius: 5px; margin-right:20px;}
.primary-button{background: var(--main-buttons-bg); border:1px solid var(--main-buttons-bg);}
.outline-button{border: 1px solid #8694af;}
.right-gap-50{padding-right: 50px;}
.domain-input {
    padding: 0px 20px;
    width: 580px;
    height: 50px;
    margin: 0px;
    border: 1px solid #f1f3f5;
    border-radius: 5px;
    margin-right: 15px;
}
.domain-search h2{font-size: 20px;}
.domain-wrapper{background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 10px;
    padding: 40px 25px;}
.domain-form button{height: 50px}

.domain-card{border: 1px solid #f1f3f5;
    padding: 0px 25px;
    border-radius: 5px;
    margin: 0px 10px;}
.domain-pricing{padding: 20px 0px;}
.domain-pricing span{    border-right: 1px solid #f1f3f5;
    padding: 4px 0px;
    padding-right: 10px;
    display: inline-block;
    font-weight: 700;
    margin-right: 5px;}

.domain-search{position: relative;
    top: -76px; overflow: hidden;}

.vps-btn{display: block;
    padding: 15px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #252651; font-weight: 600;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 8px rgba(0,0,0,0.04),
        0 10px 24px rgba(0,0,0,0.06);
    position: relative;
    text-align: center;}
.vps-btn-icon{    fill: none;
    stroke: #142986;
    stroke-width: 2;
    stroke-miterlimit: 10;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 25px;
    top: 5px;}


.vps-btn,
.vps-btn-icon{
    transition: .3s ease;
}

.vps-btn:hover{
    transform: translateY(-3px);
box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 8px rgba(0,0,0,0.04),
        0 10px 24px rgba(0,0,0,0.06);    background: #1451ec;
    color: #fff;
}

.vps-btn:hover .vps-btn-icon{
    transform: translateX(5px);
     stroke: #fff;
}

.services-price{padding: 10px 0px; font-size: 24px; color: #114fec; font-weight: 600; padding-bottom: 20px;}
.startingat, .services-price span{font-size: 14px;color: #7e8396; font-weight: normal;}


.vps-pricing-section{
   padding:80px 0;
}

.section-heading h2{
   text-align:center;
   font-size:42px;
   font-weight:700;
   margin-bottom:40px;
   color:#0b1b5c;
}

.pricing-topbar{
   display:flex;
   justify-content:space-between;
   align-items:center;
   gap:20px;
   margin-bottom:40px;
   flex-wrap:wrap;
}

.location-tabs{
   display:flex;
   gap:12px;
   flex-wrap:wrap;
}

.location-tab{
   border:1px solid #dbe4ff;
   background:#fff;
   padding:12px 22px;
   border-radius:12px;
   font-size:15px;
   font-weight:600;
   cursor:pointer;
   transition:0.3s ease;
}

.location-tab.active,
.location-tab:hover{
   background:#2563ff;
   color:#fff;
   border-color:#2563ff;
}

.view-locations a{
   text-decoration:none;
   color:#2563ff;
   font-weight:600;
}

.pricing-grid{
      display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing-card{
   background:#fff;
   border-radius:20px;
   padding:35px 30px;
   box-shadow:0 5px 20px rgba(0,0,0,0.05);
   position:relative;
   transition:0.3s ease;
   flex: 0 0 23%;
}

.pricing-card:hover{
   transform:translateY(-5px);
}

.pricing-card.featured{
   border:2px solid #2563ff;
}

.popular-badge{
   position:absolute;
   top:-12px;
   left:50%;
   transform:translateX(-50%);
   background:#2563ff;
   color:#fff;
   font-size:13px;
   padding:6px 14px;
   border-radius:30px;
   font-weight:600;
}

.pricing-card h3{
   font-size:28px;
   margin-bottom:18px;
   color:#0b1b5c;
}

.price{
   font-size:48px;
   font-weight:700;
   color:#0b1b5c;
   margin-bottom:25px;
}

.price span{
   font-size:18px;
   color:#6b7280;
}

.pricing-card ul{
   list-style:none;
   padding:0;
   margin:0 0 30px;
}

.pricing-card ul li{
   padding:10px 0;
   border-bottom:1px solid #edf2ff;
   color:#374151;
   font-size:15px;
}

.pricing-btn{
   display:block;
   width:100%;
   text-align:center;
   background:#2563ff;
   color:#fff;
   text-decoration:none;
   padding:14px;
   border-radius:12px;
   font-weight:600;
   transition:0.3s ease;
}

.pricing-btn:hover{
   background:#0b49e6;
}

@media(max-width:1200px){
   .pricing-grid{
      grid-template-columns:repeat(2,1fr);
   }
}

@media(max-width:768px){
  .hero-actions {
    padding: 20px 0px;
    display: block;
}
.action-button-m{margin-bottom: 20px;}
  .hero-slide .icon{margin: 0px auto;}
  .item{display: block; text-align: center;}
  .features-mobile{overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 26px;
        padding: 20px 0px;flex-wrap: nowrap;}
        .col-fluid {
   
    gap: 8px;
   
    flex: 0 0 35%;
}
.right-gap-50{padding-right: 0;}
   .pricing-grid{
    overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
   }
   .pricing-card{flex: 0 0 75%;}

   .section-heading h2{
      font-size:32px;
   }

   .pricing-topbar{
      flex-direction:column;
      align-items:flex-start;
   }

}



/* =========================
GENERAL
========================= */

.container{
   width:90%;
   max-width:1400px;
   margin:auto;
}


/* =========================
TRUST SECTION
========================= */

.trust-vpscore{
   position:relative;
   background:#011843;
   padding:120px 0;
   overflow:hidden;
}

.trust-grid{
   display:grid;
   grid-template-columns:1.1fr 450px;
   gap:70px;
   align-items:center;
   position:relative;
   z-index:5;
}

.trust-badge{
   display:inline-block;
   padding:10px 18px;
   border-radius:50px;
   background:rgba(255,255,255,0.08);
   border:1px solid rgba(255,255,255,0.1);
   color:#8db8ff;
   font-size:14px;
   font-weight:600;
   margin-bottom:25px;
}

.trust-content h2{
   color:#fff;
   font-size:58px;
   line-height:1.1;
   margin-bottom:25px;
   font-weight:700;
   letter-spacing:-2px;
}

.trust-content p{
   color:rgba(255,255,255,0.72);
   font-size:18px;
   line-height:1.9;
   margin-bottom:45px;
   max-width:700px;
}

.trust-features{
   display:flex;
   flex-direction:column;
   gap:28px;
   margin-bottom:45px;
}

.trust-feature{
   display:flex;
   gap:20px;
   align-items:flex-start;
}

.trust-icon{
   width:24px;
   height:24px;
   min-width:24px;
   fill:#3b82f6;
   margin-top:4px;
}

.trust-feature h3{
   color:#fff;
   font-size:20px;
   margin-bottom:8px;
}

.trust-feature span{
   color:rgba(255,255,255,0.65);
   line-height:1.8;
   font-size:15px;
}

.trust-btn{
   display:inline-flex;
   align-items:center;
   gap:12px;
   text-decoration:none;
   background:#2563ff;
   color:#fff;
   padding:16px 28px;
   border-radius:14px;
   font-weight:600;
   transition:0.3s ease;
}

.trust-btn:hover{
   background:#3b82f6;
   transform:translateY(-2px);
}

.trust-btn-icon{
   width:18px;
   height:18px;
   fill:#fff;
}


/* =========================
STATS
========================= */

.trust-stats-wrapper{
   display:grid;
   grid-template-columns:repeat(2,1fr);
   gap:24px;
}

.trust-stat-card{
   position:relative;
   overflow:hidden;
   padding:40px 30px;
   border-radius:26px;
   background:rgba(255,255,255,0.06);
   border:1px solid rgba(255,255,255,0.08);
   backdrop-filter:blur(14px);
   transition:0.4s ease;
}

.trust-stat-card:hover{
   transform:translateY(-8px);
   border-color:rgba(59,130,246,0.35);
   box-shadow:
      0 10px 40px rgba(0,0,0,0.25),
      0 0 40px rgba(37,99,255,0.12);
}

.stat-glow{
   position:absolute;
   width:140px;
   height:140px;
   border-radius:50%;
   background:rgba(37,99,255,0.15);
   top:-60px;
   right:-60px;
}

.trust-stat-card h3{
   position:relative;
   z-index:2;
   color:#fff;
   font-size:40px;
   line-height:1;
   margin-bottom:14px;
   font-weight:700;
   letter-spacing:-2px;
}

.trust-stat-card p{
   position:relative;
   z-index:2;
   color:rgba(255,255,255,0.7);
   font-size:15px;
   line-height:1.8;
}

.trust-stat-card:nth-child(1){
   animation:floatCard 5s ease-in-out infinite;
}

.trust-stat-card:nth-child(2){
   animation:floatCard 6s ease-in-out infinite;
}

.trust-stat-card:nth-child(3){
   animation:floatCard 7s ease-in-out infinite;
}

.trust-stat-card:nth-child(4){
   animation:floatCard 5.5s ease-in-out infinite;
}

@keyframes floatCard{

   0%{
      transform:translateY(0px);
   }

   50%{
      transform:translateY(-8px);
   }

   100%{
      transform:translateY(0px);
   }

}


/* =========================
BACKGROUND GLOW
========================= */

.trust-glow{
   position:absolute;
   border-radius:50%;
   filter:blur(120px);
}

.trust-glow-1{
   width:320px;
   height:320px;
   background:#2563ff;
   top:-100px;
   left:-80px;
   opacity:0.22;
}

.trust-glow-2{
   width:380px;
   height:380px;
   background:#00bfff;
   bottom:-120px;
   right:-120px;
   opacity:0.18;
}


/* =========================
FAQ SECTION
========================= */

.faq-section{
   padding:110px 0;
   background:#f8fbff;
}

.faq-heading{
   display:flex;
   justify-content:space-between;
   align-items:center;
   margin-bottom:55px;
}

.faq-heading h2{
   font-size:62px;
   line-height:1.1;
   color:#011843;
   letter-spacing:-2px;
}

.faq-heading a{
   display:flex;
   align-items:center;
   gap:10px;
   text-decoration:none;
   color:#2563ff;
   font-weight:600;
}

.faq-heading a svg{
   width:15px;
   height:15px;
   fill:#2563ff;
}

.faq-grid{
   display:grid;
   grid-template-columns:repeat(1,1fr);
   gap:26px;
   align-items:start;
}

.faq-item{
   background:#fff;
   border:1px solid #dbe6ff;
   border-radius:24px;
   overflow:hidden;
   transition:0.3s ease;
      align-self:start;

}

.faq-item.active{
   border-color:#2563ff;
   box-shadow:0 10px 30px rgba(37,99,255,0.08);
}

.faq-question{
   width:100%;
   background:none;
   border:none;
   padding:30px 35px;
   display:flex;
   justify-content:space-between;
   align-items:center;
   text-align:left;
   cursor:pointer;
   font-size:18px;
   line-height:1.6;
   font-weight:700;
   color:#011843;
}

.faq-icon{
   width:18px;
   height:18px;
   min-width:18px;
   fill:#2563ff;
   transition:0.3s ease;
}

.faq-item.active .faq-icon{
   transform:rotate(45deg);
}

.faq-answer{
   display:none;
   padding:0 35px 35px;
   color:#64748b;
   line-height:1.9;
   font-size:16px;
}

.faq-item.active .faq-answer{
   display:block;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

   .trust-grid{
      grid-template-columns:1fr;
   }

   .trust-content h2{
      font-size:44px;
   }

}

@media(max-width:768px){

   .trust-vpscore{
      padding:90px 0;
   }

   .trust-content h2{
      font-size:36px;
   }

   .trust-content p{
      font-size:16px;
   }

   .trust-stats-wrapper{
      grid-template-columns:1fr;
   }

   .faq-grid{
      grid-template-columns:1fr;
   }

   .faq-heading{
      flex-direction:column;
      align-items:flex-start;
      gap:15px;
   }

   .faq-heading h2{
      font-size:40px;
   }

}

.powerful-features{padding: 80px 0; background: #fff;}
/* FEATURES */

.features-grid{
   display:grid;
   grid-template-columns:repeat(3,1fr);
   gap:0;
}

.feature-box{
  
   padding:30px;
   text-align:center;
  
}

.feature-box {
   border-right: 1px solid #ddd;
   border-top: 1px solid #ddd;
}

/* Remove top border for first row (1–3) */
.feature-box:nth-child(-n+3) {
   border-top: none;
}

/* Remove right border for every 3rd item */
.feature-box:nth-child(3n) {
   border-right: none;
}

.feature-icon{
   width:70px;
   height:70px;
   margin:auto auto 20px;
   border-radius:18px;
   background:#f4f7ff;
   display:flex;
   align-items:center;
   justify-content:center;
}

.feature-icon svg{
   width:34px;
   height:34px;
       fill: #2463ff;
}

.feature-box h3{
   font-size:18px;
   margin-bottom:12px;
}

.feature-box p{
   color:#6b7280;
   font-size:14px;
   line-height:1.6;
}



/* LOGOS */

.partner-logos{
   padding-top:20px;
}

.logos-grid{
   display:grid;
   grid-template-columns:repeat(5,1fr);
   gap:30px;
   align-items:center;
}

.logo-box{
   background:#fff;
   border-radius:18px;
   padding:30px;
   text-align:center;
   font-size:28px;
   font-weight:700;
   color:#94a3b8;
   box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

.ui-network{fill:#2463ff;}
.ui-storage{fill: none!important; stroke:#2463ff;}
@media(max-width:1200px){

   .features-grid{
      grid-template-columns:repeat(3,1fr);
   }

}



/* =========================
   FOOTER
========================= */

.footer{
  background:
    radial-gradient(circle at top right, rgba(49,108,255,0.18), transparent 25%),
    linear-gradient(180deg,#04142f 0%, #020b18 100%);
  color:#fff;
  overflow:hidden;
  position:relative;
}

/* =========================
   CTA
========================= */

.footer-cta{
  position:relative;
  padding:90px 8%;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.footer-cta-content{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  max-width:1400px;
  margin:auto;
}

.footer-badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(72,125,255,0.15);
  border:1px solid rgba(110,154,255,0.25);
  color:#8eb7ff;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
  backdrop-filter:blur(10px);
}

.footer-cta-text h2{
  font-size:clamp(36px,4vw,62px);
  line-height:1.1;
  margin-bottom:18px;
  letter-spacing:-2px;
}

.footer-cta-text p{
  color:rgba(255,255,255,0.72);
  max-width:560px;
  font-size:18px;
  line-height:1.7;
}

.footer-cta-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  height:58px;
  padding:0 28px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight:600;
  transition:0.35s ease;
  white-space:nowrap;
}

.btn-primary{
  background:linear-gradient(135deg,#2f6dff,#4b8dff);
  color:#fff;
  box-shadow:
    0 15px 40px rgba(45,110,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:
    0 25px 60px rgba(45,110,255,0.35);
}

.btn-primary span{
  transition:0.3s ease;
}

.btn-primary:hover span{
  transform:translateX(4px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:#fff;
  backdrop-filter:blur(10px);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-4px);
}

/* Glow */

.rocket-glow{
  position:absolute;
  top:-150px;
  right:-150px;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(46,108,255,0.25), transparent 70%);
  pointer-events:none;
}

/* =========================
   MAIN FOOTER
========================= */

.footer-main{
  padding:80px 8% 35px;
}

.footer-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr repeat(4,1fr);
  gap:70px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  font-size:28px;
  font-weight:700;
  margin-bottom:24px;
}

.logo-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,#2d6cff,#5aa8ff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  box-shadow:0 10px 25px rgba(48,110,255,0.35);
}

.footer-brand p{
  color:rgba(255,255,255,0.68);
  line-height:1.9;
  max-width:360px;
  margin-bottom:28px;
}

/* Socials */

.socials{
  display:flex;
  gap:14px;
}

.socials a{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.35s ease;
  backdrop-filter:blur(10px);
}

.socials a svg{
  width:19px;
  height:19px;
}

.socials a:hover{
  transform:translateY(-5px);
  background:linear-gradient(135deg,#2d6cff,#4c8dff);
  border-color:transparent;
  box-shadow:0 18px 40px rgba(47,109,255,0.35);
}

/* Links */

.footer-links h4{
  font-size:18px;
  margin-bottom:26px;
  color:#fff;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  position:relative;
  width:fit-content;
  color:rgba(255,255,255,0.68);
  text-decoration:none;
  margin-bottom:16px;
  transition:0.3s ease;
}

.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:1px;
  background:#6da4ff;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#fff;
  transform:translateX(4px);
}

.footer-links a:hover::after{
  width:100%;
}

/* Bottom */

.footer-bottom{
  max-width:1400px;
  margin:auto;
  margin-top:70px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:rgba(255,255,255,0.55);
}

.footer-bottom-links{
  display:flex;
  gap:28px;
}

.footer-bottom-links a{
  color:rgba(255,255,255,0.55);
  text-decoration:none;
  transition:0.3s ease;
}

.footer-bottom-links a:hover{
  color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .footer-grid{
    grid-template-columns:1fr 1fr 1fr;
  }

  .footer-brand{
    grid-column:1/-1;
  }

  .footer-cta-content{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:768px){
.feature-box {
  border: 0px;
   border-top: 1px solid #ddd;
}

/* Remove top border for first row (1–3) */
.feature-box:nth-child(-n+3) {
   border-top: 1px solid #ddd;
}

.feature-box:first-child{
   border-top: none;
}
/* Remove right border for every 3rd item */
.feature-box:nth-child(3n) {
   border-right: none;
}
  .footer{
    text-align:left;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:50px;
  }

  .footer-main{
    padding-top:60px;
  }

  .footer-cta{
    padding:70px 8%;
  }

  .footer-cta-text h2{
    letter-spacing:-1px;
  }

  .btn{
    width:100%;
  }

  .footer-cta-buttons{
    width:100%;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:540px){

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom-links{
    flex-direction:column;
    gap:14px;
  }

  .socials{
    flex-wrap:wrap;
  }
}


/* TABLET */
@media(max-width:768px){
  .mobile-noflex{display: block;}
  .w-30, .w-70, .col-33{flex: 0 0 100%;width: 100%;}
  .domain-input {
    margin-top: 20px;
    margin-bottom: 20px;
}
.location-tabs {
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}
.location-tab{flex: 0 0 17%;}
.heading-wrapper{max-width: 100%;}
.main-heading h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -2px;
 
}
.domain-wrapper{padding-bottom: 0px;}
.domain-pricing {
    padding: 20px 0px;
    align-items: center;
    justify-content: space-around;
    align-items: center;
   
}

.domain-card {
   
    flex: 0 0 47%;
   margin: 0px;
    margin-bottom: 13px;
   
}

  .testimonial{
      padding:35px 25px;
   }

   .testimonial p{
      font-size:17px;
   }

  .features-grid,
   .faq-grid,
   .logos-grid{
      grid-template-columns:1fr;
   }
  .topbar .align-left{    text-align: center;}
  .flex{display: block;}
  .w-50 {
  width: 100%;
}
   .features-desktop {
    display: none;
  }

  .trust-strip {
    display: block;
    font-size: 12px;
    text-align: center;
  }
  .trust-strip span{padding:0px 5px;}
.mobile-nodisplay{display: none;}


}

/* DESKTOP */
@media(max-width:1024px){
 
}


/* =========================================
PREMIUM VPS HERO ANIMATION
Background Compatible: #011843
========================================= */

.vps-visual-wrap{
   position:relative;

   width:100%;
   

   display:flex;
   align-items:center;
   justify-content:center;

}

/* =========================================
BACKGROUND GLOW
========================================= */

.vps-ring{
   position:absolute;
   border-radius:50%;
   filter:blur(90px);
   z-index:0;
}

.ring-1{
   width:320px;
   height:320px;

   background:rgba(0,140,255,0.18);

   top:40px;
   right:80px;
}

.ring-2{
   width:260px;
   height:260px;

   background:rgba(0,255,200,0.12);

   bottom:40px;
   left:60px;
}

/* =========================================
MAIN PANEL
========================================= */

.infra-panel{
   position:relative;
   z-index:2;

   width:100%;
   max-width:620px;

   padding:34px;

   border-radius:34px;

   background:linear-gradient(145deg, rgb(2 23 67), rgb(255 255 255 / 2%));

   border:1px solid rgba(255,255,255,0.08);

   backdrop-filter:blur(18px);

   box-shadow:
   0 40px 80px rgba(0,0,0,0.35),
   inset 0 1px 0 rgba(255,255,255,0.04);

   animation:floatPanel 7s ease-in-out infinite;
}

/* =========================================
TOP BAR
========================================= */

.infra-top{
   display:flex;
   align-items:center;
   justify-content:space-between;

   margin-bottom:38px;
}

.infra-logo{
   font-size:34px;
   font-weight:800;
   letter-spacing:1px;
   color:#fff;
}

.infra-status{
   display:flex;
   gap:10px;
}

.infra-status span{
   width:14px;
   height:14px;

   border-radius:50%;

   background:rgba(255,255,255,0.12);
}

/* =========================================
CENTER GRID
========================================= */

.infra-center{
   display:grid;
   grid-template-columns:1fr 250px;
   gap:24px;
}

/* =========================================
LEFT BOX
========================================= */

.speed-box{
   position:relative;

   padding:34px;

   border-radius:28px;

   background:linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
   );

   border:1px solid rgba(255,255,255,0.08);

   overflow:hidden;
}

.speed-box::before{
   content:"";

   position:absolute;

   width:180px;
   height:180px;

   background:
   radial-gradient(
      circle,
      rgba(255,255,255,0.12),
      transparent 70%
   );

   top:-80px;
   right:-80px;
}

.speed-box small{
   color:rgba(255,255,255,0.68);
   font-size:15px;
}

.speed-box h3{
   font-size:64px;
   line-height:1;

   margin:14px 0 18px;

   font-weight:800;

   color:#fff;
}

.speed-box p{
   color:rgba(255,255,255,0.66);

   line-height:1.7;
   font-size:15px;
}

/* =========================================
FLOATING TAG
========================================= */

.floating-tag{
   position:absolute;

   bottom:14px;
   right:20px;

   padding:10px 14px;

   border-radius:50px;

   background:
   linear-gradient(
      145deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.04)
   );

   border:1px solid rgba(255,255,255,0.08);

   font-size:13px;
   font-weight:600;

   color:#fff;

   animation:tagFloat 4s ease-in-out infinite;
}

/* =========================================
MONITOR BOX
========================================= */

.monitor-box{
   padding:28px;

   border-radius:28px;

   background:
   linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
   );

   border:1px solid rgba(255,255,255,0.08);
}

.monitor-head{
   display:flex;
   align-items:center;
   gap:10px;

   margin-bottom:26px;

   color:rgba(255,255,255,0.8);

   font-size:15px;
}

.dot{
   width:10px;
   height:10px;

   border-radius:50%;

   background:#00ffbf;

   box-shadow:0 0 18px #00ffbf;
}

/* =========================================
CHART BARS
========================================= */

.chart-bars{
   height:130px;

   display:flex;
   align-items:flex-end;
   gap:12px;

   margin-bottom:24px;
}

.chart-bars span{
   flex:1;

   border-radius:30px 30px 10px 10px;

   background:
   linear-gradient(
      to top,
      #00ffc3,
      rgba(0,255,195,0.12)
   );

   animation:bars 2.8s ease-in-out infinite;
}

.chart-bars span:nth-child(1){height:28%;}
.chart-bars span:nth-child(2){height:48%;}
.chart-bars span:nth-child(3){height:78%;}
.chart-bars span:nth-child(4){height:58%;}
.chart-bars span:nth-child(5){height:92%;}

.monitor-box strong{
   font-size:32px;
   font-weight:700;

   color:#fff;
}

/* =========================================
BOTTOM
========================================= */

.infra-bottom{
   margin-top:26px;

   display:flex;
   gap:18px;
}

.bottom-card{
   flex:1;

   padding:20px 22px;

   border-radius:20px;

   background:
   linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
   );

   border:1px solid rgba(255,255,255,0.06);

   color:rgba(255,255,255,0.92);

   font-weight:600;

   display:flex;
   align-items:center;
   gap:12px;
}

.managed{
   justify-content:center;
}

/* =========================================
PULSE
========================================= */

.pulse{
   width:12px;
   height:12px;

   border-radius:50%;

   background:#00ffbf;

   animation:pulse 2s infinite;
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes floatPanel{

   0%,100%{
      transform:translateY(0px);
   }

   50%{
      transform:translateY(-12px);
   }

}

@keyframes pulse{

   0%{
      box-shadow:0 0 0 0 rgba(0,255,191,0.7);
   }

   70%{
      box-shadow:0 0 0 14px rgba(0,255,191,0);
   }

   100%{
      box-shadow:0 0 0 0 rgba(0,255,191,0);
   }

}

@keyframes bars{

   0%,100%{
      transform:scaleY(1);
   }

   50%{
      transform:scaleY(1.12);
   }

}

@keyframes tagFloat{

   0%,100%{
      transform:translateY(0px);
   }

   50%{
      transform:translateY(-8px);
   }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

   .vps-visual-wrap{
      min-height:auto;
      margin-top:40px;
   }

   .infra-center{
      grid-template-columns:1fr;
   }

}

@media(max-width:767px){

   .infra-panel{
      padding:24px;
      border-radius:24px;
   }

   .speed-box{
      padding:28px;
   }

   .speed-box h3{
      font-size:48px;
   }

   .monitor-box strong{
      font-size:26px;
   }

   .infra-bottom{
      flex-direction:column;
   }

   .floating-tag{
      position:relative;
      top:auto;
      right:auto;

      margin-top:18px;
      display:inline-flex;
   }

}

/* =========================================
BUILT USE CASES
========================================= */

.built-use-cases {
  background: #f8fafc;
}

.built-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.built-use-cases-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.built-use-cases-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37,99,235,.08),
    transparent
  );
  opacity: 0;
  transition: .35s ease;
}

.built-use-cases-card:hover::before {
  opacity: 1;
}

.built-use-cases-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb30;
  box-shadow: 0 20px 50px rgba(37,99,235,.08);
}

.built-use-cases-icon {
  width: 72px;
  height: 72px;
  margin: auto auto 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,.08);
  font-size: 30px;
}

.built-use-cases-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.built-use-cases-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
WHY CHOOSE US
========================================= */

.sections-why-us {
  background: #fff;
}

.sections-why-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sections-why-us-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #0f172a;
}

.sections-why-us-content h2 span {
  color: #2563eb;
}

.sections-why-us-text {
  color: #64748b;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 30px;
}

.sections-why-us-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sections-why-us-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #0f172a;
  font-weight: 500;
}

.sections-why-us-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sections-dashboard-wrap {
  position: relative;
}

.sections-dashboard-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(37,99,235,.18);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dashboardGlow 5s infinite ease-in-out;
}

@keyframes dashboardGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.sections-dashboard {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 26px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  box-shadow: 0 30px 70px rgba(15,23,42,.08);
  animation: dashboardFloat 4s infinite ease-in-out;
}

@keyframes dashboardFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.sections-dashboard-sidebar {
  width: 110px;
  background: linear-gradient(180deg,#2563eb,#1d4ed8);
  padding: 28px 20px;
}

.sections-dashboard-sidebar span {
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 30px;
  background: rgba(255,255,255,.3);
  margin-bottom: 18px;
}

.sections-dashboard-main {
  flex: 1;
  padding: 30px;
}

.sections-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.sections-dashboard-stat {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
}

.sections-dashboard-stat small {
  display: block;
  color: #64748b;
  margin-bottom: 10px;
}

.sections-dashboard-stat h3 {
  font-size: 30px;
  color: #2563eb;
}

.sections-dashboard-graph {
  height: 180px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.sections-dashboard-graph svg {
  width: 100%;
  height: 100%;
}

.sections-dashboard-graph path {
  fill: none;
  stroke: #2563eb;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: graphLine 5s linear infinite;
}

@keyframes graphLine {
  to {
    stroke-dashoffset: 0;
  }
}


/* =========================================
TESTIMONIALS
========================================= */

.sections-testimonials {
  background: #f8fafc;
}

.sections-testimonials-slider {
  overflow: hidden;
  position: relative;
}

.sections-testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform .6s ease;
}

.sections-testimonial-card {
  min-width: calc(33.333% - 18px);
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(15,23,42,.04);
}

.sections-testimonial-card p {
  color: #334155;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
}

.sections-testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sections-testimonial-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.sections-testimonial-user h4 {
  font-size: 18px;
  margin-bottom: 3px;
  color: #0f172a;
}

.sections-testimonial-user span {
  color: #64748b;
  font-size: 14px;
}


/* =========================================
COMPARE TABLE
========================================= */

.sections-compare {
  background: #fff;
}

.sections-compare-wrapper {
  overflow-x: auto;
  border-radius: 26px;
  border: 1px solid #e5e7eb;
}

.sections-compare-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  background: #fff;
}

.sections-compare-table th,
.sections-compare-table td {
  padding: 22px;
  border-bottom: 1px solid #eef2f7;
  text-align: center;
  font-size: 15px;
}

.sections-compare-table th:first-child,
.sections-compare-table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 2;
  text-align: left;
  min-width: 180px;
  font-weight: 700;
  color: #0f172a;
  border-right: 1px solid #eef2f7;
}

.sections-compare-table th {
  background: #f8fafc;
  font-size: 16px;
  color: #0f172a;
}

.sections-compare-highlight {
  background: linear-gradient(
    180deg,
    #2563eb,
    #1d4ed8
  );
  color: #fff !important;
}


/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .built-use-cases-grid {
    grid-template-columns: repeat(3,1fr);
  }

}

@media (max-width: 991px) {

  .sections-space {
    padding: 70px 0;
  }

  .sections-heading h2 {
    font-size: 34px;
  }

  .sections-why-us-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sections-testimonial-card {
    min-width: calc(50% - 14px);
  }

}
.sections-space{padding: 80px 0;}

/* =========================================
HIGHLIGHT VPS MART COLUMN
========================================= */

.sections-compare-table th:nth-child(2) {
  background: linear-gradient(
    180deg,
    #2563eb,
    #1d4ed8
  );
  color: #fff;
  position: relative;
  z-index: 2;
}

.sections-compare-table td:nth-child(2) {
  background: rgba(37,99,235,.05);
  color: #2563eb;
  font-weight: 700;
  position: relative;
}

.sections-compare-table th:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,.15);
  pointer-events: none;
}

.sections-compare-table th:nth-child(2),
.sections-compare-table td:nth-child(2) {
  border-left: 2px solid #2563eb;
  border-right: 2px solid #2563eb;
}

.sections-compare-table tbody tr:first-child td:nth-child(2) {
  border-top: 2px solid #2563eb;
}

.sections-compare-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid #2563eb;
  border-radius: 0 0 18px 18px;
}

/* OPTIONAL HOVER EFFECT */

.sections-compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(37,99,235,.09);
}

@media (max-width: 767px) {

  .sections-heading h2 {
    font-size: 28px;
  }

  .built-use-cases-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .built-use-cases-grid::-webkit-scrollbar {
    height: 4px;
  }

  .built-use-cases-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 30px;
  }

  .built-use-cases-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
  .sections-dashboard {
    flex-direction: column;
  }

  .sections-dashboard-sidebar {
    width: 100%;
    display: flex;
    gap: 12px;
    padding: 18px;
  }

  .sections-dashboard-sidebar span {
    margin: 0;
    height: 10px;
  }

  .sections-dashboard-main {
    padding: 20px;
  }

  .sections-dashboard-stats {
    grid-template-columns: 1fr;
  }

  .sections-testimonial-card {
    min-width: 100%;
  }

  .sections-compare-wrapper {
    overflow-x: auto;
  }

}
  