:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #213b52;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fdc134;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --accent-blue: #0090B8;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #e7f4ff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #fdc134;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fdc134;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #223b51;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #315575;
  --contrast-color: #223b51;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
  color: #00e5ff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.offering-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.offering-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  font-size: 1.8rem;
  color: #0d6efd;
  transition: background 0.3s ease, color 0.3s ease;
}

.offering-item:hover .icon-box {
  background: #0d6efd;
  color: #fff;
}

.offering-link {
  padding: 1.2rem;
  display: flex;
  align-items: start;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.offering-item:hover .learn-more {
  color: #0a58ca;
  transform: translateX(3px);
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
/* .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  /* background-color: var(--background-color); */
  /* background: var(--dark); */
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  /* font-weight: 700; */
  font-weight: bold;
  /* color: var(--heading-color); */
  /* color: var(--primary-dark); */
  /* color: var(--accent); */
  color: var(--color-dark);
  /* color: var(--gradient-primary); */
}

/* .header .logo h1:hover {
  color: #00e5ff;
} */

.header .logo span {
  /* color: var(--accent-color); */
  color: #044d61;
  font-size: 40px;
  font-weight: 700;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  /* color: var(--contrast-color); */
  color: var(--primary-dark);
  font-size: 14px;
  padding: 6px 30px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
  /* border: 2px solid var(--accent-color); */
  border: 2px solid #0090B8;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  /* background-color: var(--primary-dark); */
  background-color: var(--primary);
  border: 2px solid var(--primary);
  /* background: var(--accent-color); */
}

.header .navmenu a,
.navmenu a:focus {
  color: var(--color-dark);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  /* --background-color: rgba(34, 59, 81, 0.9); */
  background: var(--dark) !important;
}

.scrolled .header .logo h1 {
  color: white;
}

.scrolled .header .navmenu a,
.navmenu a:focus {
  color: white;
}


.scrolled .navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: #00D4FF;
}


.scrolled .header .btn-getstarted,
.header .btn-getstarted:focus {
  border: 2px solid white;
  color: white;
}

.scrolled .header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: #00D4FF;
  color: white;
  border: 2px solid #00D4FF;

}

.scrolled .header .logo span {
  /* color: var(--accent-color); */
  color: #00D4FF;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    /* color: var(--nav-color); */
    color: var(--primary-dark);
    padding: 18px 15px;
    font-size: 16px;
    /* font-family: var(--nav-font); */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-hover-color); */
    /* color: #00B4D8; */
    color: #0077A8;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    /* background: var(--nav-dropdown-background-color); */
    background: var(--primary-dark);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--primary-dark);
    /* color: var(--nav-dropdown-color); */

  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    /* color: var(--nav-dropdown-hover-color); */
    color: #0A1628;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .scrolled .mobile-nav-toggle {
    color: white;
  }

  .mobile-nav-toggle {
    /* color: var(--nav-color); */
    color: var(--accent);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-dropdown-hover-color); */
    color: #00B4D8;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    /* background-color: var(--accent-color); */
    /* color: var(--contrast-color); */
    color: #00B4D8;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 40px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

}

/* @media (max-width: 992px){
  
} */

@media (max-width: 768px) {
  .header .logo h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .header .logo h1 {
    font-size: 34px;

  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* .footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") center center no-repeat;
  background-size: cover;
  font-size: 14px;
  text-align: center;
  padding: 60px 0 30px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .container {
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 14px;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 10px;
  border-radius: 50%;
  padding: 8px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */




/* ══════════════════════════
   PRELOADER
══════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  /* background: radial-gradient(ellipse at center, #0a1f42 0%, #020d1f 70%, #000 100%); */
  background: radial-gradient(ellipse at center, #0077A8 0%, #004E6A 60%, #001A26 100%);
  /* background: radial-gradient(
  ellipse at center,
  var(--accent) 0%,
  var(--primary-dark) 60%,
  #001A26 100%
); */

  /* background: radial-gradient(
  ellipse at center,
  #00B4D8 0%,
  #0077A8 55%,
  #002D3F 100%
); */

  /* background: linear-gradient(90deg, rgba(255, 255, 255, 0), #00B4D8, rgba(255, 255, 255, 0)); */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#preloader-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pre-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 2s) ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.1;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* shooting stars */
.shooting-star {
  position: absolute;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #6EA8FE, rgba(255, 255, 255, 0));
  border-radius: 100px;
  animation: shoot var(--sdur, 1.2s) ease-in forwards;
  opacity: 0;
}

@keyframes shoot {
  0% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(300px) translateY(100px);
  }
}

.pre-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.pre-logo {
  width: 110px;
  height: auto;
  z-index: 2;
  position: relative;
  animation: logoPulse 2.5s ease-in-out infinite;
  /* filter: drop-shadow(0 0 18px rgba(110, 168, 254, 0.55)); */
  filter: drop-shadow(0 0 18px rgba(0, 180, 216, 0.6));
}

@keyframes logoPulse {

  0%,
  100% {
    /* filter: drop-shadow(0 0 18px rgba(110, 168, 254, 0.55)); */
    filter: drop-shadow(0 0 18px rgba(0, 180, 216, 0.6));
  }

  50% {
    /* filter: drop-shadow(0 0 32px rgba(110, 168, 254, 0.9)); */
    filter: drop-shadow(0 0 32px rgba(0, 180, 216, 0.9));
  }
}

.pre-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.pre-ring-1 {
  border: 2px solid transparent;
  /* border-top: 2px solid #6EA8FE;
    border-right: 2px solid #6EA8FE; */
  border-top: 2px solid #00B4D8;
  border-right: 2px solid #00B4D8;
  animation: spin1 2.2s linear infinite;
}

.pre-ring-2 {
  inset: 12px;
  border: 1.5px solid transparent;
  /* border-bottom: 1.5px solid #d4af37;
  border-left: 1.5px solid #d4af37; */
  border-bottom: 1.5px solid #0077A8;
  border-left: 1.5px solid #0077A8;
  animation: spin2 3s linear infinite;
}

.pre-ring-3 {
  inset: 26px;
  /* border: 1px dashed rgba(110, 168, 254, 0.3); */
  border: 1px dashed rgba(0, 180, 216, 0.35);
  animation: spin3 8s linear infinite;
}

@keyframes spin1 {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin2 {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes spin3 {
  to {
    transform: rotate(360deg);
  }
}

/* Glow dot on ring */
.pre-ring-1::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  /* background: #6EA8FE;
  box-shadow: 0 0 12px 4px rgba(110, 168, 254, 0.8); */
  background: #00B4D8;
  box-shadow: 0 0 12px 4px rgba(0, 180, 216, 0.8);
  transform: translateX(-50%);
}

.pre-ring-2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 30%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  /* background: #d4af37;
  box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.8); */
  background: #0077A8;
  box-shadow: 0 0 10px 3px rgba(0, 119, 168, 0.8);
}

.pre-tagline {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeFlicker 2s ease-in-out infinite alternate;
}

@keyframes fadeFlicker {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.pre-progress-bar-wrap {
  width: 260px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.pre-progress-bar {
  height: 100%;
  width: 0%;
  /* background: linear-gradient(90deg, #0A58CA, #6EA8FE, #d4af37); */
  background: linear-gradient(90deg, #0077A8, #00B4D8, #00D4FF);
  border-radius: 10px;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(110, 168, 254, 0.8);
}

.pre-pct {
  font-size: 13px;
  font-weight: 700;
  /* color: #6EA8FE; */
  color: #00B4D8;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pre-status {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pre-dots span {
  animation: dotBlink 1.2s infinite;
  display: inline-block;
  width: 4px;
  height: 4px;
  /* background: rgba(110, 168, 254, 0.7); */
  background: rgba(0, 180, 216, 0.7);
  border-radius: 50;
  margin: 0 2px;
  border-radius: 50%;
}

.pre-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.pre-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBlink {

  0%,
  80%,
  100% {
    opacity: 0.2;
  }

  40% {
    opacity: 1;
  }
}

/* Exit animation */
#preloader.exit {
  animation: preloaderExit 0.8s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes preloaderExit {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: 1;
    transform: scale(1.04);
  }

  100% {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
  }
}

/* .pre-star{
box-shadow:0 0 6px rgba(0,180,216,0.8);
} */








/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-blue) !important;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}





:root {
  --primary: #00B4D8;
  --primary-dark: #0090B8;
  --primary-light: #E0F7FC;
  --accent: #0077A8;
  --secondary: #4A4F63;
  --dark: #0A1628;
  --dark-2: #1A2332;
  --nest-green: #3D4A2E;
  --white: #FFFFFF;
  --off-white: #F8FAFD;
  --light-gray: #F0F4F8;
  --border: #E2E8F0;
  --text-main: #1A1F2E;
  --text-body: #4A5568;
  --text-light: #718096;
  --gradient-primary: linear-gradient(135deg, #00B4D8 0%, #0077A8 100%);
  --gradient-teal: linear-gradient(135deg, #00B4D8 0%, #00D4FF 100%);
  --gradient-hero: linear-gradient(160deg, #F0FBFF 0%, #E8F4FF 50%, #F8FAFD 100%);
  --shadow-sm: 0 2px 8px rgba(0, 180, 216, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 180, 216, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 180, 216, 0.18);
  --shadow-xl: 0 30px 80px rgba(10, 22, 40, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --primary-glow: rgba(0, 180, 216, 0.6);
  --primary-dim: rgba(0, 180, 216, 0.15);
  /* --accent: #FF6B6B;
      --accent2: #FFD166; */
  /* --dark: #050810;
      --dark2: #0a0f1e; */
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.45);


  --text-gray: #94a3b8;
  --white: #ffffff;

  --text: #E5F6FA;
  --text-soft: #9FB3C8;
  --secondary: #4A4F63;

  --hn-primary: #00B4D8;
  --hn-accent: #0077A8;
  --hn-light: #E0F7FC;
  --hn-text: #0F172A;
  --hn-gray: #64748B;
  --hn-bg: #F8FAFC;
  --hn-border: rgba(0, 180, 216, 0.15);



  --navy: #080e1f;
  --navy-mid: #0d1530;
  --navy-light: #131e3a;
  --cyan: #00e5ff;
  --cyan-dim: #00b8cc;
  --cyan-glow: rgba(0, 229, 255, 0.18);
  --slate: #8a9bc2;
  --slate-light: #c4cfe8;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.10);



  /* Brand Colors */
  --color-primary: #00B4D8;
  --color-secondary: #4A4F63;
  --color-accent: #0090B8;
  --color-dark: #0D1117;
  --color-dark2: #1A2332;
  --color-nest: #3D4A2E;
  --color-light: #F4F7FA;
  --color-white: #FFFFFF;
  --color-text: #C9D1D9;
  --color-text-muted: #7A8599;
  --color-border: rgba(0, 180, 216, 0.15);
  --color-card-bg: #141c2b;

  /* Gradients */
  --grad-glow: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.25) 0%, transparent 70%);

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-teal: 0 0 40px rgba(0, 180, 216, 0.2);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
}




/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-main);
  /* color: white; */
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  overflow: hidden;
}

/* =============================================
   CUSTOM CURSOR
============================================= */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
  opacity: 0.6;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  transform: translate(-50%, -50%) scale(1.8);
  opacity: 0.3;
}

/* =============================================
   SCROLL PROGRESS BAR
============================================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 99997;
  width: 0%;
  transition: width 0.1s;
}

/* =============================================
   LOADING SCREEN
============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.loader-logo span {
  color: var(--primary);
}

.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 99px;
  width: 0%;
  animation: loadBar 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadBar {
  0% {
    width: 0%
  }

  60% {
    width: 70%
  }

  100% {
    width: 100%
  }
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 2px;
}

/* =============================================
   BACK TO TOP
============================================= */
#back-top {
  position: fixed;
  /* bottom: 30px; right: 30px;
  width: 48px; height: 48px; */
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  /* z-index: 9990; */
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);

  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  /* background-color: var(--accent-color); */
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}


