/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== HackVitraSec Branding Colors ==========*/
  --hv-primary: #0B78D1;
  --hv-dark: #071228;
  --hv-accent: #0FB7B3;
  --hv-muted: #6B7280;
  --hv-bg: #F6FBFF;
  --hv-surface: #FFFFFF;
  --hv-border: #E6EEF7;
  --hv-danger: #E04444;
  --hv-success: #27AE60;
  --hv-gold: #F6C343;
  --hv-primary: #0B78D1;
  --hv-accent: #1EC1FF;
  --hv-danger: #E04444;
  --hv-surface: #ffffff;
  --z-tooltip: 9999;
  --bg:#000;
  --card:#0f1116;
  --muted:#9aa4b2;
  --accent:#1EC1FF;
  --accent-2:#0B78D1;
  --danger:#E04444;
  --glass: rgba(255,255,255,0.03);
  --radius:12px;
  --pad:14px;
  --max-width:1300px;


  /*========== Animation Palettes ==========*/
  --anim-neon-1: #1EC1FF;
  --anim-neon-2: #6E55FF;
  --anim-neon-3: #00FF9C;
  --anim-glow: rgba(30,193,255,0.18);

  --anim-mid-1: #23415A;
  --anim-mid-2: var(--hv-primary);
  --anim-mid-3: #58A6FF;

  --anim-alert-1: #FF7A00;
  --anim-alert-2: var(--hv-danger);
  --anim-alert-3: #FFD9C9;

  /*========== Utility ==========*/
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(7,18,40,0.06);

  /*========== Legacy Colors (for compatibility) ==========*/
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 190;

  /* Main Dark Mode Base */
  --dark-bg: #000000;
  --dark-surface: #0f1116;
  --dark-glass: rgba(255, 255, 255, 0.03);
  --dark-border: rgba(255, 255, 255, 0.04);

  /* Neon Theme */
  --neon-blue: #1EC1FF;
  --neon-purple: #6E55FF;
  --neon-green: #00FF9C;

  /* Text */
  --dark-text: #e8f1ff;
  --dark-muted: #9aa4b2;

  /* Shadows */
  --dark-shadow-1: 0 10px 30px rgba(4, 10, 20, 0.6);

  /* HSL color mode */
  --first-color: var(--hv-primary);
  --first-color-second: var(--hv-dark);
  --first-color-alt: var(--hv-accent);
  --title-color: var(--hv-dark);
  --text-color: var(--hv-muted);
  --text-color-light: var(--hv-muted);
  --input-color: var(--hv-surface);
  --body-color: var(--hv-bg);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Raleway', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);

  /*========== New Variables for Enhanced UI ==========*/
  --hv-card-bg: rgba(255, 255, 255, 0.05);
  --hv-card-border: rgba(255, 255, 255, 0.1);
  --hv-text-primary: #ffffff;
  --hv-text-secondary: #b3b3b3;
  --hv-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --hv-transition: all 0.3s ease;
}


@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
 
  --wv-bg: var(--dark-bg);
  --wv-surface: var(--dark-surface);
  --glass: var(--dark-glass);
  --muted: var(--dark-muted);
  --text: var(--dark-text);

  --neon-1: var(--neon-blue);
  --neon-2: var(--neon-purple);
  --neon-3: var(--neon-green);

}

/*========== Lighting Effects in Dark Mode ==========*/
body.dark-theme .section__title,
body.dark-theme .section__subtitle,
body.dark-theme .button,
body.dark-theme .nav__logo,
body.dark-theme .footer__title {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.1);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.1);
  }
  to {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8), 0 0 25px rgba(0, 255, 255, 0.5), 0 0 35px rgba(0, 255, 255, 0.2);
  }
}

body.dark-theme .home__data-title b {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.5);
}

body.dark-theme .discover__card:hover,
body.dark-theme .place__card:hover,
body.dark-theme .experience__img-one:hover,
body.dark-theme .experience__img-two:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme, .change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  /*max-width: 968px;*/
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}


/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25 0.1rem;
}

/* Logo Styling */
.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 45px;              /* Adjust main logo height */
  width: auto;               /* Maintain aspect ratio */
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ============ DROPDOWN (MORE INFORMATION / PRODUCTS) ============ */

.nav__item-select {
  position: relative;
  width: fit-content;   /* 🔥 KEY FIX */
}

/*Last End Child Ancor link*/
.nav__item-select:last-child .moreURL {
  left: auto;
  right: 0;
  transform: none;
}


/* small polish */
.moreInformation {
  cursor: pointer;
  display: inline-flex;     /* 🔥 important */
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.moreInformation:focus { outline: 2px solid rgba(0,210,255,0.14); border-radius: 6px; }
/* Rotate arrow when dropdown is open */
.moreInformation.active .fa-angle-down {
    transform: rotate(180deg);
}


/* ensure .show-menu only affects the mobile panel (avoid accidental conflict) */
@media (min-width: 768px) {
  .nav__menu.show-menu { right: 0; /* no-op on desktop */ }
}


/* Dropdown (More URL) */

/* Dropdown Container */
/*.moreURL {*/
/*  position: absolute;*/
/*  top: 45px;*/
/*  left: 0;*/
/*  background: #0f1115;*/
/*  border: 1px solid rgba(255,255,255,0.1);*/
/*  border-radius: 12px;*/
/*  min-width: 190px;*/
/*  display: none;*/
/*  flex-direction: column;*/
/*  z-index: 9999;*/
/*  box-shadow: 0 0 20px rgba(0,0,0,0.6);*/
/*}*/
.moreURL {
  position: absolute;
  top: calc(100% + 10px);   /* icon ke niche */
  left: 50%;
  transform: translateX(-50%);  /* center under icon */
  background: #0f1115;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  min-width: 190px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}


.moreURL.show-dropdown {
  display: flex;
}

/* All Services Button Style */
.all-services {
  font-weight: 600;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,210,255,0.08);
  color: #00d2ff;
}


/* Scrollable Services Area */
.services-scroll {
  max-height: 160px;          /* Scroll start after 3–4 items */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Scrollbar Style */
.services-scroll::-webkit-scrollbar {
  width: 5px;
}

.services-scroll::-webkit-scrollbar-thumb {
  background: #00d2ff;
  border-radius: 5px;
}


/* Dropdown links */
.dropdown-link {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #e8f1ff;
  transition: 0.2s ease;
  font-size: 0.95rem;
}

.dropdown-link:hover {
  background: rgba(0,210,255,0.08);
  color: #00d2ff;
  padding-left: 20px;
}

/* Rotate Arrow */
.moreInformation.active i {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

/* Dropdown items */
.moreURL p {
  margin: 0;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--title-color, #e8f1ff);
  transition: .16s;
      display: block;
    width: 100%;
    white-space: nowrap;
}

.moreURL p:hover { color: var(--first-color, #00d2ff); transform: translateX(6px); }

/* show class for dropdowns */
.moreURL.show-dropdown {
    display: block !important;
}

/* on small screens make drop inline (not absolute) */

/* Mobile behavior */
@media (max-width: 768px) {

  .moreURL {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .services-scroll {
    max-height: 220px;
  }
  .nav__item-select .moreInformation { 
    display: flex; 
    align-items:center; 
    justify-content:space-between; 
  }
/* Responsive Sidebar Scroll Fix */
.nav__menu {
    max-height: 100vh;        /* Full screen height */
    overflow-y: auto;         /* Vertical scroll enabled */
    overflow-x: hidden;       /* Horizontal scroll disable */
}
/* Sidebar scroll fix */
.nav__menu {
  overflow-y: auto;      /* Sidebar ke andar scroll allowed */
  max-height: 100vh;     /* Full height */
}

/* Background overlay jab sidebar open ho */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 99;
  display: none;
}

.menu-overlay.active {
  display: block;
}
}

/* show class */
.show-dropdown {
  display: flex !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .nav__logo img {
    height: 38px;            /* Slightly smaller logo for mobile */
  }
}

@media screen and (max-width: 480px) {
  .nav__logo img {
    height: 32px;            /* Compact logo for very small screens */
  }
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
/* MOBILE MENU VISIBILITY FIX */
.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #0d0d0d;
  transition: 0.4s ease-in-out;
  padding: 2.5rem;
  z-index: 9999;
}

.nav__menu.show-menu {
  right: 0;
}

  /* nav list is vertical in mobile */
  .nav__list { display: flex; flex-direction: column; row-gap: 1.6rem; }

  .nav__close { display: block; }
  .nav__toggle { display: inline-flex; }
}

/* body no-scroll while mobile menu open */
body.no-scroll { overflow: hidden; }

/* Desktop layout overrides */
@media screen and (min-width: 768px) {
  .nav__menu { position: relative; right: 0; height: auto; background: transparent; padding: 0; }
  .nav__list { display:flex; flex-direction:row; column-gap: 1.75rem; align-items:center; }
  .nav__close, .nav__toggle { display: none; }
}


.nav__list {
  display: flex;
  flex-direction: column;
  /*row-gap: 2.5rem;*/
  column-gap: 2rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}
.nav__link {
  position: relative;
  transition: 0.3s ease;
}

.nav__link.active {
  position: relative;
  color: #00ffe7;
}

.nav__link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background: #00ffe7;
  border-radius: 2px;
  animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 4px #00ffe7; }
  50% { box-shadow: 0 0 12px #00ffe7; }
  100% { box-shadow: 0 0 4px #00ffe7; }
}




.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  /* color: var(--title-color); */
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle, 
.home__data-title, 
.home__social-link, 
.home__info {
  color: var(--white-color);
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

/* SOCIAL ICONS AREA */
.home__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* Mobile = 2 columns */
  gap: 0.8rem;
  width: 100%;
  max-width: 150px;
}

.home__social-link {
  font-size: 1.6rem;
  color: #bbb;
  /* background: rgba(255, 255, 255, 0.05); */
  padding: 12px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}




/*.home__social-link.li:hover { color: #0A66C2; box-shadow: 0 0 12px #0A66C2; }*/
/*.home__social-link.wa:hover { color: #25D366; box-shadow: 0 0 12px #25D366; }*/
/*.home__social-link.ig:hover { color: #E4405F; box-shadow: 0 0 12px #E4405F; }*/
/*.home__social-link.yt:hover { color: #FF0000; box-shadow: 0 0 12px #FF0000; }*/
/*.home__social-link.fb:hover { color: #1877F2; box-shadow: 0 0 12px #1877F2; }*/
/*.home__social-link.tw:hover { */
/*  color: #1DA1F2; */
/*  box-shadow: 0 0 12px #1DA1F2; */
/*}*/


/* BRAND COLORS — NORMAL STATE */
.home__social-link.li { color: #0A66C2; }
.home__social-link.wa { color: #25D366; }
.home__social-link.yt { color: #FF0000; }
.home__social-link.fb { color: #1877F2; }
.home__social-link.tw { color: #1DA1F2; }
/* INSTAGRAM — BRAND GRADIENT (NORMAL) */
.home__social-link.ig i {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #833AB4 90%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* Hover BRAND COLORS Glow and Effect */
/* LINKEDIN */
.home__social-link.li:hover {
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.8);
  background: rgba(10, 102, 194, 0.12);
}

/* WHATSAPP */
.home__social-link.wa:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
  background: rgba(37, 211, 102, 0.12);
}

/* INSTAGRAM */
/* INSTAGRAM — HOVER GLOW */
.home__social-link.ig:hover {
  box-shadow:
    0 0 12px rgba(214, 36, 159, 0.6),
    0 0 24px rgba(131, 58, 180, 0.6);
  background: linear-gradient(
    135deg,
    rgba(253, 89, 73, 0.18),
    rgba(214, 36, 159, 0.18),
    rgba(131, 58, 180, 0.18)
  );
}


/* YOUTUBE */
.home__social-link.yt:hover {
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  background: rgba(255, 0, 0, 0.12);
}

/*Facebook*/
.home__social-link.fb:hover {
  box-shadow: 0 0 15px rgba(10, 102, 194, 0.8);
  background: rgba(10, 102, 194, 0.12);
}

/* Hover Lift Effect */
.home__social-link:hover {
  transform: translateY(-4px);
}



/* TABLET & UP — single column for modern UI */
@media screen and (max-width: 767px) {
  .home__social {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
  }
}


/* TABLET & DESKTOP */
@media screen and (min-width: 768px) {
  /*.home__social {*/
  /*  display: flex;*/
  /*  flex-direction: column;*/
  /*  gap: 1.4rem;*/
  /*  max-width: max-content;*/
  /*  align-self: flex-end;*/
  /*  margin-bottom: 3rem;*/
  /*}*/
    .home__social {
      display: flex;  
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 0.5rem;
  }
}


.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
    /* flex-direction: column;       TEXT UP, IMAGE DOWN */
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
  
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
    /*width: 100%;*/
  max-width: 170px;
  /*height: auto;*/
}

.home__info-img:hover {
  transform: var(--img-scale);
  
}

@media screen and (max-width: 360px) {
  .home__info {
    padding: 0.75rem;
    max-width: 260px;
  }

  .home__info-title {
    font-size: 0.75rem;
  }

  .home__info-img {
    max-width: 180px;
  }
}

@media screen and (min-width: 768px) {
  .home__info {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
    flex-direction: row;    /* SIDE BY SIDE */
    align-items: center;
    gap: 1rem;
    width: 300px;
  }

  .home__info-img {
    max-width: 160px;
  }
}

@media screen and (min-width: 1024px) {
  .home__info {
    width: 360px;
    padding: 1.5rem;
    gap: 2rem;
  }

  .home__info-title {
    font-size: var(--normal-font-size);
  }

  .home__info-img {
    max-width: 240px;
  }
}



/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*================== HVSEC ABOUT in home page ==================*/
.hv-about {
  padding: 4rem 0;
  /*background: var(--hv-bg);*/
}

.hv-about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  align-items: center;
  gap: 3rem;
}

/* Left Content */
.hv-about-title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hv-about-title span {
  color: var(--hv-primary);
  text-shadow: 0 0 12px rgba(11,120,209,0.45);
}

.hv-about-desc {
  color: #ebe7e7;
  line-height: 1.7;
  font-size: var(--normal-font-size);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.hv-about-btn {
  padding: 0.75rem 1.6rem;
  background: var(--hv-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0, 122, 255, 0.35);
  transition: 0.35s;
}

.hv-about-btn:hover {
  background: var(--hv-accent);
  box-shadow: 0 10px 30px rgba(15,183,179,0.45);
}

/* Right - Video Frame */
.hv-video-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  overflow: hidden;
  outline: 2px solid rgba(30,193,255,0.4);
  box-shadow: 0 0 25px rgba(30,193,255,0.25);
}

.hv-about-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
}

/* Neon Glow Animation */
.hv-video-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 45px var(--anim-neon-1);
  animation: hvGlow 3s infinite alternate ease-in-out;
  border-radius: 14px;
  pointer-events: none;
}

@keyframes hvGlow {
  0% {
    box-shadow: 0 0 20px var(--anim-neon-1);
  }
  100% {
    box-shadow: 0 0 40px var(--anim-neon-2);
  }
}

/* Responsive Fix */
@media (max-width: 768px) {
  .hv-about-title {
    text-align: center;
  }

  .hv-about-desc {
    text-align: center;
    text-align: justify;
  }

  .hv-about-btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }

  .hv-about-right {
    display: flex;
    justify-content: center;
  }
}

/*=============== CONTACT ===============*/
/* ================================
   HACKVITRASEC – CONTACT PAGE (NEW)
================================ */

/* ================= ROOT (RESPONSIVE FONT SCALE) ================= */
:root{
  --hv-h2: clamp(28px, 4vw, 42px);
  --hv-h3: clamp(20px, 3vw, 26px);
  --hv-text: clamp(14px, 2.2vw, 16px);
  --hv-small: clamp(13px, 2vw, 14px);
}

/* ================= BACKGROUND ================= */
.hv-contact-section{
  position:relative;
  min-height:100vh;
  background:url("assets/img/contact_home_bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hv-contact-overlay{
  position:absolute;
  inset:0;
  background:rgba(6,10,18,.82);
}

/* ================= CONTAINER ================= */
.hv-contact-container{
  position:relative;
  z-index:2;
  width:92%;
  max-width:1200px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  padding:clamp(25px,4vw,50px);
}

.hv-seo-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ================= LEFT INFO ================= */
.hv-contact-info{
  color:#fff;
  animation:hvSlideLeft 1.2s ease forwards;
}

.hv-contact-info h2{
  font-size:var(--hv-h2);
  margin-bottom:12px;
}

.hv-contact-info p{
  font-size:var(--hv-text);
  opacity:.85;
  max-width:420px;
  margin-bottom:35px;
  line-height:1.7;
}

.hv-info-box{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  font-size:var(--hv-text);
}

.hv-info-box i{
  font-size:18px;
  color:#00ffe7;
  animation:hvPulse 2.5s infinite;
}

/* ================= SOCIAL ================= */
.hv-social-icons{
  margin-top:30px;
}

.hv-social-icons a{
  display:inline-flex;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#00ffe7;
  margin-right:10px;
  transition:.3s;
  font-size:16px;
}

.hv-social-icons a:hover{
  background:#00ffe7;
  color:#000;
  transform:translateY(-4px);
}

/* ================= FORM CARD ================= */
.hv-contact-form{
  background:rgba(15,20,30,.85);
  backdrop-filter:blur(8px);
  padding:clamp(25px,4vw,40px);
  border-radius:18px;
  box-shadow:0 0 30px rgba(0,0,0,.7);
  animation:hvSlideRight 1.2s ease forwards;
}

.hv-contact-form h3{
  font-size:var(--hv-h3);
  color:#fff;
  margin-bottom:28px;
}

/* ================= FLOATING INPUT ================= */
.hv-form-group{
  position:relative;
  margin-bottom:22px;
}

.hv-form-group input,
.hv-form-group textarea{
  width:100%;
  padding:14px;
  background:#0b0f17;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  color:#fff;
  outline:none;
  font-size:var(--hv-text);
}

.hv-form-group label{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#aaa;
  font-size:var(--hv-small);
  pointer-events:none;
  transition:.3s;
  background:#0b0f17;
  padding:0 6px;
}

.hv-form-group input:focus + label,
.hv-form-group textarea:focus + label,
.hv-form-group input:not(:placeholder-shown) + label,
.hv-form-group textarea:not(:placeholder-shown) + label{
  top:-8px;
  font-size:12px;
  color:#00ffe7;
}

.hv-form-group textarea{
  min-height:120px;
  resize:none;
}

.contact_schedule_meeting{
  margin-top:40px;
  padding:24px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(0,255,231,.08),rgba(0,199,255,.04));
  border:1px solid rgba(0,255,231,.25);
  text-align:left;
  max-width:420px;
}

.contact_schedule_title{
  font-size:1.4rem;
  color:#00ffe7;
  margin-bottom:8px;
}

.contact_schedule_meeting p{
  font-size:.95rem;
  opacity:.85;
  margin-bottom:18px;
}

.schedule-btn{
  background:linear-gradient(135deg,#00ffe7,#00c7ff);
  color:#000;
  padding:12px 22px;
  border:none;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
  transition:.35s ease;
  box-shadow:0 0 0 rgba(0,255,231,0);
}

.schedule-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 25px rgba(0,255,231,.6);
}


/* ================= BUTTON ================= */
.hv-submit-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:linear-gradient(135deg,#00ffe7,#00c7ff);
  color:#000;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  font-size:var(--hv-text);
}

.hv-submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 18px rgba(0,255,231,.6);
}

/* ================= ANIMATIONS ================= */
@keyframes hvSlideLeft{
  from{opacity:0;transform:translateX(-60px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes hvSlideRight{
  from{opacity:0;transform:translateX(60px)}
  to{opacity:1;transform:translateX(0)}
}

@keyframes hvPulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.15)}
  100%{transform:scale(1)}
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .hv-contact-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .hv-info-box{
    justify-content:center;
  }
}

/* =========####################==== About Page Updated New  ======##############================== */

/* ===========================================================
   HACKVITRASEC — ABOUT PAGE (Final Clean + No Duplicate)
   ========================================================== */

/* ===========================
   ABOUT GRID
=========================== */
.hv-about-grid {
  width: 92%;
  max-width: 1180px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.hv-about-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hv-about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30, 193, 255, 0.12);
}

.hv-about-card h3 {
  color: #e8f1ff;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.hv-about-card p {
  color: #9aa4b2;
  line-height: 1.6;
}

.hv-small {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===========================
   MISSION / VISION
=========================== */
.hv-mv {
  display: flex;
  gap: 16px;
}

.hv-mv-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hv-mv-item h4 {
  color: #1ec1ff;
  margin-bottom: 8px;
}

/* ===========================
   STATS
=========================== */
.hv-stats {
  width: 92%;
  max-width: 1180px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hv-stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.hv-stat-card:hover {
  transform: translateY(-8px);
}

.hv-counter {
  font-size: 2rem;
  font-weight: 800;
  color: #1ec1ff;
}

.hv-counter-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: #1ec1ff;
}

.hv-stat-label {
  color: #9aa4b2;
  margin-top: 8px;
}

/* ===========================
   IMAGE STRIP
=========================== */
/* IMAGE STRIP BASE */
.hv-image-strip {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.hv-image-track {
  display: flex;
  gap: 22px;
  animation: scroll-strip 36s linear infinite;
}

@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* IMAGE LINK */
.hv-image-link {
  text-decoration: none;
}

/* IMAGE ITEM */
.hv-image-item {
  width: 220px;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(0, 255, 200, 0.15);
  transition: all 0.35s ease;
  background: var(--dark-glass);
}

.hv-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.hv-image-item:hover img {
  transform: scale(1.12);
}

/* HOVER TEXT */
.service-about-hover {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  color: #00f2ff;
  font-size: 15px;
  letter-spacing: 0.4px;
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
}

.hv-image-item:hover .service-about-hover {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hv-image-item {
    width: 160px;
    height: 110px;
  }
  .service-about-hover {
    font-size: 13px;
  }
}


/* ===========================
   TEAM SECTION
=========================== */
/* ===========================
   TEAM SECTION (Optimized)
=========================== */

.team-section {
  padding: 6rem 1.5rem;
  text-align: center;
  max-width: 1280px;
  margin: auto;
  position: relative;
}
/* 
.team-section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #1ec1ff, #6e55ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
} */

.team-img-wrapper {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}


.team-section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #1ec1ff, #6e55ff, #00ff9c);
  border-radius: 10px;
  animation: hvTeamPulse 2s infinite ease-in-out;
}

@keyframes hvTeamPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.team-intro {
  max-width: 880px;
  margin: 2rem auto 3rem;
  color: #b7c9df;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* GRID */
.team-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  margin-top: 3.2rem;
}

/* CARD */
.team-card {
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Remove extra lighting from card hover */
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(30, 193, 255, 0.3);
}

/* PROFILE WRAPPER */
.team-content {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.2rem;
}

/* PROFILE IMAGE */
.team-img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background-color: #0f1624;

  /* Prevent distortion even if image is rectangular or small */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;

  border: 3px solid transparent;
  background: linear-gradient(135deg, #1ec1ff, #00ff9c) padding-box,
              linear-gradient(135deg, #1ec1ff, #6e55ff) border-box;

  transition: all 0.45s ease;
  box-shadow: 0 0 18px rgba(30, 193, 255, 0.35);
}


/* ONLY IMAGE GETS STRONG HOVER EFFECT */
.team-card:hover .team-img {
  transform: scale(1.12);
  box-shadow: 0 0 35px rgba(30, 193, 255, 0.75);
}

.team-info {
  text-align: left;
}

/* NAME */
.team-name {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* ROLE */
.team-role {
  color: #1ec1ff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* BIO */
.team-bio {
  margin-top: 0.9rem;
  color: #a8bad3;
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* HIGHLIGHT TAG */
.team-highlight {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 8px 14px;
  background: rgba(30, 193, 255, 0.12);
  border: 1px solid rgba(30, 193, 255, 0.28);
  border-radius: 8px;
  color: #1ec1ff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.team-card:hover .team-highlight {
  background: rgba(30, 193, 255, 0.22);
  border-color: #1ec1ff;
  transform: translateY(-2px);
}

/* REVEAL ANIMATION */
.hv-team-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hv-team-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
  .team-content {
    flex-direction: column;
    text-align: center;
  }

  .team-info {
    text-align: center;
  }

  .team-bio {
    text-align: center;
  }
  .team-intro{
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .team-img {
    width: 78px;
    height: 78px;
  }

  .team-name {
    font-size: 1.28rem;
  }

  .team-role {
    font-size: 0.9rem;
  }
    .team-intro{
    text-align: justify;
  }
}


/* END TEAM SECTION */
/* ===========================
   CTA BUTTONS
=========================== */
.hv-btn-primary {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(90deg, #1ec1ff, #0b78d1);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.35s;
  box-shadow: 0 10px 35px rgba(30, 193, 255, 0.3);
}

.hv-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(30, 193, 255, 0.4);
}

/* ===========================
   REVEAL ANIMATION
=========================== */
.hv-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s, transform 0.65s;
}

.hv-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hv-about-grid {
    grid-template-columns: 1fr;
  }
  .hv-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hv-stats {
    grid-template-columns: 1fr;
  }
  .hv-image-item {
    min-width: 180px;
    height: 110px;
  }
}

/* ============##########=== end About Page Style =========#########33========= */



/* =========####################==== End About Page Updated New  ======##############================== */


/* ================================= HOME SERVICES (UNIQUE CLASSES) ======================== */
.hv-home-services {
  width: 100%;
  padding: 90px 0;
  background: #070b12;
 
}

.hv-services-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  text-align: center;
}

/* ---- HEADINGS ---- */
.hv-services-heading {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}


.hv-services-sub {
  color: #aaa;
  margin-bottom: 60px;
}

/* ---- SERVICE ROWS ---- */
.hv-services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hv-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 30px 20px;
}

/* Left Service Structure */
.hv-left .hv-service-media-wrapper { order: 1; }
.hv-left .hv-service-text { order: 2; }

/* Right Service Structure */
.hv-right .hv-service-text { order: 1; }
.hv-right .hv-service-media-wrapper { order: 2; }

/* ---- TEXT AREA ---- */
.hv-service-text h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.hv-service-text p {
  color: #ccc;
  margin-bottom: 20px;
}

/* ---- SERVICE TITLE ACCENT LINE ---- */
.hv-service-title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #00ffe0, #0084ff, #b300ff);
  border-radius: 10px;
  margin-bottom: 18px;
  margin-top: -5px;
  opacity: 0.9;
  transition: 0.3s ease;
}

/* Hover effect (optional & premium look) */
.hv-service-text:hover .hv-service-title-line {
  width: 110px;
  opacity: 1;
}

/* ==============  INTERACTIVE SERVICE PARAGRAPH (hv-service-paragf)  =============== */

.hv-service-paragf {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #00eaff;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  animation: fadeUp 0.7s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* List styling */
.hv-service-paragf ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hv-service-paragf ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7d7d7;
  font-size: 0.98rem;
  margin-bottom: 10px;
  line-height: 1.5rem;
  transition: 0.3s ease;
}

/* ✔ Icon style */
.hv-service-paragf ul li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background: #00eaff;
  color: #000;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Hover Interaction */
.hv-service-paragf ul li:hover {
  transform: translateX(6px);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .hv-service-paragf {
    padding: 15px;
  }

  .hv-service-paragf ul li {
    font-size: 0.95rem;
  }
  
  .hv-services-heading{
    font-size: 2.3rem;
 }

}


.hv-service-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00ffe0, #0084ff);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.hv-service-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* ---- MEDIA BOX ---- */
.hv-service-media-wrapper {
  position: relative;
  width: 100%;
}

/* IMAGE HOVER ANIMATION */
.hv-service-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.3s ease;
}

.hv-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Zoom + Tilt Effect on Hover */
.hv-service-media-wrapper:hover .hv-service-media img {
  transform: scale(1.12) rotate(1.2deg);
  filter: brightness(1.12);
}

/* ---- OUTER MOVING LINES ---- */
.hv-outer-lines {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: calc(100% + 40px);
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.hv-outer-line {
  position: absolute;
  width: 180px;
  height: 2px;
  border-radius: 5px;
  opacity: 0.7;
  animation: outerMove 3s linear infinite;
}

@keyframes outerMove {
  0%   { transform: translateX(-150%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(150%); opacity: 0; }
}

/* ---- THEME COLORS ---- */
.blue-theme .hv-outer-line  { background: #00aeff; box-shadow: 0 0 12px #00aeff; }
.purple-theme .hv-outer-line { background: #c200ff; box-shadow: 0 0 12px #c200ff; }
.cyan-theme .hv-outer-line  { background: #00fff2; box-shadow: 0 0 12px #00fff2; }
.green-theme .hv-outer-line { background: #3dff8a; box-shadow: 0 0 12px #3dff8a; }

/* Hover Glow */
.hv-service-media-wrapper:hover .hv-service-media {
  box-shadow: 0 0 30px currentColor;
}
.hv-service-media-wrapper:hover .hv-outer-line {
  opacity: 1;
  filter: brightness(1.6);
}

/* ---- MORE BUTTON ---- */
.hv-more-btn {
  margin-top: 50px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00ffe0, #006eff);
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.hv-more-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hv-service-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Disable alternating ordering */
  .hv-left .hv-service-media-wrapper,
  .hv-left .hv-service-text,
  .hv-right .hv-service-text,
  .hv-right .hv-service-media-wrapper {
    order: unset;
  }

  .hv-service-media {
    height: 240px;
  }
}


/* ============== SERVICE Pages Desinging included hv Services  =============== */


.why-choose {
  padding: 4.5rem 0;
  /* background-color: var(--first-color-second); */
}

.why-choose__container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-choose__item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--input-color);
  border-radius: 0.5rem;
}

.why-choose__icon {
  font-size: 2rem;
  color: var(--first-color);
  margin-bottom: var(--mb-0-75);
}

.why-choose__item h3 {
  margin-bottom: var(--mb-0-5);
}

.why-choose__item p {
  color: var(--text-color-light);
}


/* ===================== SUPPORTS / CLIENT SLIDER ===================== */
.hv-supports {
  text-align: center;
  padding: 3rem 0;
}

.hv-supports .section__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Slider Container */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  backdrop-filter: blur(2px); /* Better readability on busy BG */
}

/* Track – Infinite Loop */
.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLeft 18s linear infinite;
  padding-left: 100%; /* ensures seamless infinite flow */
}


/* Logo Image */
.client-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  filter: brightness(0.95) contrast(1.1); /* visible on all BGs */
  transition: 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

/* Hover */
.client-logo:hover {
  transform: scale(1.17);
  filter: brightness(1.1);
}

/* Smooth Infinite Flow */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}

/* ============ DOTS NAVIGATION ============ */
.slider-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(3px);
}

.slider-dots .dot:hover {
  background: rgba(0, 255, 225, 0.7);
  transform: scale(1.2);
}

.slider-dots .dot.active {
  background: linear-gradient(45deg, #0ef5c9, #00c6ff);
  box-shadow: 0 0 8px rgba(0, 255, 220, 0.8);
  transform: scale(1.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .logo-box-sup { width: 115px; height: 65px; }
}
@media (max-width: 768px) {
  .logo-box-sup { width: 100px; height: 60px; }
  .logo-track { gap: 28px; animation-duration: 22s; }
}
@media (max-width: 480px) {
  .logo-box-sup { width: 85px; height: 50px; padding: 5px; }
  .logo-track { gap: 20px; animation-duration: 25s; }
  .dot { width: 10px; height: 10px; }
}


/*================== DISCOVER IMPROVED ==================*/

/* Card container fix */
.hv-discover-card {
  position: relative;
  width: 230px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* Hover Glow */
.hv-discover-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--anim-neon-1);
  box-shadow: 0 0 22px var(--anim-neon-1), 0 0 30px var(--anim-neon-2);
}

/* Image box fix */
.hv-discover-img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
/* discover links */
.discover-link {
  text-decoration: none;
  color: inherit;
  display: block; /* CARD FULL CLICKABLE */
  width: 100%;
  height: 100%;
}


.discover-link:hover {
  text-decoration: none;
}

/* Image */
.discover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Proper cropping */
  transition: 0.35s ease;
}


.hv-discover-card:hover .discover__img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

/* Overlay */
.discover__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(255,255,255,0));
  pointer-events: none;
}