#back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =============================================
   UTILITY CLASSES
============================================= */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
} */

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  /* line-height: 1.75; */
  max-width: 800px;
}

.btn-primary-hn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-hn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary-hn:hover::before {
  transform: translateX(0);
}

.btn-primary-hn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.4);
  color: white;
}

.btn-ghost-hn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  /* color: var(--text-main); */
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 99px;
  border: 2px solid #0090B8;
  cursor: pointer;
  transition: var(--transition);
  color: #0090b8;
  /* border: 1px solid black; */
}

.btn-ghost-hn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
/* #navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.06);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  display: flex; align-items: center; gap: 4px;
}
.nav-brand .h-letter {
  color: var(--primary);
  display: inline-block;
  transition: var(--transition);
}
.nav-brand:hover .h-letter { transform: rotate(-5deg) scale(1.1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 60%; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--primary); } */

/* =============================================
   HERO SECTION
============================================= */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 105px 0 50px;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 119, 168, 0.05) 0%, transparent 60%);
}

#anti-gravity-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid rgba(0, 180, 216, 0.2);
  padding: 8px 20px;
  border-radius: 99px;
  /* font-size: 0.82rem; */
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.1);
  animation: heroFadeIn 0.8s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-h1 {
  font-family: var(--font-display);
  /* font-size: clamp(2.5rem, 5.5vw, 4.2rem); */
  font-size: 50px;
  font-weight: 800;
  /* font-weight: bold; */
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 12px;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.2s forwards;
}

.hero-h1 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.global-highlight {
  /* background: var(--gradient-primary); */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}


/* .hero-h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 0.8s ease 1.2s forwards;
} */

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.hero-p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 15px;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.4s forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  /* flex-direction: row; */
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.6s forwards;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 0.9s ease 0.8s forwards;
}

.hero-stat {}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

/* Device Mockups */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeIn 1s ease 0.5s forwards;
  opacity: 0;
}

.device-laptop {
  width: 380px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(10, 22, 40, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  animation: floatDevice 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes floatDevice {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg)
  }

  50% {
    transform: translateY(-16px) rotate(1deg)
  }
}

.device-laptop-bar {
  height: 32px;
  /* height: 150px; */
  background: var(--light-gray);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}

.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.device-dot:nth-child(1) {
  background: #FF5F57
}

.device-dot:nth-child(2) {
  background: #FEBC2E
}

.device-dot:nth-child(3) {
  background: #28C840
}