/* Text Section */
.hv-discover-data {
  position: absolute;
  bottom: 1.4rem;
  left: 1rem;
  z-index: 5;
}

.discover__title {
  color: #fff;
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0px 0px 8px rgba(0,0,0,0.3);
}

.discover__description {
  color: #e2e8f0;
  font-size: 0.8rem;
  text-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

/* Remove Swiper Shadows */
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

/* container fix */
.discover__container {
  padding-top: 1.5rem;
}

/* ========================================================= */
/* EXPLORE ALL LABS BUTTON */
/* ========================================================= */
.discover-btn-container {
  text-align: center;
  margin-top: 2rem;
}

.discover-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, var(--anim-neon-1), var(--anim-neon-2));
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 12px var(--anim-neon-1), 0 0 18px var(--anim-neon-2);
}

.discover-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 18px var(--anim-neon-1), 0 0 26px var(--anim-neon-2);
}


/* ===========================================================
   ADVERTISEMENT SECTION — STYLE 1 (Dark Neon • Upgraded)
   =========================================================== */

.ad-section {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

/* Main Container */
.ad-container {
  width: 92%;
  max-width: 1100px;
  border-radius: 20px;
  padding: 25px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,255,255,0.12);
  box-shadow: 0 0 22px rgba(0,255,255,0.16);
  backdrop-filter: blur(14px);
  transition: 0.35s;
}