.device-screen {
  height: 220px;
  /* height: 250px; */
  background: linear-gradient(135deg, #0A1628 0%, #1A2332 100%);
  position: relative;
  overflow: hidden;
}

.device-screen-line {
  position: absolute;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 99px;
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0% {
    top: 0;
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: 1
  }

  100% {
    top: 100%;
    opacity: 0
  }
}

.device-screen-code {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.code-line-teal {
  color: var(--primary);
}

.code-line-white {
  color: white;
}

.code-line-gray {
  color: rgba(255, 255, 255, 0.3);
}

.device-phone {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 100px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
  overflow: hidden;
  z-index: 3;
  animation: floatPhone 5s ease-in-out 1s infinite;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.device-phone-screen {
  height: 170px;
  background: linear-gradient(135deg, #00B4D8 0%, #0077A8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon {
  font-size: 2rem;
  color: white;
}

/* Floating tags */
.hero-tag {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  white-space: nowrap;
}

.hero-tag i {
  color: var(--primary);
}

.tag-speed {
  top: 20px;
  right: 10px;
  animation: floatTag1 4s ease-in-out infinite;
}

.tag-seo {
  bottom: 60px;
  left: -30px;
  animation: floatTag2 5s ease-in-out 0.5s infinite;
}

.tag-score {
  top: 50%;
  right: -20px;
  animation: floatTag1 3.5s ease-in-out 1s infinite;
}

@keyframes floatTag1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatTag2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}


/* =============================================
   RESPONSIVE HERO SECTION
============================================= */

/* Large Desktop */
@media (max-width:1400px) {

  #hero {
    min-height: 90vh;
  }


  /* .device-laptop {
    width: 340px;
  }

  .device-screen {
    height: 200px;
  } */

}


/* Laptop */
@media (max-width:1200px) {

  #hero {
    min-height: 50vh;
    padding: 100px 0 60px;
  }

  .hero-h1 {
    font-size: 45px;
  }

  .hero-stats {
    gap: 20px;
  }


  /* .device-laptop {
    width: 320px;
  }

  .device-screen {
    height: 190px;
  } */

}


/* Tablet */
@media (max-width:992px) {
  #hero {
    min-height: 60vh;
  }

  /* #hero{
    padding:80px 0 60px;
  } */

  .hero-content {
    text-align: center;
    /* margin-bottom:60px; */
  }

  /* .hero-h1 {
    font-size: 38px;
  } */

  .hero-p {
    /* margin-left: auto;
    margin-right: auto; */
    text-align: center;
    margin: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  /* .hero-visual {
    margin-top: 20px;
  }

  .device-phone {
    right: -20px;
    bottom: -10px;
    width: 90px;
  } */

}


/* Mobile Large */
@media (max-width:768px) {

  #hero {
    min-height: 82vh;
  }

  /* .hero-h1{
    font-size:32px;
    line-height:1.2;
  } */

  /* .hero-p {
    font-size: 1rem;
  } */

  .hero-badge {
    /* font-size: 0.75rem; */
    /* font-size: 0.95rem; */
    gap: 5px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  /* .device-laptop{
    width:280px;
  }

  .device-screen{
    height:170px;
  } */

  .hero-tag {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .tag-seo {
    left: -10px;
  }

  .hero-btns {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
  }

}


/* Small Mobile */
@media (max-width:576px) {

  /* .hero-h1{
    font-size:28px;
  } */

  .hero-h1 {
    font-size: 34px;
  }

  /* .hero-p {
    font-size: 0.95rem;
  } */

  .hero-stats {
    gap: 18px;
  }

  .hero-stat {
    text-align: center;
  }

  /* .hero-content {
    margin-bottom: 10px;
  } */

  #hero {
    padding: 100px 0 60px;
  }

  /* .btn-primary-hn {
    padding: 12px 20px;
  }

  .btn-ghost-hn {
    padding: 10px 15px;
  } */

  /* .device-laptop{
    width:240px;
  } */

  /* .device-screen{
    height:150px;
  }

  .device-phone{
    width:70px;
    right:-10px;
    bottom:-5px;
  } */

  /* .hero-tag {
    display: none;
  } */

}


/* Extra Small Mobile */
@media (max-width:400px) {


  .hero-btns {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
  }

  .hero-badge {
    padding: 8px 10px;
  }

}

/* =============================================
   MARQUEE SECTION
============================================= */
/* .marquee-section {
  padding: 24px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 32px;
  flex-shrink: 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  align-items: center;
  white-space: nowrap;
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%{transform:translateX(0)} 100%{transform:translateX(-50%)}
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 6px;
  white-space: nowrap;
  transition: var(--transition);
}
.tech-pill:hover { transform: scale(1.05); }
.tech-pill-teal { background: var(--primary-light); color: var(--primary-dark); }
.tech-pill-slate { background: var(--light-gray); color: var(--secondary); }
.tech-pill i { font-size: 0.9rem; } */



/* ============================================================
   09. MARQUEE RIBBON
============================================================ */
.marquee-section {
  /* background: rgba(0,180,216,0.05); */
  /* background: #0077A8; */
  background: var(--dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  /* color: var(--color-text-muted); */
  color: var(--off-white);
  white-space: nowrap;
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.marquee-track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-items {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.m-pill {
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.m-pill.teal {
  /* background: rgba(0,180,216,0.12); */
  /* color: var(--color-primary); */
  background: #00D4FF;
  color: var(--off-white);
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.m-pill.slate {
  /* background: rgba(74,79,99,0.2); */
  background: #0090B8;
  color: var(--off-white);
  /* color: #9099b5; */
  border: 1px solid rgba(74, 79, 99, 0.3);
}

/* =============================================
   ABOUT SERVICE SECTION
============================================= */
.about-service {
  padding: 50px 0;
  background: white;
}

/* .about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
} */

.about-title {
  /* font-size: 36px; */
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

.about-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: var(--transition);
  height: 100%;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.3);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.about-card:hover .about-card-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.about-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

/* Speed chart */
.speed-chart {
  margin-top: 32px;
}

.speed-bar-item {
  margin-bottom: 20px;
}

.speed-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}

.speed-bar-track {
  height: 10px;
  background: var(--light-gray);
  border-radius: 99px;
  overflow: hidden;
}

.speed-bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-teal {
  background: var(--gradient-primary);
}

.bar-orange {
  background: linear-gradient(90deg, #FF9A3C, #FF6B35);
}

.bar-red {
  background: linear-gradient(90deg, #F55151, #C0392B);
}


/* =============================================
   RESPONSIVE ABOUT SERVICE SECTION
============================================= */

/* Large Desktop */
@media (max-width:1400px) {

  .about-card {
    padding: 25px;
  }

}


/* Laptop */
@media (max-width:1200px) {

  .section-title {
    font-size: 34px;
  }

  /* .about-card {
    padding: 26px;
  } */

}


/* Tablet */
@media (max-width:992px) {

  /* .about-service {
    padding: 70px 0;
  } */

  /* .about-service .row{
    text-align:center;
  } */

  /* .section-title{
    font-size:30px;
  } */

  .section-sub {
    font-size: 0.95rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .speed-chart {
    margin-top: 40px;
  }

  /* .about-card{
    text-align:center;
  } */

  /* .about-card-icon{
    margin-left:auto;
    margin-right:auto;
  } */

}


/* Mobile Large */
@media (max-width:768px) {

  .about-service {
    padding: 40px 0;
  }

  /* .section-title{
    font-size:26px;
    line-height:1.3;
  } */

  /* .section-sub{
    font-size:0.9rem;
  } */

  /* .about-card{
    padding:22px;
  } */

  /* .about-card h4{
    font-size:1rem;
  }

  .about-card-icon{
    width:50px;
    height:50px;
    font-size:1.2rem;
  }

  .speed-bar-label{
    font-size:0.8rem;
  } */

}


/* Small Mobile */
@media (max-width:576px) {

  /* .about-service {
    padding: 40px 0;
  } */

  .section-badge {
    /* font-size: 0.70rem; */
    text-align: center;
    /* padding: 7px 12px !important; */
  }


  .about-title {
    font-size: 30px;
  }

  /* .about-service{
    padding:50px 0;
  } */

  /* .section-title {
    font-size: 30px;
  } */

  /* .section-sub{
    font-size:0.88rem;
  } */

  .about-card {
    padding: 20px;
  }

  /* .about-card h4{
    font-size:0.95rem;
  }

  .speed-chart h5{
    font-size:0.9rem;
  }

  .speed-bar-track{
    height:8px;
  } */

}


/* Extra Small Mobile */
/* @media (max-width:400px){

  .section-title{
    font-size:20px;
  }

  .about-card{
    padding:18px;
  }

} */



/* Card Styling */
/* .about-card{
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
} */

/* .about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
} */

/* .about-card-icon{
  font-size:26px;
  margin-bottom:12px;
  color:#ff6a00;
}

.about-card h4{
  font-size:1.1rem;
  margin-bottom:8px;
}

.about-card p{
  font-size:0.85rem;
  color:var(--text-light);
  line-height:1.6;
} */



/* Mobile Optimization */
@media (max-width: 480px) {

  /* .about-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  } */

  /* .about-card{
    padding:18px;
  }

  .about-card h4{
    font-size:0.95rem;
  }

  .about-card p{
    font-size:0.8rem;
  } */

}

/* =============================================
   PORTFOLIO SECTION
============================================= */
.portfolio-section {
  padding: 40px 0;
  background: var(--off-white);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 180, 216, 0.2);
}

.portfolio-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  position: relative;
}

.portfolio-thumb-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 20, 40, 0.88); */
   background: linear-gradient(rgba(10, 20, 40, 0.2),
      rgba(10, 20, 40, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-btns {
  display: flex;
  gap: 10px;
}

/* .portfolio-thumb {
  position: relative;
  overflow: hidden;
   height: 200px;
  border-radius: 10px;
}


.portfolio-thumb img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}


.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 20, 40, 0.2),
      rgba(10, 20, 40, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}


.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-card:hover img {
  transform: scale(1.05);
} */

/* Buttons */
/* .portfolio-overlay-btns {
  display: flex;
  gap: 10px;
} */

.p-btn {
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.p-btn:hover {
  color: #00e5ff;
}

.p-btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.p-btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.p-btn-ghost:hover {
  border-color: white;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-industry {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.portfolio-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.portfolio-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
  overflow: hidden;
}

.portfolio-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  background: var(--light-gray);
  border-radius: 4px;
  color: var(--secondary);
}

.portfolio-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  justify-content: space-between;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 5px;
  /* font-size: 0.75rem; */
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-item i {
  /* font-family: 2rem !important; */
  color: var(--primary);
}

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.hidden-cards {
  display: none;
}


/* =============================================
   RESPONSIVE PORTFOLIO SECTION
============================================= */

/* Large Desktop */
@media (max-width:1400px) {

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

}


/* Laptop */
@media (max-width:1200px) {

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-thumb {
    height: 190px;
  }

}


/* Tablet */
@media (max-width:992px) {

  /* .portfolio-section {
    padding: 60px 0;
  } */

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .portfolio-card-body {
    padding: 20px;
  }

  .portfolio-filters {
    gap: 6px;
  }

  /* .portfolio-card-body h3{
    font-size:1rem;
  }

  .portfolio-desc{
    font-size:0.82rem;
  } */

  .portfolio-thumb {
    height: 180px;
  }


  .portfolio-filters {
    margin-bottom: 10px;
  }

}


/* Mobile Large */
@media (max-width:768px) {

  .portfolio-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  /* .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  } */

  .portfolio-thumb {
    height: 170px;
  }

  .portfolio-card-body {
    padding: 18px;
  }

  /* .portfolio-metrics{
    justify-content:flex-start;
    gap:10px;
  } */

}


/* Small Mobile */
@media (max-width: 480px) {

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-section {
    padding: 40px 0;
  }

  .portfolio-thumb {
    height: 160px;
  }

  .portfolio-card-body {
    padding: 16px;
  }

  /* .portfolio-card-body h3{
    font-size:0.95rem;
  }

  .portfolio-desc{
    font-size:0.8rem;
  } */

  /* .portfolio-tech-stack{
    gap:5px;
  }

  .tech-tag{
    font-size:0.65rem;
  }

  .metric-item{
    font-size:0.7rem;
  } */

}


/* Extra Small Mobile */
/* @media (max-width:400px){

  .portfolio-thumb{
    height:150px;
  }

  .portfolio-card-body{
    padding:14px;
  }

  .filter-btn{
    font-size:0.72rem;
    padding:6px 12px;
  }

} */

/* =============================================
   STATS SECTION
============================================= */
.stats-section {
  padding: 40px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.stats-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* =============================================
   PROCESS SECTION
============================================= */
.process-section {
  padding: 120px 0;
  background: white;
}

.process-steps {
  position: relative;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-line-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 0;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 99px;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.process-step.active .process-num,
.process-step:hover .process-num {
  background: var(--gradient-primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
}

.process-step-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.process-week {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: block;
}

/* =============================================
   SERVICES INCLUDED
============================================= */
/* .services-section {
  padding: 120px 0;
  background: var(--off-white);
}

.service-feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-feature-card:hover::before {
  transform: scaleX(1);
}

.sf-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.service-feature-card h5 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.service-feature-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
} */

/* =============================================
   PRICING
============================================= */
.pricing-section {
  padding: 60px 0;
  background: white;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 45px;
}

.pricing-toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}

.pricing-toggle {
  width: 52px;
  height: 28px;
  /* background: #00b8cc; */
  background: var(--gradient-primary);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  /* background: var(--gradient-primary); */

}

.pricing-toggle.on {
  /* background: var(--gradient-primary); */
  background: black;
}

.pricing-toggle::after {
  content: '';
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.pricing-toggle.on::after {
  left: 27px;
}

.pricing-save-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.pricing-card {
  /* background: white; */
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  /* padding: 40px 36px; */
  padding: 30px 20px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.pricing-card:hover {
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--dark);
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 180, 216, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-16px);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 99px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-main);
  /* color: #0090b8; */
  /* margin-bottom: 6px; */
}

.pricing-card.featured .pricing-plan-name {
  color: white;
}

.pricing-plan-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.pricing-card.featured .pricing-plan-desc {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.pricing-card.featured .pricing-amount {
  color: white;
}

.price-currency {
  font-size: 1.5rem;
  /* margin-top: 8px; */
  color: var(--text-light);
  font-weight: 600;
}

.pricing-card.featured .price-currency {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  /* margin-bottom: 28px; */
  display: block;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  /* margin: 24px 0; */
}

.pricing-card.featured .pricing-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features {
  list-style: none;
  padding: 0px;
  /* margin-bottom: 32px; */
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 5px 0;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-features li i {
  color: var(--primary);
  margin-top: 2px;
  font-size: 0.85rem;
}

.pricing-features li.crossed {
  opacity: 0.4;
}

.pricing-features li.crossed i {
  color: var(--text-light);
}


/* =============================================
   RESPONSIVE DESIGN
============================================= */

/* Tablet */
@media (max-width: 992px) {

  /* .pricing-section {
    padding: 80px 0;
  } */

  /* .pricing-card {
    padding: 32px 26px;
  }

  .pricing-amount {
    font-size: 2.4rem;
  } */

}

/* Mobile */
@media (max-width: 768px) {


  .pricing-section {
    padding: 45px 0;
  }

  .pricing-toggle-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pricing-toggle-wrap {
    margin-bottom: 30px;
  }

  /* .pricing-toggle-label {
    font-size: 0.8rem;
  } */

  .pricing-save-badge {
    margin-top: 6px;
  }

  /* .pricing-card.featured {
    transform: none;
  } */

  /* .pricing-amount {
    font-size: 2.2rem;
  } */

}

/* Small Mobile */
@media (max-width: 576px) {

  /* .pricing-card {
    padding: 26px 20px;
  }

  .pricing-plan-name {
    font-size: 1rem;
  } */

  /* .pricing-plan-desc {
    font-size: 0.78rem;
  }

  .pricing-features li {
    font-size: 0.82rem;
  } */

  .pricing-section {
    padding: 40px 0;
  }

  .pricing-toggle-wrap {
    margin-bottom: 25px;
  }

  .pricing-amount {
    font-size: 2rem;
  }

}

/* =============================================
   TESTIMONIALS
============================================= */
/* .testimonials-section {
  padding: 120px 0;
  background: var(--off-white);
}

.swiper-testimonials {
  padding-bottom: 50px !important;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary-light);
  line-height: 1;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-info h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

.google-logo {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
}

.g-blue {
  color: #4285F4
}

.g-red {
  color: #DB4437
}

.g-yellow {
  color: #F4B400
}

.g-green {
  color: #0F9D58
} */



/* --- Testimonials Section --- */
.hn-testimonials {
  padding: 50px 0px;
  background: radial-gradient(circle at top right, #112a45, var(--dark));
  overflow: hidden;
  position: relative;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

/* Section Header */
.section-header {
  text-align: center;
  /* margin-bottom: 60px; */
}

.section-eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  /* margin-bottom: 12px; */
  display: block;
}

.section-h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin: 0 auto 10px;
  max-width: 700px;
  line-height: 1.2;
}

/* Google Rating Badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.g-stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

.g-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.g-count {
  color: var(--text-gray);
  font-size: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
}

/* Swiper Container */
.testimonials-wrapper {
  position: relative;
  padding: 10px 0 0px;
}

.testi-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-sizing: border-box;
}

.testi-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(0, 180, 216, 0.1);
  pointer-events: none;
}

.testi-stars {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.testi-content {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.testi-content strong {
  color: var(--primary);
  font-weight: 600;
}

/* Author Profile */
.testi-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.author-img {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--dark);
  font-size: 1.2rem;
  box-shadow: 0 8px 15px rgba(0, 180, 216, 0.3);
}

.author-meta h4 {
  /* color: var(--white); */
  color: white;
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.author-meta p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.client-link:hover {
  opacity: 0.8;
}

/* --- Custom Navigation & Pagination Area --- */
.slider-controls {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Center Pagination Bullets */
.testi-pagination {
  position: relative !important;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 !important;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}

/* Prev/Next Buttons Row */
.nav-buttons {
  display: flex;
  gap: 20px;
}

.nav-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-card);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

@media (max-width: 768px) {
  /* .hn-testimonials {
    padding: 40px 0;
  } */

  .testi-card {
    padding: 30px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
  }
}


@media(max-width: 576px) {
  .slider-controls {
    margin-top: 25px;
  }
}

/* =============================================
   FAQ SECTION
============================================= */
/* .faq-section {
  padding: 120px 0;
  background: white;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-main);
  background: white;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-body);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 18px;
} */



/* FAQ Section Wrapper */
.faq-premium-section {
  /* padding: 50px 0; */
  background: radial-gradient(circle at 100% 0%, #fdfdfd 0%, #f8fafc 100%);
  position: relative;
  width: 100%;
}

.container {
  /* width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; */
  position: relative;
  z-index: 2;
}

/* Responsive Grid Layout */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  /* Stacked by default */
  /* gap: 40px; */
  align-items: center;
}

@media (min-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding: 40px 0;
  }
}

/* Visual Column */
.faq-visual-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 350px; */
  width: 100%;
}

@media (min-width: 768px) {
  .faq-visual-column {
    min-height: 500px;
  }
}

.anti-gravity-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The Main 3D Question Mark */
.main-q-mark {
  font-size: clamp(140px, 20vw, 280px);
  /* Fluid size */
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 20px 30px rgba(0, 180, 216, 0.3));
  animation: floating 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
  user-select: none;
  line-height: 1;
}

.sub-q-mark {
  position: absolute;
  font-weight: 800;
  opacity: 0.15;
  color: var(--primary);
  z-index: 1;
  filter: blur(1px);
}

.q-1 {
  font-size: clamp(60px, 8vw, 120px);
  top: 0%;
  left: 0%;
  animation: floating 8s ease-in-out infinite 1s;
}

.q-2 {
  font-size: clamp(40px, 6vw, 80px);
  bottom: 10%;
  right: 5%;
  animation: floating 7s ease-in-out infinite 0.5s;
}

.q-3 {
  font-size: clamp(30px, 4vw, 50px);
  top: 15%;
  right: 10%;
  animation: floating 9s ease-in-out infinite 2s;
}

.gravity-orb {
  position: absolute;
  background: var(--accent-blue);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  z-index: 0;
  width: 80%;
  height: 80%;
  animation: orbPulse 10s infinite;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* @media (min-width: 768px) {
  .floating-badge {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
} */

.badge-1 {
  top: 15%;
  right: -5%;
  animation: floating 5s ease-in-out infinite 0.2s;
}

.badge-2 {
  bottom: 15%;
  left: -5%;
  animation: floating 6.5s ease-in-out infinite 0.8s;
}

.icon-box {
  width: 28px;
  height: 28px;
  /* background: var(--accent-blue); */
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Content Column */
.faq-content-column {
  position: relative;
  width: 100%;
}

.section-tag {
  font-weight: 800;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 12px;
  display: block;
}

.faq-headline {
  /* font-size: clamp(1.8rem, 5vw, 3.2rem); */
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: var(--dark);
  font-weight: 800;
  line-height: 1.1;
  /* margin-bottom: 25px; */
}

/* Accordion Styling */
.premium-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* margin-top: 30px; */
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  overflow: hidden;
  width: 100%;
}

.accordion-item:hover {
  border-color: var(--accent-blue);
}

.accordion-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-premium);
}

.accordion-header {
  width: 100%;
  padding: 15px 15px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 15px;
  outline: none;
}

/* @media (min-width: 992px) and (max-width:1200px) {

    .faq-headline {
        font-size: clamp(1.8rem, 4.6vw, 3.2rem);
    }

} */




.question-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .question-text {
    font-size: 1.15rem;
  }
}

.accordion-item.active .question-text {
  color: var(--accent-blue);
}

.status-icon {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--secondary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.accordion-item.active .status-icon {
  /* background: var(--accent-blue); */
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.answer-content {
  padding: 0 15px 15px 15px;
  color: var(--accent-blue);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid #f8fafc;
  /* padding-top: 15px; */
}

.badge-3 {
  top: 45%;
  right: -8%;
  animation: floating 7s ease-in-out infinite .4s;
}

.badge-4 {
  top: 65%;
  left: -8%;
  animation: floating 6s ease-in-out infinite .7s;
}

.badge-5 {
  bottom: -5%;
  right: 15%;
  animation: floating 8s ease-in-out infinite 1s;
}


.q-4 {
  font-size: clamp(50px, 7vw, 90px);
  bottom: 25%;
  left: 10%;
  animation: floating 8s ease-in-out infinite 1.5s;
}

.q-5 {
  font-size: clamp(40px, 5vw, 70px);
  top: 40%;
  right: 20%;
  animation: floating 9s ease-in-out infinite 2s;
}


@media (min-width: 768px) {
  .answer-content {
    /* padding: 0 30px 30px 30px; */
    /* padding-top: 20px; */
    font-size: 1rem;
  }
}


@media (max-width:768px) {

  .badge-3,
  .badge-4,
  .badge-5,
  .q-4,
  .q-5 {
    display: none;
  }

}

.faq-wrapper {
  align-items: stretch;
}

.faq-visual-column {
  min-height: 100%;
}




/* EXTRA QUESTION MARKS */

.q-4 {
  font-size: clamp(50px, 7vw, 90px);
  bottom: 25%;
  left: 10%;
  animation: floating 8s ease-in-out infinite 1.5s;
}

.q-5 {
  font-size: clamp(40px, 5vw, 70px);
  top: 40%;
  right: 20%;
  animation: floating 9s ease-in-out infinite 2s;
}


/* EXTRA BADGES */

.badge-3 {
  top: 45%;
  right: -8%;
  animation: floating 7s ease-in-out infinite .4s;
}

.badge-4 {
  bottom: -5%;
  left: 10%;
  animation: floating 8s ease-in-out infinite .7s;
}


/* TOP LEFT FAQ BADGES */

.badge-top-1 {
  top: -2%;
  left: -5%;
  animation: floating 6s ease-in-out infinite .3s;
}

.badge-top-2 {
  top: 10%;
  left: -10%;
  animation: floating 7s ease-in-out infinite .6s;
}

.badge-top-3 {
  top: 25%;
  left: -8%;
  animation: floating 8s ease-in-out infinite .9s;
}


/* VISUAL COLUMN HEIGHT BALANCE */

.faq-wrapper {
  align-items: stretch;
}

.faq-visual-column {
  min-height: 100%;
}


/* TABLET OPTIMIZATION */

@media (max-width:1024px) {

  .badge-3,
  .badge-4 {
    display: none;
  }

}

@media (max-width:992px) {
  .badge-top-2 {
    display: none;
  }

  .badge-top-1 {
    top: 5%;
    left: 0;
  }

}


/* MOBILE OPTIMIZATION */

@media (max-width:768px) {

  .badge-top-2,
  .badge-top-3,
  .q-4,
  .q-5 {
    display: none;
  }

  .badge-top-1 {
    top: 5%;
    left: 0;
  }

}

/* Animations */
/* @keyframes floating {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.15;
  }
} */

/* Layout direction for desktop */
@media (min-width: 1024px) {
  .faq-visual-column {
    order: 1;
  }

  .faq-content-column {
    order: 2;
    text-align: left;
  }
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width:1023px) {

  .faq-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-content-column {
    order: 1;
  }

  .faq-visual-column {
    order: 2;
  }

  .premium-accordion {
    text-align: left;
  }

  /* .faq-premium-section {
    padding: 30px 0;
  } */

  .faq-visual-column {
    min-height: 300px;
  }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 992px) {
  .faq-headline {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
  }
}

@media (max-width:768px) {

  /* .faq-premium-section {
    padding: 30px 0;
  } */

  .anti-gravity-container {
    height: 300px;
  }

  .main-q-mark {
    font-size: clamp(100px, 25vw, 180px);
  }

  .floating-badge {
    font-size: .75rem;
    padding: 8px 14px;
  }

  .badge-1 {
    right: 0;
  }

  .badge-2 {
    left: 0;
  }

  .faq-visual-column {
    min-height: 300px;
  }



}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 576px) {

  /* .faq-headline {
        font-size: 1.6rem;
    } */

  .anti-gravity-container {
    height: 240px;
  }

  .main-q-mark {
    font-size: 110px;
  }

  /* .sub-q-mark {
    display: none;
  }

  .floating-badge {
    display: none;
  } */

  /* .accordion-header {
    padding: 16px;
  } */

  .question-text {
    font-size: .9rem;
  }

  .answer-content {
    font-size: .9rem;
  }

  .faq-visual-column {
    min-height: 150px;
  }

}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes floating {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .1
  }

  50% {
    transform: scale(1.15);
    opacity: .15
  }
}



/* =============================================
   CONTACT / CTA SECTION
============================================= */
.cta-banner {
  padding: 50px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  /* margin-bottom: 16px; */
}

.cta-banner-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  /* margin-bottom: 36px; */
}

.contact-section {
  padding: 50px 0;
  background: var(--off-white);
}

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 30px;
  /* box-shadow: var(--shadow-md); */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* .form-group {
  margin-bottom: 20px;
} */

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control-hn {
  width: 100%;
  padding: 14px 18px;
  /* border: 1.5px solid var(--border); */
  border: 1.5px solid var(--color-dark);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control-hn:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

textarea.form-control-hn {
  min-height: 120px;
  resize: vertical;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 30px 25px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 180, 216, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-text p {
  color: white;
  font-size: 0.95rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  /* margin-top: 32px; */
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}


/* Map Placeholder */
.map-placeholder {
  background: rgba(0, 180, 216, 0.05);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 15px;
  text-align: center;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
}

/* CONTACT INFO GRID FOR MOBILE */

/* @media (max-width:768px){

.contact-info-card{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}


.contact-info-card h2{
grid-column:1 / -1;
}

.contact-info-item{
margin-bottom:0;
}


.contact-info-card .social-links{
grid-column:1 / -1;
margin-top:10px;
}

.contact-info-card .map-placeholder{
grid-column:1 / -1;
}

} */





/* =============================================
   CONTACT INFO RESPONSIVE LAYOUT
============================================= */

/* Default Desktop Layout (keep original) */
.contact-info-card {
  display: block;
}

/* Tablet View - 2 Columns */
@media (min-width:576px) and (max-width:991px) {

  .contact-info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Title Full Width */
  .contact-info-card h2 {
    grid-column: 1 / -1;
  }

  /* Social Icons Full Width */
  .contact-info-card .social-links {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  /* Map Full Width */
  .contact-info-card .map-placeholder {
    grid-column: 1 / -1;
  }

  .contact-info-item {
    margin-bottom: 0;
  }

}


@media (max-width: 576px) {

  .contact-info-card {
    display: block;
  }

  .contact-section {
    padding: 40px 0;
  }

  .footer-legal-links {
    gap: 10px;
  }
}



/* .map-placeholder i { font-size: 2.5rem; color: var(--color-primary); opacity: 0.6; }
.map-placeholder span { font-size: 0.84rem; } */

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* padding: 60px 0 32px; */
  padding: 40px 0 10px;
}

.footer-brand {
  font-family: var(--font-display);
  /* font-size: 1.6rem; */
  font-weight: bold;
  /* font-weight: 800; */
  color: white;
  font-size: 30px;
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--primary);
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  /* max-width: 280px; */
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  /* font-family: 2rem; */
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-links small {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-links small:hover {
  color: var(--primary);
  transition: var(--transition);
}


.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  justify-content: space-between;
  flex-wrap: gap;
  /* gap: 16px; */
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  /* color: var(--color-text-muted); */
  /* color: rgba(255,255,255,0.45); */
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* .footer-crafted {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
  font-family: var(--font-mono);
} */

.footer-copy {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.3);
}


@media (min-width:992px) {
  .footer-desc {
    max-width: 280px;
  }

}

/* =============================================
   ANTI-GRAVITY PHYSICS SECTION
============================================= */
/* .antigravity-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#matter-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}

.antigravity-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.antigravity-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.antigravity-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-bottom: 24px;
}

.antigravity-hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
} */



/* =============================================
       ANTI-GRAVITY PHYSICS SECTION
    ============================================= */
.antigravity-section {
  /* padding: 60px 0 0px; */
  padding: 60px 0 40px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  /* min-height: 680px; */
}

/* Layered noise + grid background */
.antigravity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(0, 180, 216, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(0, 100, 180, 0.08) 0%, transparent 60%),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px);
  pointer-events: none;
  z-index: 0;
}

/* Animated scanline sweep */
.antigravity-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 180, 216, 0.035) 50%,
      transparent 100%);
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scanline {
  0% {
    top: -60%;
  }

  100% {
    top: 160%;
  }
}

/* Canvas */
#matter-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  z-index: 2;
}

/* Content */
.antigravity-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  /* background: rgba(0, 180, 216, 0.1); */
  /* color: var(--primary); */
  /* border: 1px solid rgba(0, 180, 216, 0.3); */
  background: var(--color-primary);
  /* background: #00B4D8; */
  color: white;
  border-radius: 100px;
  font-family: var(--font-mono);
  /* font-size: 0.7rem; */
  font-size: 0.90rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: badgePulse 3s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.0);
  }

  50% {
    box-shadow: 0 0 20px 2px rgba(0, 180, 216, 0.15);
  }
}

/* Headline */
.antigravity-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-primary);
  /* margin-bottom: 20px; */
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.antigravity-title .title-line {
  display: block;
}

.antigravity-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.antigravity-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  animation: underlineGrow 1.5s ease forwards 0.8s;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Subtitle */
.antigravity-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Hint bar */
.antigravity-hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
  animation: hintFloat 3s ease-in-out infinite;
}

.antigravity-hint::before,
.antigravity-hint::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
  animation: hintLine 2s ease-in-out infinite alternate;
}

.antigravity-hint::after {
  background: linear-gradient(90deg, var(--primary), transparent);
}

@keyframes hintFloat {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes hintLine {
  from {
    width: 20px;
  }

  to {
    width: 40px;
  }
}

/* =============================================
       STATS ROW
    ============================================= */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--border);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, #00B4D8, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =============================================
       CORNER DECORATIONS
    ============================================= */
.corner-deco {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 5;
  pointer-events: none;
}

.corner-deco.tl {
  top: 28px;
  left: 28px;
  border-top: 1px solid rgba(0, 180, 216, 0.4);
  border-left: 1px solid rgba(0, 180, 216, 0.4);
}

.corner-deco.tr {
  top: 28px;
  right: 28px;
  border-top: 1px solid rgba(0, 180, 216, 0.4);
  border-right: 1px solid rgba(0, 180, 216, 0.4);
}