.ad-container:hover {
  /* box-shadow: 0 0 40px rgba(0,255,255,0.28); */
  transform: translateY(-4px);
  border-color: rgba(0,255,255,0.32);
}

/* ----------------- IMAGE + OVERLAY TEXT ----------------- */
.ad-img {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}

.ad-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
}

/* Zoom on hover */
.ad-img:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Overlay Text */
.ad-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  transition: 0.3s ease;
}

.ad-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg, #00ffe0, #00a2ff);
  -webkit-background-clip: text;
  color: transparent;
}

.ad-overlay p {
  font-size: 0.9rem;
  color: #e3e3e3;
  margin-top: 4px;
}

/* ----------------- TEXT CONTENT ----------------- */
.ad-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #eee;
}

.ad-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00ffe0, #00a2ff, #b300ff);
  -webkit-background-clip: text;
  color: transparent;
}

.ad-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #cfcfcf;
  margin-bottom: 18px;
}

/* Small Button */
.ad-btn-sm {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00ffe0, #00a2ff);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  width: fit-content;
  transition: 0.28s;
}

.ad-btn-sm:hover {
  transform: scale(1.08);
  filter: brightness(1.3);
}

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 900px) {
  .ad-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .ad-img img {
    height: 240px;
  }

  .ad-overlay {
    text-align: center;
  }

  .ad-btn-sm {
    margin: auto;
  }
  .ad-text{
    text-align: justify;
  }
}



/*=============== EXPERIENCE SECTION (CIRCLE STYLE) ===============*/

.experience {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Grid layout */
.exp-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  margin-top: 3rem;
}

/* Circle card container */
.exp-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circle design */
.exp-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--hv-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e1626;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.25);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Cyber Glow */
.exp-circle::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, var(--hv-accent), transparent 70%);
  top: -40%;
  left: -40%;
  opacity: 0.15;
  filter: blur(20px);
}

/* Hover effect */
.exp-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0, 200, 255, 0.45);
  border-color: var(--hv-accent);
}

/* Number */
.exp-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--hv-accent);
  z-index: 2;
}

/* Label */
.exp-text {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--hv-muted);
  font-weight: 500;
}

/*=============== RESPONSIVE ===============*/

/* Tablets - 3 columns */
@media (max-width: 992px) {
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large mobiles - 2 columns */
@media (max-width: 768px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-circle {
    width: 130px;
    height: 130px;
  }
}

/* Small mobiles - 1 column */
@media (max-width: 480px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-circle {
    width: 120px;
    height: 120px;
  }
}

/*************** Ultra-Enhanced Cybersecurity Theme (HackVitraSec Style) *******************/
:root{
  --radius:16px;
  --maxw:1200px;

  /* Neon Theme */
  --n1:#1EC1FF;
  --n2:#6E55FF;
  --n3:#00FF9C;

  /* Dark Base */
  --bg:#000;
  --surface:#0e1117;
  --glass:rgba(255,255,255,0.03);

  --text:#e9f6ff;
  --muted:#98a6b5;

  --ease:cubic-bezier(.2,.7,.3,1);
  --tr:300ms var(--ease);
}

/* Section BG – More Futuristic */
.wv-section{
  padding:70px 20px;
  /* background:
    radial-gradient(900px 300px at 20% 20%, rgba(30,193,255,.08), transparent),
    radial-gradient(900px 350px at 80% 80%, rgba(110,85,255,.05), transparent),
    var(--bg); */
}

/* Container */
.wv-container{ max-width:var(--maxw); margin:auto; }

/* Header */
.wv-header{text-align:center; margin-bottom:40px;}
/*.wv-title{*/
/*  font-size:2.4rem;*/
/*  letter-spacing:-0.02em;*/
/*  font-weight:800;*/
/*  color:var(--text);*/
/*}*/
.wv-sub{
  color:var(--muted);
  margin-top:10px;
  font-size:1.05rem;
}

/* Animated Gradient Text Upgrade */
.wv-gradient{
  background:linear-gradient(90deg,var(--n1),var(--n2),var(--n3));
  background-size:300% 100%;
  animation:shift 5s linear infinite;
  -webkit-background-clip:text;
  color:transparent;
}
@keyframes shift{
  0%{background-position:0 0;}
  50%{background-position:100% 0;}
  100%{background-position:0 0;}
}

/* =================== MAIN FLEX =================== */
.wv-main{
  display:grid;
  grid-template-columns:1fr 520px;
  gap:32px;
}

/* Mobile Stack */
@media(max-width:980px){
  .wv-main{ grid-template-columns:1fr; }
  .wv-terminal-wrap{ order:-1; }
}

/* =================== LEFT CARD =================== */
.wv-card{
  position:relative;
  padding:30px;
  border-radius:var(--radius);
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.04);
  backdrop-filter:blur(10px);
  box-shadow:
    0 20px 40px rgba(0,0,0,.6),
    inset 0 0 40px rgba(30,193,255,0.03);
  transition:transform var(--tr), box-shadow var(--tr);
}

/* 3D Lift */
.wv-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:
    0 25px 55px rgba(30,193,255,.15),
    inset 0 0 60px rgba(110,85,255,.08);
}

/* Parallax Glow */
.wv-card-glow{
  position:absolute;
  inset:-20% -10% auto auto;
  width:360px;height:360px;
  background:
    radial-gradient(circle at 30% 30%,rgba(30,193,255,.12),transparent),
    radial-gradient(circle at 70% 70%,rgba(110,85,255,.10),transparent);
  filter:blur(40px);
  opacity:.7;
}

/* Card Header */
.wv-card-top{display:flex;align-items:center;gap:16px;margin-bottom:15px;}
.wv-logo{
  width:64px;height:64px;border-radius:12px;
  /* background:linear-gradient(180deg,rgba(255,255,255,0.06),rgba(255,255,255,0.02)); */
  /* border:1px solid rgba(255,255,255,0.07); */
  display:flex;align-items:center;justify-content:center;
  /* box-shadow:inset 0 8px 20px rgba(30,193,255,0.05); */
}
.wv-toolname{
  margin:0;font-size:1.35rem;font-weight:800;color:var(--text);
}
.wv-short{
  margin:6px 0 0;color:var(--muted);font-size:1rem;
}

/* Features */
.wv-features{
  list-style:none;margin:22px 0;padding:0;display:grid;gap:12px;
}
.wv-features li{
  display:flex;align-items:center;gap:12px;
  color:var(--text);font-size:1rem;font-weight:600;
}

/* Glowing Icons */
.icon-glow{
  width:32px;height:32px;border-radius:8px;
  display:grid;place-items:center;
  font-size:15px;color:#fff;
  background:linear-gradient(120deg,rgba(30,193,255,.12),rgba(110,85,255,.1));
  box-shadow:
    0 0 12px rgba(30,193,255,.18),
    inset 0 0 12px rgba(110,85,255,.14);
}

/* CTA Buttons */
.wv-cta-row{display:flex;gap:14px;margin-top:10px;}