.corner-deco.bl {
  bottom: 28px;
  left: 28px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.4);
  border-left: 1px solid rgba(0, 180, 216, 0.4);
}

.corner-deco.br {
  bottom: 28px;
  right: 28px;
  border-bottom: 1px solid rgba(0, 180, 216, 0.4);
  border-right: 1px solid rgba(0, 180, 216, 0.4);
}

/* Coordinate labels on corners */
.corner-deco.tl::after {
  content: '00.00';
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(0, 180, 216, 0.4);
  position: absolute;
  top: 8px;
  left: 8px;
}

.corner-deco.tr::after {
  content: '01.00';
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(0, 180, 216, 0.4);
  position: absolute;
  top: 8px;
  right: 8px;
}

/* =============================================
       FLOATING ORB ACCENTS
    ============================================= */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
  top: -80px;
  left: -80px;
  animation: orbDrift 12s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 80, 180, 0.15) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  animation: orbDrift 15s ease-in-out infinite reverse;
}

@keyframes orbDrift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(40px, -30px);
  }

  66% {
    transform: translate(-20px, 20px);
  }
}

@media (max-width: 992px) {
  .antigravity-section {
    /* min-height: 520px; */
    padding: 120px 0 60px;
  }
}


/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 768px) {
  /* .antigravity-section {
    min-height: 520px;
    padding: 120px 0 60px;
  } */

  .stats-row {
    gap: 28px;
  }

  .stat-item::after {
    display: none;
  }

  .corner-deco {
    width: 48px;
    height: 48px;
  }

  .corner-deco.tl,
  .corner-deco.tr {
    top: 16px;
  }

  .corner-deco.tl {
    left: 16px;
  }

  .corner-deco.tr {
    right: 16px;
  }

  .corner-deco.bl,
  .corner-deco.br {
    bottom: 16px;
  }

  .corner-deco.bl {
    left: 16px;
  }

  .corner-deco.br {
    right: 16px;
  }

  #matter-canvas {
    pointer-events: none;
  }
}

@media (max-width: 576px) {

  .antigravity-section {
    /* min-height: 520px; */
    padding: 120px 0 40px;
    /* padding: 70px 0 0px; */
  }

  .antigravity-title {
    font-size: 1.9rem;
  }

  .antigravity-sub {
    font-size: 0.92rem;
  }

  .stats-row {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.7rem;
  }
}

/* =============================================
   RESPONSIVE
============================================= */
/* @media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (max-width: 992px) {
  .process-line {
    display: none;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* .portfolio-grid {
    grid-template-columns: 1fr;
  } */

  .hero-stats {
    gap: 24px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .device-laptop {
    width: 280px;
  }

  .device-phone {
    right: -20px;
    width: 80px;
  }

  .device-phone-screen {
    height: 130px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  /* #cursor-dot,
  #cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  } */

  .process-steps {
    flex-direction: column !important;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* @media (max-width: 480px) {
  .pricing-card {
    padding: 28px 20px;
  }

  .portfolio-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
} */



.ultra-process {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #0a1628, #0f1d33);
  overflow: hidden;
}

/* PARTICLES */
.ultra-process canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* HEADER */
.process-header {
  margin-bottom: 30px;
}

.process-badge {
  display: inline-block;
  background: #E6F9FF;
  color: #0077A8;
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.process-header h2 {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;

}

.process-header h2 span {
  color: #00B4D8;

}

.process-header p {
  color: #9aa5b1;
  max-width: 700px;
  margin: auto;

}


/* PROCESS WRAPPER */

.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  gap: 20px;

}


/* TIMELINE */

.process-line {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      #00B4D8,
      #00e5ff,
      #0090b8,
      transparent);
  animation: lineMove 6s linear infinite;
}

@keyframes lineMove {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 1000px 0
  }
}


/* CARD */
.process-card {
  width: 200px;
  height: 100% !important;
  text-align: center;
  /* padding: 35px 20px; */
  padding: 25px 10px;
  /* padding: 20px; */
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  transition: 0.5s;
  position: relative;
}

.process-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  border-color: #00B4D8;
}