/* Main CTA */
.wv-cta{
  padding:12px 20px;border-radius:10px;font-weight:800;
  text-decoration:none;
  background:linear-gradient(90deg,var(--n1),var(--n2));
  color:#00151d;
  transition:var(--tr);
  box-shadow:0 12px 30px rgba(30,193,255,.25);
}
.wv-cta:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 16px 40px rgba(30,193,255,.35);
}

/* Secondary */
.wv-ghost{
  padding:10px 16px;border-radius:10px;font-weight:700;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  color:var(--text);
  transition:var(--tr);
}
.wv-ghost:hover{
  border-color:var(--n1);
  background:rgba(30,193,255,.06);
}

/* =================== TERMINAL =================== */
.wv-terminal{
  background:rgba(8,12,20,0.88);
  backdrop-filter:blur(10px);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.04);
  box-shadow:
    0 18px 40px rgba(0,0,0,.6),
    inset 0 0 20px rgba(30,193,255,0.05);
  transition:var(--tr);
}
.wv-terminal:hover{
  transform:translateY(-5px);
  box-shadow:0 25px 45px rgba(30,193,255,.2);
}

.wv-term-header{
  display:flex;gap:8px;align-items:center;
  padding:12px 15px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.term-title{color:var(--muted);font-size:.9rem;font-weight:700;}
.term-badge{
  margin-left:auto;
  background:rgba(255,255,255,.06);
  padding:6px 10px;border-radius:8px;
  color:var(--muted);
  font-size:.8rem;
}

.wv-term-content{
  padding:22px;color:#d8f3ff;
  font-family:monospace;
  white-space:pre-wrap;
  font-size:1rem;
  min-height:180px;
  transition:var(--tr);
}

.wv-terminal:hover .wv-term-content{
  transform:translateY(-5px);
  filter:brightness(1.15);
}

/* Cursor Blink */
.wv-term-cursor{
  position:absolute;bottom:12px;right:16px;
  color:var(--n1);opacity:.3;
}
.wv-terminal:hover .wv-term-cursor{
  animation:blink 1s steps(2) infinite;
  opacity:1;
}
@keyframes blink{
  0%{opacity:1;}
  50%{opacity:0;}
  100%{opacity:1;}
}


/* ===================== Result List Inside Terminal ===================== */
/* ============================================================
   WebVulnDefender — Cyber Glow Result List (Premium Enhanced)
   ============================================================ */
.wv-result-list {
  margin: 18px 24px 30px;
  padding: 0;
  list-style: none;
  font-family: monospace;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

/* Individual item container */
.wv-result-list li {
  padding: 10px 14px 10px 18px;
  border-left: 3px solid currentColor;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Neon Bullet Glow */
.wv-result-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 0 8px currentColor,
    0 0 15px currentColor,
    0 0 25px currentColor;
  flex-shrink: 0;
}

/* Hover Cyber Animation */
.wv-result-list li:hover {
  transform: translateX(8px) scale(1.02);
  filter: brightness(1.35);
  box-shadow:
    0 0 12px currentColor,
    0 0 20px currentColor;
}

/* Pulsing Animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px currentColor; }
  50% { box-shadow: 0 0 18px currentColor; }
  100% { box-shadow: 0 0 8px currentColor; }
}
.wv-result-list li::before {
  animation: pulseGlow 2.2s infinite ease-in-out;
}

/* Severity Colors */
.wv-result-list .crit {
  color: #ff4d4d;
}
.wv-result-list .warn {
  color: #ffd75e;
}
.wv-result-list .good {
  color: #4dff92;
}

/* Optional subtle floating animation (makes it premium) */
@keyframes floatItem {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
.wv-result-list li:nth-child(1) { animation: floatItem 4s infinite ease-in-out; }
.wv-result-list li:nth-child(2) { animation: floatItem 4.5s infinite ease-in-out; }
.wv-result-list li:nth-child(3) { animation: floatItem 5s infinite ease-in-out; }



/*************** Client Live Section *******************/
/* MAIN SECTION */
.clients-live { 
  max-width: var(--max-width); 
  margin: 0 auto; 
  padding: 40px 18px;
}

/* HEADER */
.clients-head { 
  display:flex; 
  gap:20px; 
  align-items:flex-start; 
  justify-content:space-between; 
  flex-wrap:wrap; 
  padding: 0 60px;
}

.clients-title { 
  margin:0; 
  font-size:1.8rem; 
  font-weight:800; 
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip:text;
  color: transparent;
}

.clients-sub { 
  margin:4px 0 0; 
  color:var(--muted); 
  font-size:0.95rem; 
}

/* CONTROLS BAR */
.clients-controls { 
  display:flex; 
  gap:12px; 
  align-items:center; 
  flex-wrap:wrap; 
  width:100%;
}

/* SEARCH BAR */
.search-wrap{
  flex:1;
  min-width:160px;
}

.search-wrap input{
  width:100%;
  background: var(--glass);
  border:1px solid rgba(255,255,255,0.06);
  padding:10px 14px;
  border-radius: 10px;
  color: #fff;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.search-wrap input:focus{
  box-shadow: 0 0 18px rgba(30,193,255,0.18);
  border-color: var(--accent);
}

/* FILTERS */
.filter-wrap { 
  display:flex; 
  gap:8px; 
  flex-wrap:wrap;
}

.filter-btn{
  background: transparent;
  color: var(--muted);
  border:1px solid rgba(255,255,255,0.05);
  padding:8px 12px;
  border-radius: 8px;
  cursor:pointer;
  font-weight:600;
  transition: all .15s ease;
}

.filter-btn.active { 
  color:#fff; 
  background: linear-gradient(90deg,var(--accent),var(--accent-2)); 
  box-shadow: 0 6px 20px rgba(11,120,209,0.22);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* SORT */
.sort-wrap { 
  display:flex; 
  align-items:center; 
  gap:8px; 
  color:var(--muted); 
}

#sortBy { 
  padding:8px 10px; 
  border-radius:8px; 
  border:1px solid rgba(255,255,255,0.06); 
  background:var(--glass); 
  color:#fff; 
}

/* CLIENTS GRID */
.clients-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:20px;
  margin-top:25px;
  padding: 0 60px;
}

/* CARDS */
.client-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
  transition: transform .18s cubic-bezier(.2,.9,.3,1), box-shadow .18s;
  min-height:180px;
}

.client-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 14px 30px rgba(10,40,80,0.24); 
  border-color: rgba(30,193,255,0.15); 
}

/* TOP */
.client-top { 
  display:flex; 
  gap:14px; 
  align-items:center; 
}

/* CLIENT LOGO — PERFECT AUTO FIT FOR ANY IMAGE SIZE */
.client-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px; /* extra inner spacing for logos */
  box-shadow: 0 0 12px rgba(30,193,255,0.15);  /* glow logos border*/
}


/* LOGO OUTER CIRCLE */
.client-logo-box {
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  box-shadow: 0 0 12px rgba(30, 193, 255, 0.15);
}
.client-logo-box:hover{
  transform: scale(1.15);
  filter: brightness(1.1);
  border: 1px solid rgba(17, 157, 250, 0.377);
}

/* make ANY type of logo auto-fit inside the circle WITHOUT distortion */
/* LOGO IMAGE PERFECT FIT */
.client-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  transition: 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
}

/* Hover */
.client-logo-box:hover .client-logo-img {
  transform: scale(1.15);
  filter: brightness(1.1);
}



/* META */
.client-name { 
  margin:0; 
  font-size:1.05rem; 
  font-weight:700; 
  color:#fff; 
}

.client-platform { 
  font-size:0.8rem; 
  color:var(--muted); 
}

/* BODY */
.client-body { 
  display:flex; 
  flex-direction:column; 
  gap:12px; 
}