/* ICON */
.process-card .icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #00B4D8, #0077A8);
  margin: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 0 30px rgba(0, 180, 216, .5);
  animation: floatIcon 4s ease-in-out infinite;

}

@keyframes floatIcon {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }

  100% {
    transform: translateY(0)
  }

}


/* TEXT */
.process-card h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;

}

.process-card p {
  font-size: 14px;
  color: #9aa5b1;
}


/* RESPONSIVE */

/* @media(max-width: 768px) {
  .process-card {
    width: 180px;
  }

} */


/* @media (min-width: 992px) and (max-width: 1200px) { 
.process-card {

  }

} */

@media(min-width:992px) and (max-width:1200px){
   .process-card {
    width: 250px;
  }
}

@media (max-width:1200px) {
  .process-wrapper {
    justify-content: center;
    gap: 35px;
  }

  .process-line {
    display: none;
  }


}


@media(max-width:991px) {
  .process-wrapper {
    justify-content: center;
    gap: 35px;
  }

  .process-line {
    display: none;
  }



}


@media(max-width:768px) {


  .ultra-process {
    padding: 50px 0;
  }

  .process-badge {
    margin-bottom: 15px;
  }

  .process-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .process-card {
    width: 100%;
    max-width: 300px;
  }

  .process-header {
    margin-bottom: 20px;
  }
}

/* @media(max-width:480px) {
  .ultra-process {
    padding: 90px 0;
  }

  .process-header h2 {
    font-size: 28px;
  }

} */




/* ─────────────────────────────────────────
       CUSTOM CURSOR
    ───────────────────────────────────────── */
/* .cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .08s var(--transition);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(0, 180, 216, .5);
  transition: width .3s, height .3s, border-color .3s, transform .12s;
}

.cursor-outline.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--primary);
  background: rgba(0, 180, 216, .06);
} */

/* ─────────────────────────────────────────
       SECTION WRAPPER
    ───────────────────────────────────────── */
#tech-stack {
  position: relative;
  padding: 50px 0 60px;
  background: var(--white);
  overflow: hidden;
}

/* ─────────────────────────────────────────
       PARALLAX CANVAS BG
    ───────────────────────────────────────── */
#parallax-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Radial glow blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  will-change: transform;
  animation: blobFloat 14s ease-in-out infinite alternate;
}

.bg-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -180px;
  left: -120px;
  animation-delay: 0s;
}

.bg-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -100px;
  right: -60px;
  animation-delay: -6s;
}

.bg-blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
  top: 40%;
  left: 55%;
  animation-delay: -3s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 30px) scale(1.08);
  }
}

/* Grid dots pattern */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 180, 216, .18) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .35;
}

/* Floating geometric shapes */
.geo-shape {
  position: absolute;
  border: 1.5px solid rgba(0, 180, 216, .25);
  border-radius: 6px;
  opacity: 0;
  animation: geoAppear 2s ease forwards, geoSpin var(--spin-dur, 30s) linear infinite;
  will-change: transform;
}

@keyframes geoAppear {
  to {
    opacity: 1;
  }
}

@keyframes geoSpin {
  to {
    transform: rotate(360deg) translateX(var(--orbit, 0px));
  }
}

/* ─────────────────────────────────────────
       SECTION HEADER
    ───────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 20px 7px 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.section-eyebrow span.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, .6);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(0, 180, 216, 0);
  }
}

/* .section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -.02em;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 100px;
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1s .8s var(--transition) forwards;
} */

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.60;
  /* margin-top: 14px; */
}

/* ─────────────────────────────────────────
       CATEGORY FILTER TABS
    ───────────────────────────────────────── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  /* margin: 52px 0 64px; */
}

.filter-tab {
  padding: 9px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .28s var(--transition);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 180, 216, .35);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────
       CATEGORY LABEL
    ───────────────────────────────────────── */
.cat-label {
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}


.tech-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform .38s var(--transition),
    box-shadow .38s var(--transition),
    border-color .38s var(--transition);
  will-change: transform;
  animation: antiGravityIdle 5s ease-in-out infinite;
}

.tech-card:nth-child(2n) {
  animation-delay: -.8s;
  animation-duration: 5.8s;
}

.tech-card:nth-child(3n) {
  animation-delay: -1.6s;
  animation-duration: 4.6s;
}

.tech-card:nth-child(4n) {
  animation-delay: -2.4s;
  animation-duration: 6.2s;
}

.tech-card:nth-child(5n) {
  animation-delay: -3.2s;
  animation-duration: 5.3s;
}

@keyframes antiGravityIdle {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-6px) rotate(.4deg);
  }

  66% {
    transform: translateY(-3px) rotate(-.3deg);
  }
}

.tech-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, .05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  border-radius: var(--radius);
}

.tech-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity .38s;
}

.tech-card:hover {
  transform: translateY(-14px) rotate(.5deg) scale(1.04) !important;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  animation-play-state: paused;
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card:hover::after {
  opacity: .6;
}

/* Shine sweep on hover */
.tech-card .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--transition);
  pointer-events: none;
}

.tech-card:hover .shine {
  left: 140%;
}

/* Icon wrapper */
.tech-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  transition: transform .4s var(--transition);
}

.tech-card:hover .tech-icon-wrap {
  transform: scale(1.15) rotate(-4deg);
}

.tech-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
}