/* PROGRESS */
.progress-row { display:flex; flex-direction:column; gap:8px; }
.progress-info { display:flex; justify-content:space-between; align-items:center; color:var(--muted); font-size:0.85rem; }
.progress-percent { font-weight:700; color:#fff; }

.progress-bar {
  width:100%;
  height:10px;
  background: rgba(255,255,255,0.06);
  border-radius:999px;
  overflow:hidden;
}

.progress-fill {
  height:100%;
  width:0%;
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  transition: width .8s ease;
}

.p-98{ width:98%; }
.p-72{ width:72%; }
.p-24{ width:24%; }

/* RED LOW PROGRESS */
.client-card[data-progress="24"] .progress-fill { 
  background: linear-gradient(90deg,#ff7a7a,#ff2f66); 
}

/* PILLS */
.client-stats { display:flex; gap:8px; flex-wrap:wrap; }
.pill { 
  background: rgba(255,255,255,0.03); 
  padding:6px 8px; 
  border-radius:8px; 
  font-size:0.78rem; 
  color:var(--muted); 
  border:1px solid rgba(255,255,255,0.05); 
}
.pill.lang{ color:#fff; }

/* FOOTER */
.client-footer{ 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
}

.status{
  padding:6px 10px; 
  border-radius:999px; 
  font-weight:700; 
  font-size:0.78rem; 
  color:#000; 
}

.status.in-progress{ background: linear-gradient(90deg,var(--accent),var(--accent-2)); }
.status.completed{ background:linear-gradient(90deg,#6cffb0,#00b37a); }
.status.paused{ background: linear-gradient(90deg,#ffb86b,#ff6b6b); }

.view-link{ 
  color:var(--accent); 
  text-decoration:none; 
  font-weight:700; 
  font-size:0.9rem; 
}

/* ================= RESPONSIVE FIXES ===================== */
@media (max-width:900px){
  .clients-head{ flex-direction:column; align-items:flex-start; }
  .clients-controls{ justify-content:flex-start; }
}

@media (max-width:600px){
  .clients-controls{ flex-direction:column; align-items:stretch; gap:14px; }
  .filter-wrap{ justify-content:flex-start; }
  .sort-wrap{ justify-content:flex-start; }
}


/* ==============================
   ADVANCED AUDIT SECTION STYLE
============================== */
.hv-adv-audit {
  padding: 90px 0;
  width: 92%;
  max-width: 1300px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/*.hv-a-title {*/
/*  text-align: center;*/
/*  font-size: 2.6rem;*/
/*  margin-bottom: 60px;*/
/*  font-weight: 700;*/
/*}*/

.hv-a-title span {
  color: #00e9ff;
}

/* GRID */
.hv-a-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 2rem;
}

/* CARDS */
.hv-a-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.hv-a-card:hover {
  transform: translateY(-5px);
  border-color: #00d2ff;
  box-shadow: 0 0 22px rgba(0,255,255,0.18);
}

.hv-a-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.hv-a-icon i {
  font-size: 1.6rem;
  color: #00f0ff;
}

.hv-a-content h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.hv-a-content .highlight {
  color: #00d2ff;
}

.hv-a-content p {
  color: #b5beca;
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ANIMATION BASE */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.show-anim {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}

/* Buttons */
.hv-a-buttons {
  margin-top: 45px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Text Button */
.hv-a-btn-text {
  color: #00eaff;
  font-size: 1rem;
  transition: 0.3s ease;
  opacity: 0.85;
}

.hv-a-btn-text:hover {
  color: #8f4aff;
  opacity: 1;
  text-shadow: 0 0 10px #8f4aff;
}

.hv-a-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00d2ff, #2a7bff, #9c00ff);
  background-size: 300%;
  padding: 14px 38px;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.35);
}

.hv-a-btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(149, 0, 255, 0.6);
  background-position: 100% 0;
}
.audit-floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.07);
  filter: blur(1px);
  animation: floatCircle 8s infinite ease-in-out;
}

.c1 { width: 55px; height: 55px; top: 15%; left: 5%; animation-delay: 0s; }
.c2 { width: 35px; height: 35px; bottom: 20%; right: 12%; animation-delay: 1.5s; }
.c3 { width: 70px; height: 70px; bottom: 10%; left: 15%; animation-delay: 3s; }

@keyframes floatCircle {
  0% { transform: translateY(0px); opacity: 0.4; }
  50% { transform: translateY(-20px); opacity: 0.8; }
  100% { transform: translateY(0px); opacity: 0.4; }
}

.audit-line {
  position: absolute;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, #00eaff, transparent);
  opacity: 0.35;
  animation: moveLine 6s infinite linear;
}

.l1 { top: 18%; right: 25%; animation-duration: 5s; }
.l2 { bottom: 28%; left: 20%; animation-duration: 7s; }
.l3 { top: 50%; left: 40%; animation-duration: 9s; }

@keyframes moveLine {
  0% { transform: translateX(-30px); }
  100% { transform: translateX(30px); }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .hv-a-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================
      KNOWLEDGE HUB STYLES
============================ */
.hv-knowledge {
  padding: 70px 0;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hv-k-header {
  text-align: center;
  margin-bottom: 50px;
}

/*.hv-k-header h2 {*/
/*  font-size: 2.5rem;*/
/*  font-weight: 700;*/
/*}*/

.hv-k-header p {
  font-size: 1.1rem;
  opacity: 0.7;
}

/* GRID LAYOUT */
.hv-k-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
}

/* ARTICLE DATE */
.hv-article-date {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

/* CARD BASE */
.hv-k-card {
  background: #0f0f0f;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.hv-k-card:hover {
  transform: translateY(-5px);
  border-color: #00d0ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.hv-k-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hv-big-card img {
  height: 350px;
}

/* CARD CONTENT */
.hv-k-content {
  padding: 18px 20px 25px;
}

.hv-k-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.hv-k-read {
  font-size: 0.9rem;
  color: var(--hv-accent);
  background: rgba(30, 193, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--hv-accent);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
    margin-top: 15px;
}

.hv-k-read:hover {
  background: var(--hv-accent);
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 193, 255, 0.4);
}

/* Bullet List Style */
.hv-article-ul {
  margin: 10px 0 15px;
  padding-left: 18px;
}

.hv-article-ul li {
  margin-bottom: 6px;
  color: #ccc;
  font-size: 0.95rem;
  position: relative;
}

.hv-article-ul li::before {
  content: "✔";
  color: #00eaff;
  margin-right: 8px;
}

/* Animation Base */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* Animation Trigger */
[data-anim].active {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="fade-left"] {
  transform: translateX(40px);
}

[data-anim="fade-left"].active {
  transform: translateX(0);
}

[data-anim="fade-right"] {
  transform: translateX(-40px);
}

[data-anim="fade-right"].active {
  transform: translateX(0);
}


/* BOTTOM ROW (right side) */
.hv-k-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.small img {
  height: 150px;
}

/* Button */
.hv-k-btn-wrap {
  text-align: center;
  margin-top: 35px;
}

.hv-k-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00d2ff, #7f00ff);
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.hv-k-btn:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width: 980px) {
  .hv-k-grid {
    grid-template-columns: 1fr;
  }
  .hv-big-card img {
    height: 260px;
  }
}

@media(max-width: 600px) {
  .hv-k-bottom-row {
    grid-template-columns: 1fr;
  }
}




/*=============== VIDEO ===============*/
.video__container {
  padding-bottom: 1rem;
}

.video__description {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.video__content {
  position: relative;
}

.video__button {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  padding: 1rem 1.5rem;
}

.video__button-icon {
  font-size: 1.2rem;
}

/* ===================== CASE STUDIES SECTION ===================== */
.hv-cases {
  padding: 80px 0;
  width: 90%;
  margin: auto;
  max-width: 1250px;
  padding: 0px 20px;
}

.hv-case-header {
  text-align: center;
  margin-bottom: 55px;
}

/*.hv-case-header h2 {*/
/*  font-size: 2.5rem;*/
/*  font-weight: 800;*/
/*  color: var(--title-color);*/
/*}*/

.hv-case-header p {
  opacity: 0.7;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--text-color);
}

/* GRID */
.hv-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

/* CARD */
.hv-case-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: 0.35s ease;
  position: relative;
}

.hv-case-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* IMAGE */
.hv-case-img {
  height: 190px;
}

.hv-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.hv-case-content {
  padding: 20px;
  color: var(--text-color);
}

.hv-case-content h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  color: var(--title-color);
}

/* TAG */
.hv-case-tag {
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}

.tag-yellow { background: #ffcc0020; color: #ffcc00; }
.tag-blue   { background: #33a1fd20; color: #33a1fd; }
.tag-red    { background: #ff4b4b20; color: #ff4b4b; }
.tag-green  { background: #4fff8420; color: #4fff84; }

/* FOOTER */
.hv-case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.hv-case-date {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hv-case-btn {
  font-size: 0.9rem;
  color: var(--hv-accent);
  background: rgba(30, 193, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--hv-accent);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.hv-case-btn:hover {
  background: var(--hv-accent);
  color: #000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 193, 255, 0.4);
}

/* Main Button */
.hv-case-btn-wrap {
  margin-top: 35px;
  text-align: center;
}

.hv-case-main-btn {
  padding: 13px 28px;
  background: #ffb700;
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  transition: 0.3s;
}

.hv-case-main-btn:hover {
  background: #e0a300;
}



/* ===================== TRUSTED SECTION ===================== */
.trusted-section {
  background: #000;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* Title */
.trusted-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.trusted-title span {
  background: linear-gradient(45deg, #00f5ff, #15ff75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trusted-subtitle {
  opacity: 0.85;
}

.trusted-underline {
  width: 80px;
  height: 4px;
  background: #9b4dff;
  margin: 14px auto 45px;
  border-radius: 50px;
}

/* ===================== MODERN WHITE TABLE STYLE ===================== */
.trusted-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: auto;
  max-width: 1250px;

  background: #ffffff15;
  border: 1px solid #ffffff25;
  border-radius: 16px;
  overflow: hidden;

  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

/* ===================== TABLE CELL ===================== */
.trusted-cell {
  border: 1px solid #ffffff15;
  padding: 30px;
  height: 150px;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: .25s ease;
}

.trusted-cell:hover {
  background: #ffffff20;
  transform: scale(1.04);
  border-color: #0ef5c9;
  box-shadow: 0 0 15px rgba(14, 245, 201, 0.3);
}

/* ===================== LOGO BOX FIX (EVERY LOGO VISIBLE) ===================== */
.logo-box {
  /* width: 150px; */
  height: 70px;
  /* background: #fff; */
  border-radius: 12px;

  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* box-shadow: 0 0 12px rgba(0,0,0,0.15); */
  transition: .3s ease;
}

.logo-box:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(14, 245, 201, 0.4);
}

/* Auto-fit logos */
.logo-box img {
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
}

/* Hide extra logos initially */
.hidden-more {
  display: none;
}

/* ===================== SHOW MORE BUTTON ===================== */
.show-toggle-btn {
  margin-top: 35px;
  background: linear-gradient(45deg, #0ef5c9, #00c6ff);
  padding: 12px 32px;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;

  box-shadow: 0 0 18px rgba(14, 245, 201, 0.5);
  transition: .3s;
}

.show-toggle-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(0, 255, 230, 0.8);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 480px) {
  .trusted-cell {
    height: 120px;
  }
  .logo-box {
    width: 120px;
    height: 60px;
  }
}


/*=============== SPONSORS ===============*/
.sponsor__container {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  justify-items: center;
  row-gap: 3.5rem;
}

.sponsor__content:hover .sponsor__img {
  filter: invert(0.5);
}

.sponsor__img {
  width: 90px;
  filter: invert(0.7);
  transition: var(--img-transition);
}

/* ====================== HACKVITRASEC FOOTER ======================= */
/* ====================== HACKVITRASEC FOOTER ======================= */
.hv-footer {
  background: #000;
  padding: 70px 20px 45px;
  border-top: 1px solid #0d0d0d;
}

.hv-footer-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.hv-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

/* BRAND BOX SPECIAL SPACING */
.hv-footer-box-hvsec {
  padding-right: 30px;
}

/* NORMAL FOOTER BOX */
.hv-footer-box {
  padding-right: 30px;
  transition: .35s ease;
}

/* Smooth Hover Effect Without Border or Card */
.hv-footer-box:hover,
.hv-footer-box-hvsec:hover {
  opacity: 0.95;
}

/* BRAND TITLE — BLUE GRADIENT */
.hv-footer-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #1EC1FF, #0B78D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

/* Subtitles */
.hv-footer-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Description */
.hv-footer-text {
  color: #b4b4b4;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Social Icons */
.hv-footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

/* Base icon */
.hv-footer-social {
  --brand: #aaa; /* fallback */
  color: var(--brand);
  font-size: 1.6rem;
  transition: 
    transform 0.35s ease,
    filter 0.35s ease,
    text-shadow 0.35s ease;
}

/* Hover glow */
.hv-footer-social:hover {
  transform: translateY(-6px) scale(1.15);
  filter: brightness(1.25);
  text-shadow:
    0 0 8px var(--brand),
    0 0 18px var(--brand),
    0 0 32px var(--brand);
}

/* Cyber pulse */
.hv-footer-social:hover i {
  animation: glowPulse 1.4s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px var(--brand);
  }
  to {
    text-shadow:
      0 0 18px var(--brand),
      0 0 36px var(--brand);
  }
}

/* Instagram Gradient Brand */
.hv-footer-social.instagram i {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hover glow for Instagram */
.hv-footer-social.instagram:hover {
  transform: translateY(-6px) scale(1.15);
}

.hv-footer-social.instagram:hover i {
  text-shadow:
    0 0 10px #fd5949,
    0 0 22px #d6249f,
    0 0 36px #285AEB;
}


/* Footer Links */
.hv-footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hv-footer-link {
  color: #cfd0d1;
  font-size: .95rem;
  transition: .25s ease;
}

.hv-footer-link:hover {
  color: #1EC1FF;
  padding-left: 5px;
}

/* Subscribe Box */
.hv-footer-subscribe form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Input */
.hv-sub-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #1c1c1c;
  background: #0c0c0c;
  color: #e1e1e1;
  border-radius: 6px;
}

/* Button */
.hv-sub-btn {
  width: 100%;
  padding: 10px 18px;
  background: #0B78D1;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: .25s;
}

.hv-sub-btn:hover {
  background: #1EC1FF;
  box-shadow: 0 0 8px rgba(30,193,255,0.5);
}

/* Bottom Bar */
.hv-footer-bottom {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid #111;
  text-align: center;
}

.hv-footer-copy {
  color: #8b8b8b;
  margin-bottom: 10px;
}

.hv-footer-terms {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hv-footer-bottom-link {
  color: #bcbcbc;
  font-size: .9rem;
  transition: .25s;
}

.hv-footer-bottom-link:hover {
  color: #1EC1FF;
}

/* Responsive */
@media (max-width: 600px) {
  .hv-footer-title { font-size: 1.7rem; }
  .hv-footer-grid { gap: 20px; }
  .hv-footer-box, 
  .hv-footer-box-hvsec { padding-right: 0; }
}


/*=============== PRELOADER ==========*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hv-dark), var(--hv-primary));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  text-align: center;
  color: var(--hv-accent);
}

.preloader__text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--anim-glow);
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 10px var(--anim-glow), 0 0 20px var(--anim-glow);
  }
  to {
    text-shadow: 0 0 20px var(--anim-glow), 0 0 30px var(--anim-glow), 0 0 40px var(--anim-glow);
  }
}

.preloader__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--hv-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*=============== STICKY CTA BUTTON ==========*/
.sticky-cta {
  position: fixed;
  bottom: 70px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--hv-primary), var(--hv-accent));
  color: var(--hv-surface);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(11, 120, 209, 0.3);
  transition: all 0.3s ease;
  z-index: var(--z-tooltip);
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 0.5s ease 2.5s forwards;
}

.sticky-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(11, 120, 209, 0.4);
  background: linear-gradient(135deg, var(--hv-accent), var(--hv-primary));
}

.sticky-cta i {
  font-size: 1.2rem;
}

.sticky-cta span {
  display: none;
}

@media screen and (min-width: 768px) {
  .sticky-cta span {
    display: inline;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=======Chatbot Icon for Chat==========*/
/* if sidebar has class `menu-open` */
/*.menu-open .chatbot-launcher {*/
/*  display: none !important;*/
/*}*/

/*body.sidebar-open .chatbot-launcher {*/
/*  display: none !important;*/
/*}*/


.chatbot-launcher {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  background: linear-gradient(135deg, #1EC1FF, #007BFF);
  color: var(--hv-surface) !important;

  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;

  cursor: pointer;
  box-shadow: 0 8px 28px rgba(30, 193, 255, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  overflow: visible;
}

/* Icon size */
.chatbot-launcher i {
  font-size: 1.4rem;
}

/* Hover */
.chatbot-launcher:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30, 193, 255, 0.55);
}

/* Mobile – only icon */
@media (max-width: 768px) {
  .chatbot-launcher span {
    display: none;
  }

  .chatbot-launcher {
    padding: 14px;
    border-radius: 50%;
  }
    .chatbot-launcher span {
    display: none;
  }
}


/*hover after then animation*/

.chatbot-launcher::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;

  box-shadow: 0 0 0 0 rgba(30, 193, 255, 0);
  opacity: 0;
  pointer-events: none;
}

@keyframes chatbotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 193, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(30, 193, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 193, 255, 0);
  }
}


/*=============== SCROLL UP BUTTON ===============*/
.scrollup {
  position: fixed;
  right: 1.5rem;
  bottom: -20%;
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--hv-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.4s ease;
  z-index: 99999; /* Force highest */
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.scrollup:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.scrollup__icon {
  color: var(--hv-surface);
  font-size: 1.3rem;
}

/* Show scroll-up on scroll */
.scrollup.show-scroll {
  bottom: 1.2rem;
}

/* Dark/Light Theme */
body.dark-theme .scrollup {
  background-color: var(--hv-accent);
}

body.light-theme .scrollup {
  background-color: var(--hv-primary);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }
  .experience__content {
    padding: 0;
  }
  .experience__overlay:nth-child(1) {
    width: 190px;
  }
  .experience__overlay:nth-child(2) {
    width: 80px;
  }
  .experience__img,
  .video__container {
    padding: 0;
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .place__container {
    grid-template-columns: repeat(3, max-content);
  }
  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }
  .nav__list {
    flex-direction: row;
    /*column-gap: 4rem;*/
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .change-theme {
    color: var(--white-color);
  }
  .active-link::before {
    background-color: var(--white-color);
  }
  .scroll-header .nav__link {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--title-color);
  }
  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .section {
    padding: 4rem 0 2rem;
  }
  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }
  .home__data {
    align-self: flex-end;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .about__data, .about__title {
    text-align: initial;
  }
  .about__title {
    margin-bottom: var(--mb-1-5);
  }
  .about__description {
    margin-bottom: var(--mb-2);
  }
  .discover__container {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover__container,
  .place__container {
    padding-top: 2rem;
  }
  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }
  .experience__overlay:nth-child(2) {
    width: 160px;
  }
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }
  .subscribe__input {
    padding: 0 .5rem;
  }
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    grid-template-rows: 2fr .5fr;
  }

  .about__img-one {
    width: 230px;
  }
  .about__img-two {
    width: 290px;
  }
  .discover__card {
    width: 237px;
  }
  .discover__container {
    width: 700px;
  }
  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }
  .discover__title {
    font-size: var(--h2-font-size);
  }
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }
  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }
  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }
  .video__container {
    grid-template-columns: .7fr;
  }
  .video__description {
    padding: 0 8rem;
  }
  .place__container {
    gap: 3rem 2rem;
  }
  .place__card, .place__img {
    height: 263px;
  }
  .footer__content {
    justify-items: center;
  }
}