.tech-card:hover .tech-icon-wrap::before {
  opacity: 1;
}

.tech-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .12));
  transition: filter .4s;
}

.tech-card:hover .tech-icon-wrap img {
  filter: drop-shadow(0 6px 16px rgba(0, 180, 216, .35));
}

/* Text */
.tech-name {
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -.01em;
  transition: color .3s;
}

.tech-card:hover .tech-name {
  color: var(--primary);
}

.tech-type {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Proficiency bar */
.tech-bar-wrap {
  margin-top: 16px;
  background: var(--primary-light);
  border-radius: 100px;
  height: 4px;
  overflow: hidden;
}

.tech-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  width: 0;
  transition: width 1.2s var(--transition);
}

.tech-card.aos-animate .tech-bar,
.tech-bar.loaded {
  width: var(--skill, 85%);
}

/* Level badge */
.tech-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.tech-badge.expert {
  background: linear-gradient(135deg, #00B4D8, #0090B8);
  color: #fff;
}

.tech-badge.advanced {
  background: var(--primary-light);
  color: var(--accent);
}

.tech-badge.proficient {
  background: #F0FAF5;
  color: #27AE7A;
}

@media (max-width:768px) {
  #tech-stack {
    padding: 40px 0 50px;
  }
}

/* @media (max-width:576px) {
  #tech-stack {
    padding: 40px 0 50px;
  }

} */



/* ─────────────────────────────────────────
       MARQUEE RIBBON
    ───────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--primary-light), #fff 30%, #fff 70%, var(--primary-light));
  padding: 20px 0;
  margin: 80px 0 0;
  position: relative;
  z-index: 2;
}

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-wrap:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .3s;
}

.marquee-item:hover {
  color: var(--primary);
}

.marquee-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter .3s;
}

.marquee-item:hover img {
  filter: grayscale(0%);
}

.marquee-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .4;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
       COUNTER STATS ROW
    ───────────────────────────────────────── */
.stats-row {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin: 80px 0 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 180, 216, .3);
}

.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.15)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-number span {
  color: rgba(255, 255, 255, .6);
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .18);
  align-self: stretch;
}

/* ─────────────────────────────────────────
       PARTICLE BURST (click effect)
    ───────────────────────────────────────── */
.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 8888;
  animation: particleBurst .8s ease forwards;
}

@keyframes particleBurst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────
       ORBITAL DECORATION
    ───────────────────────────────────────── */
.orbit-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 180, 216, .2);
  transform: translate(-50%, -50%);
  animation: orbitRotate var(--dur, 20s) linear infinite;
}

@keyframes orbitRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .5;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

/* ─────────────────────────────────────────
       MAGNETIC BUTTON
    ───────────────────────────────────────── */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 16px 38px; */
  padding: 15px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 180, 216, .35);
  transition: box-shadow .3s, transform .15s;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: linear-gradient(135deg, #fff, var(--primary-light));
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
}

.btn-magnetic:hover {
  box-shadow: 0 14px 48px rgba(0, 180, 216, .5);
}

.btn-magnetic .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


@media (max-width:576px) {
  .btn-magnetic {
    gap: 4px;
    padding: 14px 12px;
    /* font-size: .85rem; */

  }

}

/* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
@media (max-width: 991px) {
  /* #tech-stack {
    padding: 80px 0 100px;
  } */

  .stats-row {
    padding: 36px 28px;
  }

  .filter-tab {
    padding: 8px 18px;
  }
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    font-size: .8rem;
    padding: 7px 15px;
  }
}

@media (max-width: 480px) {
  .tech-card {
    padding: 22px 14px 18px;
  }

  .tech-icon-wrap {
    width: 58px;
    height: 58px;
  }

  .tech-icon-wrap img {
    width: 32px;
    height: 32px;
  }


}

/* ─────────────────────────────────────────
       SCROLL PROGRESS
    ───────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9998;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  width: 0%;
  transition: width .08s linear;
}

/* ─────────────────────────────────────────
       TOOLTIP
    ───────────────────────────────────────── */
.tech-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--text-dark);
  color: #fff;
  font-size: .72rem;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 100;
}

.tech-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-dark);
}

.tech-card:hover .tech-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* hidden class for filter */
.tech-card-col {
  transition: opacity .4s, transform .4s;
}

.tech-card-col.hidden {
  opacity: 0;
  transform: scale(.92);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}


.hn-stack-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 180, 216, 0.08), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0, 180, 216, 0.08), transparent 40%),
    var(--dark);
  color: white;
}



/* PARTICLE CANVAS */
#hn-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* CONTENT */
.hn-content {
  position: relative;
  z-index: 5;
}

/* BADGE */
.hn-badge {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(0, 180, 216, 0.12);
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 180, 216, 0.25);

}

/* TITLE */
.hn-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  color: white;

}

.hn-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

/* SUBTITLE */
.hn-subtitle {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 700px;
  margin: auto;

}

/* CARDS */
.hn-card {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(0, 180, 216, 0.15);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* CARD HOVER */
.hn-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow:
    0 30px 80px rgba(0, 180, 216, 0.25);
}

/* ICON */
.hn-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 25px;
  border: 1px solid rgba(0, 180, 216, 0.15);
  transition: 0.4s;
}

/* ICON HOVER */
.hn-card:hover .hn-icon {
  background: rgba(0, 180, 216, 0.15);
  border-color: var(--primary);

}

/* TEXT */
.hn-card h5 {
  font-weight: 800;
  /* margin-bottom: 12px; */
  color: white;
}

.hn-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

/* HOVER LINE */
.hn-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: 0.5s;

}

.hn-card:hover .hn-line {
  width: 70%;
}

/* GLOW ORBS */
.hn-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 2;
}

.hn-orb1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}

.hn-orb2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -150px;
  left: -100px;

}


/* =============================================
   RESPONSIVE TECH STACK SECTION
============================================= */

/* Large Desktop */
@media (max-width:1400px) {

  .hn-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .hn-subtitle {
    font-size: 17px;
    max-width: 650px;
  }

}


/* Laptop */
@media (max-width:1200px) {

  .hn-stack-section {
    padding: 70px 0;
  }

  .hn-card {
    padding: 34px 26px;
  }

  .hn-icon {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

}


/* Tablet */
@media (max-width:992px) {

  .hn-stack-section {
    padding: 60px 0;
  }

  .hn-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .hn-subtitle {
    font-size: 16px;
    max-width: 600px;
  }

  .hn-card {
    padding: 30px 24px;
  }

  .hn-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

}


/* Mobile Large */
@media (max-width:768px) {

  .hn-stack-section {
    padding: 55px 0;
  }

  .hn-title {
    font-size: 2rem;
  }

  .hn-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .hn-card {
    padding: 26px 22px;
    text-align: center;
  }

  .hn-icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* .hn-card h5{
    font-size:1rem;
  }

  .hn-card p{
    font-size:0.9rem;
  } */

  /* reduce glowing orbs */
  .hn-orb1 {
    width: 350px;
    height: 350px;
    top: -150px;
  }

  .hn-orb2 {
    width: 300px;
    height: 300px;
  }

}


/* Small Mobile */
@media (max-width:576px) {

  .hn-stack-section {
    padding: 50px 0;
  }

  /* .hn-title{
    font-size:1.8rem;
  } */

  .hn-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .hn-title {
    font-size: 1.7rem;
  }

  /* .hn-subtitle{
    font-size:14px;
  } */

  .hn-card {
    padding: 24px 20px;
  }

  /* .hn-icon{
    width:60px;
    height:60px;
    font-size:24px;
  } */

  /* .hn-card h5{
    font-size:0.95rem;
  }

  .hn-card p{
    font-size:0.85rem;
  } */

  /* hide heavy blur effects for performance */
  .hn-orb {
    opacity: 0.15;
  }

}


/* Extra Small Mobile */
/* @media (max-width:400px){

  .hn-title{
    font-size:1.6rem;
  }

  .hn-card{
    padding:20px 18px;
  }

  .hn-icon{
    width:55px;
    height:55px;
    font-size:22px;
  }

} */

/* @media(max-width:576px) {
  .hn-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .hn-title {
    font-size: 2.2rem;
  }

} */