.hv-about-right {
    display: flex;
    flex-direction: row;
    flex-direction: row-reverse;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container, .home__img {
    height: 640px;
  }
}


/* #################### FAQ Pages Styles ##################### */

    .hv-faq-section {
  padding: 80px 20px;
  background: #0a0c10;
}

.hv-faq-container {
  max-width: 900px;
  margin: auto;
}

.hv-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.hv-faq-title {
  font-size: 2.5rem;
  color: #fff;
}

.hv-faq-title span {
  color: #1EC1FF;
  text-shadow: 0 0 10px rgba(30,193,255,0.6);
}

.hv-faq-subtitle {
  color: #9aa4b2;
  margin-top: 10px;
}

/* Search Box */
.hv-faq-search-box {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.hv-faq-search-box input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 15px 20px 15px 45px;
  border-radius: 50px;
  font-size: 1rem;
  color: #fff;
  outline: none;
}

.hv-faq-search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1EC1FF;
  font-size: 1.2rem;
}

/* Counters */
.hv-faq-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.faq-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 25px 15px;
  text-align: center;
  border-radius: 15px;
}

.faq-stat-box h3 {
  font-size: 2.5rem;
  color: #1EC1FF;
  text-shadow: 0 0 12px rgba(30,193,255,0.6);
}

.faq-stat-box p {
  color: #9aa4b2;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .faq-stat-box h3 {
    font-size: 2rem;
  }
}


.hv-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.hv-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #e8f1ff;
  padding: 18px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.hv-faq-icon {
  font-size: 1.5rem;
  color: #1EC1FF;
  transition: transform 0.3s ease;
}

.hv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #9aa4b2;
  padding: 0 20px;
  line-height: 1.6;
}

.hv-faq-item.active .hv-faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.hv-faq-item.active .hv-faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .hv-faq-title {
    font-size: 2rem;
  }
}



/* ====================== CAREERS PAGE ==================== */

.hv-career-hero {
  padding: 100px 20px;
  text-align: center;
  background: #0a0c10;
}

.hv-career-hero h1 {
  color: #1EC1FF;
  font-size: 3rem;
}

.hv-career-hero p {
  color: #9aa4b2;
  margin-top: 10px;
}

.hv-career-container {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

.hv-career-why h2,
.hv-career-roles h2,
.hv-career-form h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.hv-career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}

.career-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  text-align: center;
  color: #fff;
  border-radius: 14px;
}

.career-job {
  background: rgba(255,255,255,0.04);
  border-left: 4px solid #1EC1FF;
  padding: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.career-job p {
  color: #9aa4b2;
}

.career-btn {
  display: inline-block;
  margin-top: 10px;
  color: #1EC1FF;
  text-decoration: none;
  font-weight: 600;
}

.career-form input,
.career-form textarea {
  width: 100%;
  margin-top: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.hv-cf-file-wrapper {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
}

/*.hv-cf-file-label {*/
/*  margin-bottom: 10px;*/
/*}*/

/* Styling the "Choose File" button to match the form theme */
.hv-cf-file-input::file-selector-button {
  background: linear-gradient(135deg, var(--hv-primary) 0%, var(--hv-accent) 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 15px;
  transition: var(--hv-transition);
  box-shadow: 0 4px 15px rgba(30, 193, 255, 0.2);
}

.hv-cf-file-input::file-selector-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(30, 193, 255, 0.4);
}

/* Matching the file input container text color */
.hv-cf-file-input {
  color: var(--hv-text-secondary);
  font-size: 0.9rem;
}

.career-form textarea {
  height: 120px;
}


.career-form button {
  width: 100%;
  padding: 15px;
  background: #1EC1FF;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

/* Scroll Reveal Animations */
[data-sr] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.sr-show {
  opacity: 1;
  transform: translateY(0);
}

.glow-card:hover{
  box-shadow: 0 0 20px rgba(30,193,255,0.4);
  transform: scale(1.02);
  transition: all 0.3s ease;
}


/* ============ Responsive ============= */
@media(max-width:600px){
  .hv-career-hero h1 {
    font-size: 2.2rem;
  }
}



/* ================= Disclosure Page ================= */

.hv-disclosure-hero{
  text-align:center;
  padding:100px 20px 60px;
}

.hv-disclosure-hero h1{
  font-size:3rem;
  color:#fff;
}

.hv-disclosure-hero p{
  color:#9aa4b2;
  margin-top:10px;
}

.hv-disclosure-section{
  padding:80px 20px;
}

.hv-disclosure-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.hv-disclosure-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:15px;
  padding:25px;
}

.hv-disclosure-card h2{
  color:#1EC1FF;
  margin-bottom:10px;
}

.hv-disclosure-card ul{
  padding-left:20px;
  color:#9aa4b2;
}

.hv-disclosure-form-section{
  padding:80px 20px;
  text-align:center;
}

.hv-disclosure-form{
  max-width:600px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.hv-disclosure-form input,
.hv-disclosure-form textarea{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  padding:15px;
  color:#fff;
}

.hv-disclosure-form button{
  background:#1EC1FF;
  border:none;
  color:#000;
  padding:15px;
  border-radius:30px;
  font-weight:bold;
  cursor:pointer;
  margin-top:10px;
}

.hv-disclosure-form button:hover{
  box-shadow:0 0 15px rgba(30,193,255,0.6);
}

/* Animations */
[data-animate]{
  opacity:0;
  transform:translateY(30px);
  transition:0.6s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:600px){
  .hv-disclosure-hero h1{
    font-size:2.2rem;
  }
}

/* ====================== PRIVACY PAGE UI FIXED ====================== */
/* ====================== PREMIUM PRIVACY PAGE UI ====================== */

/* HERO */
.hv-privacy-hero {
  padding: 140px 20px 90px;
  text-align: center;
  background: radial-gradient(circle at top, #0a1929, #000);
  border-bottom: 1px solid rgba(255,255,255,0.06);

  animation: fadeHero 1.3s ease forwards;
  opacity: 0;
}

@keyframes fadeHero {
  from {opacity: 0; transform: translateY(-40px);}
  to {opacity: 1; transform: translateY(0);}
}

.hv-privacy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;

  background: linear-gradient(45deg, #1ec1ff, #1485ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 28px rgba(30,193,255,0.5);
}

.hv-privacy-hero p {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 1.15rem;
  animation: fadeUp 1.4s ease;
}

/* MAIN CONTENT */
.hv-privacy-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px 120px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* PREMIUM GLASS CARD */
.hv-policy-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 30px 32px;

  box-shadow: 0 0 22px rgba(0,0,0,0.4), 
              0 0 14px rgba(30,193,255,0.07) inset;

  opacity: 0;
  transform: translateY(40px);
  transition: .7s ease;
}

/* CARD ANIMATION WHEN IN VIEW */
.hv-policy-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* HEADING STYLE */
.hv-policy-card h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 700;

  background: linear-gradient(to right, #1ec1ff, #5dbaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 12px rgba(30,193,255,0.4);
}

/* PARAGRAPH & LIST */
.hv-policy-card p,
.hv-policy-card li {
  color: #d6e2f2;
  font-size: 1rem;
  line-height: 1.75;
}

.hv-policy-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.hv-policy-card li {
  margin-bottom: 8px;
  position: relative;
}

/* CUSTOM BULLET */
.hv-policy-card li::before {
  content: "•";
  position: absolute;
  left: -14px;
  top: 0;
  color: #1ec1ff;
  font-size: 1.2rem;
}

/* SMOOTH HOVER EFFECT */
.hv-policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6),
              0 0 18px rgba(30,193,255,0.18);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hv-privacy-hero h1 {
    font-size: 2.1rem;
  }
  .hv-policy-card {
    padding: 22px 20px;
  }
}



    /* --- Simple Clean Styles (no animation) Disclosure Policy Page --- */
    .hv-disclosure-hero {
      padding: 100px 20px 60px;
      text-align: center;
      background: #0b0f14;
    }

    .hv-disclosure-hero h1 {
      color: #1ec1ff;
      font-size: 2.5rem;
    }

    .hv-disclosure-hero p {
      color: #9aa4b2;
      margin-top: 10px;
      font-size: 1.1rem;
    }

    .hv-disclosure-section {
      padding: 60px 20px;
      background: #0a0c10;
    }

    .hv-disclosure-container {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .hv-disclosure-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 16px;
      padding: 25px;
    }

    .hv-disclosure-card h2 {
      color: #fff;
      margin-bottom: 15px;
    }

    .hv-disclosure-card p,
    .hv-disclosure-card li {
      color: #9aa4b2;
      line-height: 1.6;
    }

    .hv-disclosure-card ul {
      padding-left: 20px;
    }

    .hv-disclosure-form-section {
      padding: 60px 20px 100px;
      background: #0b0f14;
    }

    .section-title {
      text-align: center;
      color: #1ec1ff;
      margin-bottom: 30px;
    }

    .hv-disclosure-form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .hv-disclosure-form input,
    .hv-disclosure-form textarea {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 14px 16px;
      border-radius: 10px;
      color: #fff;
      font-size: 0.95rem;
    }

    .hv-disclosure-form textarea {
      min-height: 130px;
      resize: none;
    }

    .hv-disclosure-form button {
      margin-top: 10px;
      padding: 14px;
      border-radius: 10px;
      border: none;
      background: linear-gradient(135deg, #1ec1ff, #1573ff);
      color: #fff;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
    }

    .hv-disclosure-form button:hover {
      opacity: 0.9;
    }

    @media (max-width: 600px) {
      .hv-disclosure-hero h1 {
        font-size: 2rem;
      }
    }
/* ===========================================================
   FEEDBACK PAGE - ULTRA PREMIUM ANIMATED UX
=========================================================== */

.hv-feedback-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Soft neon background glow */
.hv-feedback-section::before,
.hv-feedback-section::after {
  content: "";
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
}

.hv-feedback-section::before {
  width: 350px;
  height: 350px;
  background: rgba(0, 255, 170, 0.18);
  top: 10%;
  left: -12%;
}

.hv-feedback-section::after {
  width: 300px;
  height: 300px;
  background: rgba(0, 140, 255, 0.18);
  bottom: 5%;
  right: -12%;
}

/* Titles */
.hv-feedback-title {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: .6rem;
  animation: fadeDown .7s ease-in-out;
}

.hv-feedback-title span {
  background: linear-gradient(90deg, #00eaff, #0fffc6);
  -webkit-background-clip: text;
  color: transparent;
}

.hv-feedback-subtitle {
  text-align: center;
  opacity: .85;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  animation: fadeDown .9s ease-in-out;
}

/* Form container */
.hv-feedback-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(15px);
  padding: 2.8rem;
  border-radius: 1.3rem;
  box-shadow: 0 0 25px rgba(0,255,200,0.07);
  animation: slideUp .9s ease;
  transition: .3s ease;
}

.hv-feedback-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0,255,200,0.15);
}

/* Grid Layout */
.hv-feedback-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.7rem;
}

/* Form Group */
.hv-form-group {
  position: relative;
}

/* Floating labels */
.hv-form-group label {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
  transition: .25s ease;
}

.hv-form-group input,
.hv-form-group select,
.hv-form-group textarea {
  width: 100%;
  padding: 1.2rem 1rem .7rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: .7rem;
  color: var(--text-color);
  font-size: 1rem;
  transition: .25s ease;
}

/* Floating effect ─ active state */
.hv-form-group input:focus,
.hv-form-group textarea:focus,
.hv-form-group select:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 14px var(--first-color);
}

.hv-form-group input:focus + label,
.hv-form-group input:not(:placeholder-shown) + label,
.hv-form-group textarea:focus + label,
.hv-form-group textarea:not(:placeholder-shown) + label,
.hv-form-group select:focus + label,
.hv-form-group select:not([value=""]) + label {
  top: -10px;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.55);
  padding: 0 6px;
  border-radius: 4px;
  color: var(--first-color);
}

/* Error Message */
.error-msg {
  color: #ff4d4d;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 15px;
  display: block;
}

/* Star Rating */
.hv-star-rating .stars {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
}

.hv-star-rating .stars i {
  font-size: 1.9rem;
  cursor: pointer;
  color: #555;
  transition: .3s ease;
}

.hv-star-rating .stars i:hover {
  transform: scale(1.25);
}

.hv-star-rating .stars i.active {
  color: #ffd700;
  text-shadow: 0 0 14px #ffd700;
}

/* Submit Button */
.hv-feedback-submit {
  text-align: center;
  margin-top: 2.4rem;
}

.hv-btn-submit {
  background: linear-gradient(90deg, #00f5ff, #00ffa6);
  padding: 1rem 3rem;
  border-radius: .9rem;
  font-size: 1.1rem;
  color: #000;
  cursor: pointer;
  font-weight: 700;
  transition: .3s ease;
  border: none;
}

.hv-btn-submit:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 20px rgba(0,255,200,0.4);
}

/* Success Message */
.hv-feedback-success {
  display: none;
  margin-top: 2rem;
  text-align: center;
}

.hv-feedback-success i {
  font-size: 3.5rem;
  color: #4cff75;
}

/* Animations */
@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-20px);}
  to   {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
  from {opacity: 0; transform: translateY(40px);}
  to   {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 920px) {
  .hv-feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .hv-feedback-form {
    padding: 1.7rem;
  }
  .hv-feedback-title {
    font-size: 2.3rem;
  }
}
