:root {
  /* Primary Colors */
  --primary-blue: #0074e8;
  --dark-bg: #0c0c0c;
  --accent-green: #1affa3;
  --light-bg: #e6f4ff;
  --text-gray: #8c99a6;

  /* Optional Common Use */
  --heading-color: var(--primary-blue);
  --text-color: var(--text-gray);
  --bg-color: var(--light-bg);
  --button-color: var(--accent-green);
  --button-hover: #00d68f;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@font-face {
  font-family: "Unique";
  src: url("../gnf/GNF.ttf");
}

a {
  text-decoration: none;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #0a0a12;
  color: #e0e0e0;
  text-align: justify;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HUD Frame Container */
.hud-container {
  width: 100vw;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

/* Navigation Bar */
.hud-nav {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(8, 15, 30, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 115, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 132, 255, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

/* .hud-logo {
  color: #00d4ff;
  font-family: "Unique";
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
} */

.hud-logo img {
  height: 40px;
  /* margin-right: 15px;
    font-size: 2rem; */
}

.hud-menu {
  display: flex;
  gap: 40px;
}

.hud-menu-item {
  position: relative;
  color: rgba(200, 230, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 0;
  transition: all 0.3s ease;
  
}

.hud-menu-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.hud-menu-item:hover {
  color: var(--primary-blue);
  text-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
}

.hud-menu-item:hover::before {
  width: 100%;
}
.solutions{
  top: 5px;
  z-index: 5000;
}
.mega-menu-container {
  display: none;
  position: fixed;
  top: 60px;
  left: -768px;
  /* transform: translateY(-50%); */
  width: 100vw;
  min-width: 1200px;
  background: linear-gradient(100deg, var(--light-bg) 65%,  var(--light-bg)100%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  border-radius: 0 0 18px 18px;
  padding: 42px 52px 42px 70px;
  z-index: 99999;
  gap: 40px;
  flex-direction: row;
  min-height: 410px;
  /* transition: box-shadow 0.2s; */
}

.mega-menu-column {
  flex: 1 1 0;
  min-width: 240px;
  padding-right: 28px;
  display: flex;
  flex-direction: column;
}

.menu-col-4.image-col {
  flex: 0 0 360px;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #e7ecef;
  background: #f6fcfe;
  box-shadow: -4px 0 20px 0 rgba(0,212,255,0.04);
  padding-left: 28px;
}

.mega-menu-hover-image img {
  width: 320px;
  height: 210px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  background: #fff;
  transition: box-shadow 0.22s;
}

.mega-menu-column h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 22px;
  margin-top: 0;
  letter-spacing: 0.5px;
}

.mega-menu-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mega-menu-column > ul > li {
  margin-bottom: 4px;
}

.mega-menu-column ul li strong {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 16px;
  display: block;
  padding-bottom: 4px;
}

.mega-menu-column ul ul {
  margin-top: 7px;
  padding-left: 21px;
}

.mega-menu-column ul ul li {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.6;
  cursor: pointer;
  border-left: 2px solid transparent;
  padding-left: 5px;
  transition: color 0.18s, border-color 0.22s;
}

/* REMOVE HOVER STATE EFFECTS COMPLETELY! */
/* .mega-menu-column ul ul li:hover,
.menu-item-hover:hover > strong {
  color: #00baff;
  border-left: 2px solid #00baff;
} */

/* Show/hide mechanism only by JS toggle */
.hud-menu-item-wrapper.mega-menu-wrapper {
  position: relative;
}
.hud-menu-item-wrapper.mega-menu-wrapper .hud-menu-item.solutions {
  cursor: pointer;
  position: relative;
  z-index: 1030;
}
.hud-menu-item-wrapper.mega-menu-wrapper .mega-menu-container {
  display: none;
}
.hud-menu-item-wrapper.mega-menu-wrapper.show-menu .mega-menu-container {
  display: flex;
}

@media (max-width: 1200px) {
  .mega-menu-container { padding: 22px 6px 22px 12px; min-width: unset; }
  .mega-menu-hover-image img { width: 98vw; max-width: 420px; height: auto; }
}

@media (max-width: 900px) {
  .mega-menu-container {
    flex-direction: column;
    min-width: 100vw;
    left: 0;
    padding: 16px 5vw;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 34px 0 rgba(0,0,0,0.13);
  }
  .menu-col-4.image-col {
    border-left: none;
    margin-top: 22px;
    box-shadow: none;
    padding-left: 0;
    justify-content: flex-start;
    border-radius: 8px;
  }
  .mega-menu-hover-image img {
    width: 95vw; max-width: 95vw; min-width: 120px;
  }
}

.submenu {
  display: none;
  margin-top: 8px;
  padding-left: 21px;
  transition: max-height 0.23s;
}

.mega-menu-column li.open > .submenu {
  display: block;
}

.submenu-toggle {
  display: block;
  color: var(--text-gray);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0 6px 0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
  background: none;
  outline: none;
  border: none;
}

.submenu-toggle::after {
  content: " ▼";
  font-size: 11px;
  vertical-align: middle;
  color: #9ad8ed;
  transition: transform 0.15s;
}

.mega-menu-column li.open > .submenu-toggle::after {
  transform: rotate(-180deg);
}

.submenu li a {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  padding: 7px 0 7px 8px;
  border-left: 2px solid transparent;
  background: none;
  transition: color 0.18s, border-color 0.22s;
}

.submenu li a:active,
.submenu li a:focus {
  color: #00baff;
  border-left: 2px solid #00baff;
  outline: none;
}


.hud-nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hud-nav-btn {
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.hud-nav-btn-primary {
  background: rgba(0, 157, 255, 0.2);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 132, 255, 0.3);
}

.hud-nav-btn-primary:hover {
  background: rgba(0, 132, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 132, 255, 0.3);
}

/* Enhanced Hero Section */
.hud-header {
  width: 100vw;
  height: 760px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 132, 255, 0.3);
  /* background: radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 45, 80, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(0, 30, 60, 0.3) 0%,
      transparent 60%
    ); */
    z-index: 1;
}


.hero-client-logos {
  text-align: center;
  padding: 48px 0 40px 0;
  background: #f8f9fa;
}

.hero-client-logos h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #24292f;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-client-logos img {
  max-width: 85%;
  height: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08), 0 1.5px 6px rgba(44,62,80,0.04);
  padding: 18px 24px;
  margin: 0 auto;
  display: block;
  transition: box-shadow 0.2s;
}

.hero-client-logos img:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.13), 0 3px 11px rgba(44,62,80,0.06);
}

@media (max-width: 768px) {
  .hero-client-logos {
    display: none;
    padding: 32px 5vw 24px 5vw;
  }
  .hero-client-logos h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .hero-client-logos img {
    max-width: 98%;
    padding: 8px 5px;
  }
}

.hud-erp-comparison {
  width: 800px;
  height: 500px;
 position: absolute;
  top: 75px;
  right: 100px;
  border-radius: 10px;
  background: var(--light-bg);
  padding: .5rem 0;
}
.hud-erp-comparison h2 {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: .5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.hud-erp-comparison p {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 1rem;
}
.hud-erp-comparison table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  background: transparent;
  font-family: 'Share Tech Mono', 'Orbitron', 'Titillium Web', 'Segoe UI', Arial, sans-serif;
}
.hud-erp-comparison thead th {
  background: rgba(12, 12, 12, 0.85);
  color: var(--text-gray);
  padding: 10px 6px;
  /* text-shadow: 0 1px 8px var(--accent-green), 0 1px 4px white; */
  font-size: 0.7rem;
  border: none;
  border-radius: 0;
}
.hud-erp-comparison thead th:nth-child(2) { color: var(--primary-blue);}
.hud-erp-comparison thead th:nth-child(3) { color: var(--bg-color);}
.hud-erp-comparison thead th:nth-child(4) { color: var(--bg-color);}
.hud-erp-comparison td, .hud-erp-comparison th {
  font-weight: 600;
  font-size:  0.8rem;
  
}
.hud-erp-comparison tbody td {
  padding: 6px 6px;
  background:var(--bg-color);
  color: var(--dark-bg);
  /* border-left: 4px solid var(--primary-blue); */
  border-radius: 5px 0 0 5px;
}
.hud-erp-comparison tbody tr:nth-child(even) td {
  background: var(--bg-color);
  color: var(--dark-bg);
  
}
.hud-erp-comparison tbody td:nth-child(2) {
  color: var(--primary-blue);
  background: rgba(26, 133, 255, 0.09);
  border-radius: 5px 5px;
  /* border-left: 4px solid var(--primary-blue); */
}
.hud-erp-comparison tbody td:nth-child(3) {
  color: var(--dark-bg);
  /* border-left: 4px solid #ffc700; */
}
.hud-erp-comparison tbody td:nth-child(4) {
  color: var(--dark-bg);
  /* border-left: 4px solid #fd6c35; */
}


/*	CURRENT MAX WIDTH IS JUST FOR DEMO PURPOSES */
.tag-scrollers {
  color: var(--accent-green);
  position: relative;
  top: -20px;
	width: 100%;
	/* width: 100vw; */
	/* overflow: hidden; */
  z-index: 999;
}

/*	POSSIBLY UPDATE COLORS IN THE GRADIENT
		TO MATCH THE PROJECTS DESIGN SYSTEM
*/
.tag-scroller {
	display: grid;
	gap: 0.5rem;
	mask: linear-gradient(90deg, #0000, var(--text-gray) 15%, var(--text-gray) 85%, #0000);
}

.tag-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	/*	IF THE GAP IS CHANGED, DON'T FORGET TO CHANGE 
			THE TRANSFORM VALUE IN THE SCROLL ANIMATION
			AT THE END OF THE STYLING
	*/
	gap: 0.5rem;
}

/*	IF THE USERS PREFERS REDUCED MOTION
		PRESENT THEM WITH A HOROZONTAL LIST
		OF ALL ELEMENTS AND GIVE THEM THE
		OPTION TO MANUALLY SCROLL BY SWIPING
*/
@media (prefers-reduced-motion) {
	.tag-list {
		flex-flow: row nowrap;
		overflow: auto;
		scrollbar-width: none;
		scrollbar-color: transparent transparent;
	}
	.tag-list::-webkit-scrollbar-track {
		background: transparent;
	}
	.tag-list::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.tag-list::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
}

/*	BASIC STYLING OF THE LIST ITEMS
		FOR DEMO PURPOSES. MOST PROPERTIES
		SHOULD BE KEPT AS IS BUT PROBABLY
		UPDATE THE VALUE FOR font-family
		AND border
*/
.tag-list li {
	font-family: system-ui;
	font-size: 1.125rem;
	line-height: 1.5;
	padding: 0.5rem 3rem;
	border: 2px solid var(--bg-color);
	border-radius: 5ch;
	white-space: nowrap;
}

/*	THE DURATION IS SET FROM A CUSTOM PROPERTY
		CALCULATED IN THE SCRIPT AS IT'S ONLY NEEDED
		IF THE ANIMATION SHOULD RUN, WHICH IS ALSO
		CHECKED BY THE SCRIPT

		THE DIRECTION IS SET TO normal AS DEFULT
		AND THEN SET TO reverse	FOR EVERY OTHER SCROLLER
*/
.tag-scroller.scrolling .tag-list {
	width: max-content;
	flex-wrap: nowrap;
	animation: horizontal-scroll var(--duration) var(--direction, normal) linear infinite;
}

.tag-scroller.scrolling .tag-list:nth-child(even) {
	--direction: reverse;
}

/* PAUSING THE ANIMATION ON HOVER */
.tag-scroller:hover .tag-list {
	animation-play-state: paused;
}

@keyframes horizontal-scroll {
	to {
		/*	0.75rem FOR HALF THE GAP
				OF THE .tag-scroller
		*/
		transform: translateX(calc(-50% - .75rem));
	}
}

.hud-hero {
  
  max-width: 1200px;
  position: absolute ;
  z-index: 1;
  height: calc(100vh - 80px);
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hud-hero-title {
  font-family: "Unique";
  font-size: 2.5rem;
  color: var(--text-color);
  text-shadow: 0 0 20px rgba(0, 132, 255, 0.7);
  margin-bottom: 30px;
  letter-spacing: 3px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hud-hero-title::after {
  content: "";
  position: relative;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
  animation: titleUnderline 3s infinite alternate;
  z-index: 1;
}

.hud-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 700px;
  z-index: 1;
}

.hud-hero-actions {
  display: flex;
  gap: 25px;
  z-index: 1;
}

.hud-hero-btn {
  position: relative;
  margin-top: 200px;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  z-index: 1;
}

.hud-hero-btn-primary {
  background: rgba(0, 132, 255, 0.2);
  color: var(--text-gray);
  border: 1px solid var(--primary-blue);
  box-shadow: 0 0 20px rgba(0, 132, 255, 0.3);
  }

.hud-hero-btn-primary:hover {
  background: rgba(0, 132, 255, 0.4);
  text-shadow: 0 0 15px var(--text-color);
  box-shadow: 0 0 30px rgba(0, 132, 255, 0.2);
}

.hud-hero-btn-secondary {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
  z-index: 1;
}

.hud-hero-btn-secondary:hover {
  background: rgba(0, 255, 136, 0.2);
  text-shadow: 0 0 15px #00ff88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* Particle Background Effect */
.particles {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(0, 132, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
  animation: float linear infinite;
}

/* Main Content Sections */
.hud-section {
  /* background-image: url('../images/webtantrah-icon.png'); */
  position: relative;
  padding: 100px 5%;
  /* border-bottom: 1px solid rgba(0, 212, 255, 0.2); */
}

.hud-section-title {
  font-family: "Unique";
  font-size: 2.5rem;
  color: var(--text-color);
  text-shadow: 0 0 15px rgba(0, 132, 255, 0.5);
  margin-bottom: 50px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.hud-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
}

.hud-section-subtitle {
  font-family: "rajdhani";
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Enhanced Services Section */
.hud-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  perspective: 1000px;
}

.hud-service-card {
  background: rgba(10, 20, 40, 0.5);
  border: 1px solid rgba(0, 132, 255, 0.2);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hud-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 132, 255, 0.8),
    transparent
  );
  animation: scanline 6s linear infinite;
  z-index: 2;
}

.hud-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 132, 255, 0.1) 0%,
    transparent 50%,
    rgba(0, 150, 255, 0.1) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hud-service-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 132, 255, 0.3);
  border-color: rgba(0, 132, 255, 0.5);
}

.hud-service-card:hover::after {
  opacity: 1;
}

.hud-service-icon {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.hud-service-card:hover .hud-service-icon {
  transform: scale(1.2) translateY(-5px);
  text-shadow: 0 0 15px rgba(0, 132, 255, 0.7);
}

.hud-service-title {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hud-service-desc {
  color: rgba(0, 132, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hud-service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

span.hud-tech-tag {
  color: var(--text-color);
}

@media (max-width: 768px) {
  /* Services Section Container */
  .hud-services {
    
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    perspective: none;
  }

  /* Service Cards */
  .hud-service-card {
    padding: 25px 20px;
    margin: 0 10px;
  }

  .hud-service-card::before {
    animation: scanline-mobile 8s linear infinite;
  }

  /* Icons */
  .hud-service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  /* Titles */
  .hud-service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  /* Descriptions */
  .hud-service-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  /* Tech Tags */
  .hud-service-tech {
    gap: 8px;
  }

  .hud-tech-tag {
    padding: 3px 8px;
    font-size: 0.7rem;
  }

  /* Section Header */
  .hud-section-header {
    padding: 0 15px;
  }

  .hud-section-title {
    font-size: 1rem;
  }

  .hud-section-subtitle {
    font-size: 0.9rem;
  }

  /* Adjusted Scanline Animation */
  @keyframes scanline-mobile {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(100vw);
    }
  }
}

/* For very small devices (optional) */
@media (max-width: 480px) {
  .hud-container {
    width: auto;
    padding: 2rem;
  }

  .hud-service-card {
    padding: 2rem 1.5rem;
  }

  .hud-service-title {
    font-size: 1.2rem;
  }

  .hud-service-desc p {
    font-size: 0.85rem;
  }

  /* Section Header */
  .hud-section-header {
    padding: 0 15px;
  }

  .hud-section-title {
    font-size: 1.5rem;
    width: 100%;
  }

  .hud-section-subtitle {
    font-size: 0.9rem;
  }
}

/* Products Grid */
.hud-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  perspective: 1000px;
}

/* Product Cards */
.hud-product-card {
  background: rgba(10, 20, 40, 0.5);
  border: 1px solid rgba(0, 132, 255, 0.2);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Scanline Animation */
.hud-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 132, 255, 0.8),
    transparent
  );
  animation: scanline 6s linear infinite;
  z-index: 2;
}

/* Hover Glow Effect */
.hud-product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 132, 255, 0.1) 0%,
    transparent 50%,
    rgba(0, 150, 255, 0.1) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover Transform */
.hud-product-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 132, 255, 0.3);
  border-color: rgba(0, 132, 255, 0.5);
}

.hud-product-card:hover::after {
  opacity: 1;
}

/* Product Header */
.hud-product-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Product Icon */
.hud-product-icon {
  font-size: 2.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hud-product-card:hover .hud-product-icon {
  transform: scale(1.2) translateY(-5px);
  text-shadow: 0 0 15px currentColor;
}

/* Product Title */
.hud-product-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-blue);
  letter-spacing: 1px;
  margin: 0;
}

/* Product Description */
.hud-product-desc {
  font-family: "rajdhani", sans-serif;
  color: rgba(0, 132, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Features List */
.hud-product-features {
  margin-bottom: 25px;
}

.hud-product-features li {
  font-family: "rajdhani", sans-serif;
  color: rgba(200, 230, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding-left: 5px;
  position: relative;
  line-height: 1.5;
}

/* .hud-product-features li::before {
    content: '▹';
    position: absolute;
    left: -18px;
    color: #00d4ff;
} */

/* Tech Tags */
.hud-product-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* .hud-tech-tag {
  background: rgba(0, 132, 255, 0.15);
  border: 1px solid rgba(0, 132, 255, 0.3);
  color: var;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.5px;
} */

/* Scanline Animation Keyframes */
@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* .hud-product-card:hover .hud-product-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { text-shadow: 0 0 5px currentColor; }
    50% { text-shadow: 0 0 20px currentColor; }
    100% { text-shadow: 0 0 5px currentColor; }
} */

/* Make feature lists more scannable */
.hud-product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  list-style: none;
}

.hud-product-features li:before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

/* Tech tags for better readability */
.hud-tech-tag {
  background: rgba(0, 132, 255, 0.15);
  border: 1px solid rgba(0, 132, 255, 0.3);
  color: var(--primary-blue);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: "Rajdhani", sans-serif;
}

@media (max-width: 768px) {
  /* Products Section Container */
  .hud-products {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }

  /* Product Cards */
  .hud-product-card {
    padding: 20px 15px;
    margin: 0 10px;
  }

  /* Header Adjustments */
  .hud-product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Icons */
  .hud-product-icon {
    font-size: 1.8rem;
    padding: 10px;
  }

  /* Titles */
  .hud-product-title {
    font-size: 1.25rem;
  }

  /* Descriptions */
  .hud-product-desc {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  /* Feature Lists */
  .hud-product-features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  /* Tech Tags */
  .hud-ai-badge {
    position: static;
    margin-top: 15px;
    justify-content: flex-start;
  }

  .hud-tech-tag {
    padding: 3px 10px;
    font-size: 0.7rem;
  }

  /* Section Header */
  /* .hud-section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hud-section-subtitle {
        font-size: 0.9rem;
    } */

  /* Marquee Container (if present) */
  .marquee-container {
    margin-top: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .marquee-track {
    animation: none;
    display: flex;
    width: max-content;
    padding-bottom: 10px;
    /* For scrollbar space */
  }

  .tech-card {
    min-width: 120px;
    margin: 0 8px;
  }
}

/* For very small devices */
@media (max-width: 480px) {
  .hud-product-card {
    padding: 18px 12px;
  }

  .hud-product-title {
    font-size: 1.1rem;
  }

  .hud-product-desc {
    font-size: 0.85rem;
  }

  .hud-product-features li {
    font-size: 0.8rem;
  }

  .tech-card {
    min-width: 110px;
    padding: 15px 10px;
  }

  .tech-icon img {
    height: 30px;
    width: 30px;
  }
}

/* Interactive Portfolio Section */
.hud-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.hud-portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  height: 300px;
}

.hud-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hud-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 30, 0.95) 30%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hud-portfolio-item:hover {
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
  border-color: rgba(0, 212, 255, 0.7);
}

.hud-portfolio-item:hover .hud-portfolio-img {
  transform: scale(1.1);
}

.hud-portfolio-item:hover .hud-portfolio-overlay {
  opacity: 1;
}

.hud-portfolio-title {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #00d4ff;
  margin-bottom: 15px;
}

.hud-portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hud-tech-tag {
  background: rgba(0, 80, 120, 0.4);
  color: #00d4ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.hud-tech-tag:hover {
  background: rgba(0, 120, 180, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Estimation Section Styles */
.hud-estimations {
  display: none;
  /* background: rgba(10, 15, 25, 0.9); */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* .hud-estimations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
} */

.section-header {
  /* text-align: center; */
  margin-bottom: 50px;
}

/* .hud-section-title {
        font-size: 2.5rem;
        color: #00d4ff;
        margin-bottom: 15px;
        font-weight: 700;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    } */

/* .hud-section-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 700px;
        margin: 0 auto;
    } */

.estimations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.estimation-card {
  background: rgba(20, 25, 40, 0.7);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.estimation-card.popular {
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.estimation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #0066ff);
}

.card-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 212, 255, 0.2);
}

.card-header h3 {
  font-family: "rajdhani", sans-serif;
  font-size: 1.5rem;
  color: white;
  margin: 0 0 10px 0;
}

.price {
  font-family: "rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
  margin: 15px 0;
  display: block;
}

.hud-product-desc {
  font-family: "rajdhani", sans-serif;
  font-size: 1.1rem;
  color: white;
  margin: 0 0 10px 0;
}

.card-features {
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  fill: #00ff88;
}

.feature-item span {
  font-family: "rajdhani", sans-serif;
  font-size: 1.1rem;
}

.card-footer {
  margin-top: 30px;
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: -35px;
  background: #00d4ff;
  color: #0a0f19;
  padding: 5px 40px;
  font-weight: 700;
  transform: rotate(45deg);
  font-size: 0.7rem;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.estimation-note {
  font-family: "rajdhani", sans-serif;
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.estimation-note strong {
  color: #00d4ff;
}

/* Animation Styles */
.estimation-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.estimation-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

@media (max-width: 768px) {
  .body {
    overflow-x: hidden;
  }

  .estimations-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .hud-section-title {
    font-size: 2rem;
  }
}

.hud-btn {
  display: inline-block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #0072e6, #0066ff);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.hud-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 132, 255, 0.5);
}

.hud-btn.secondary {
  background: transparent;
  border: 2px solid rgba(0, 132, 255, 0.3);
  color: #00d4ff;
  box-shadow: none;
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #00ff88;
  color: #0a0f19;
  padding: 5px 30px;
  font-weight: 700;
  transform: rotate(45deg);
  font-size: 0.8rem;
  box-shadow: 0 5px 15px rgba(0, 132, 136, 0.3);
}

.estimation-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animated Team Section */
.hud-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.hud-team-member {
  text-align: center;
  position: relative;
  padding: 30px;
  border-radius: 8px;
  background: rgba(10, 20, 40, 0.3);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.hud-team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.8),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hud-team-member:hover {
  background: rgba(10, 20, 40, 0.5);
  border-color: rgba(0, 132, 255, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 132, 255, 0.2);
}

.hud-team-member:hover::before {
  opacity: 1;
}

.hud-team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 132, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 132, 255, 0.2);
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hud-team-avatar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 132, 255, 0.1) 0%,
    transparent 50%,
    rgba(0, 150, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hud-team-member:hover .hud-team-avatar {
  border-color: rgba(0, 212, 255, 0.7);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.hud-team-member:hover .hud-team-avatar::after {
  opacity: 1;
}

.hud-team-name {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #00d4ff;
  margin-bottom: 5px;
}

.hud-team-role {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  color: rgba(200, 230, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.hud-team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hud-team-social a {
  color: rgba(200, 230, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hud-team-social a:hover {
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* HUD-style CRM Development Section */
.hud-crm-section {
  padding: 4rem 0;
  /* background: rgba(10, 15, 25, 0.9); */
  will-change: transform;
  /* color: #00fffc; */
  color: var(primary-color);
  /* font-family: 'Courier New', monospace; */
  /* border-top: 1px solid rgba(0, 255, 252, 0.2);
    border-bottom: 1px solid rgba(0, 255, 252, 0.2); */
}

.hud-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hud-section-header {
  /* text-align: center; */
  margin-bottom: 3rem;
  position: relative;
}

.hud-heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.hud-subtitle {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  border-color: rgba(0, 132, 255, 0.7);
  box-shadow: 0 0 40px rgba(0, 132, 255, 0.4);
  color: rgba(0, 132, 255, 0.5);
  color: rgba(0, 132, 252, 0.7);
  font-size: 1.1rem;
  border-top: 1px dashed rgba(0, 132, 252, 0.3);
  padding-top: 1rem;
  display: inline-block;
}

.hud-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.hud-feature-card {
  color: rgba(0, 132, 255, 0.5);
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 132, 252, 0.2);
  border-radius: 0;
  padding: 2rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hud-feature-card:hover {
  border-color: rgba(0, 132, 255, 0.7);
  box-shadow: 0 0 40px rgba(0, 132, 255, 0.4);
  color: rgba(0, 132, 255, 0.9);
  /* border-color: rgba(0, 255, 252, 0.5); */
  /* box-shadow: 0 0 15px rgba(0, 255, 252, 0.2); */
}

.hud-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #0072e6, transparent);
}

.hud-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  /* color: #00fffc; */
}

/* Animated glow effect */
@keyframes icon-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

.hud-feature-icon i {
  animation: icon-pulse 3s infinite;
  border: 1px solid currentColor;
  transition: all 0.3s ease;
}

.hud-feature-card:hover .hud-feature-icon i {
  animation: icon-pulse 1s infinite;
  box-shadow: 0 0 20px currentColor;
}

/* Tech tag enhancements */
.hud-tech-tag {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(132, 255, 255, 0.2);
  border-left: 1px solid rgba(132, 255, 255, 0.2);
}

.hud-feature-title {
  font-family: "rajdhani", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  /* color: #00fffc; */
}

.hud-feature-desc p {
  font-family: "rajdhani", sans-serif;
  /* color: rgba(0, 255, 252, 0.7); */
  /* border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4); */
  /* color: rgba(0, 212, 255, 0.5); */
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hud-feature-desc p::before {
  content: ">";
  margin-right: 0.5rem;
  /* color: #00d4ff; */
  /* color: #00fffc; */
}

.hud-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(0, 132, 252, 0.3);
}

.hud-cta-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hud-button {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  /* color: #00fffc; */
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  /* border: 1px solid #00fffc; */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hud-button:hover {
  background: rgba(0, 132, 252, 0.1);
  box-shadow: 0 0 10px rgba(0, 132, 252, 0.3);
}

@media (max-width: 768px) {
  /* AI Process Intelligence Section */
  .hud-crm-section {
    padding: 30px 0;
  }

  /* Section Header */
  .hud-section-header {
    padding: 0 15px;
  }

  .hud-section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hud-section-subtitle {
    font-size: 0.9rem;
  }

  /* Features Grid */
  .hud-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
    padding: 0 10px;
  }

  /* Feature Cards */
  .hud-feature-card {
    padding: 20px;
    margin: 0 5px;
  }

  /* Icons */
  .hud-feature-icon i {
    font-size: 1.8rem;
    padding: 10px;
  }

  /* Titles */
  .hud-feature-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  /* Descriptions */
  .hud-feature-desc {
    font-size: 0.9rem;
  }

  .hud-feature-desc p {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  /* Tech Tags */
  .hud-ai-badge {
    position: static;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .hud-tech-tag {
    padding: 3px 10px;
    font-size: 0.7rem;
    margin: 5px 5px 0 0;
  }

  /* CTA Button */
  .hud-cta {
    margin-top: 30px;
    padding: 0 15px;
  }

  .hud-cta-text {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hud-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  /* Animation Adjustments */
  .hud-feature-card::before {
    animation: scanline-mobile 10s linear infinite;
  }

  @keyframes scanline-mobile {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(100vw);
    }
  }
}

/* For very small devices (<= 480px) */
@media (max-width: 480px) {
  .hud-feature-card {
    padding: 18px 15px;
  }

  .hud-feature-title {
    font-size: 1.2rem;
  }

  .hud-feature-desc p {
    font-size: 0.8rem;
  }

  .hud-button {
    padding: 10px 20px;
  }
}

.hud-feature-card:active {
  transform: scale(0.98) !important;
  opacity: 0.9;
}

/* Glitch effect for heading */
/* .glitch {
  position: relative;
}
.glitch::before {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(31px, 9999px, 94px, 0); }
  20% { clip: rect(112px, 9999px, 76px, 0); }
  40% { clip: rect(75px, 9999px, 107px, 0); }
  60% { clip: rect(98px, 9999px, 79px, 0); }
  80% { clip: rect(95px, 9999px, 21px, 0); }
  100% { clip: rect(120px, 9999px, 69px, 0); }
} */

/* Projects Page Specific Styles */
.hud-projects-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 25, 0.95) 0%,
    rgba(5, 10, 20, 0.98) 100%
  );
  border-bottom: 1px solid rgba(0, 132, 255, 0.2);
  text-align: center;
}

.hud-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.hud-project-card {
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 132, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hud-project-card:hover {
  border-color: rgba(0, 132, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 132, 255, 0.3);
  transform: translateY(-5px);
}

.hud-project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #0072e6, transparent);
}

.project-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(10, 15, 25, 0.9)
  );
}

.project-details {
  padding: 2rem;
}

.project-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 132, 255, 0.1);
  color: #00d4ff;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  text-transform: uppercase;
}

.project-description {
  color: rgba(0, 132, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  padding: 0.3rem 0.8rem;
  background: rgba(0, 132, 255, 0.1);
  color: rgba(0, 132, 255, 0.7);
  font-size: 0.8rem;
  border: 1px solid rgba(0, 132, 255, 0.2);
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: #ffffff;
}

.project-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.project-link:hover::after {
  transform: translateX(3px);
}

.hud-projects-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px dashed rgba(0, 132, 255, 0.3);
  border-bottom: 1px dashed rgba(0, 132, 255, 0.3);
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .hud-logo {
    font-size: 1.2rem;
  }

  .hud-logo i {
    font-size: 1.2rem;
  }

  .hud-projects-grid {
    grid-template-columns: 1fr;
  }

  .hud-projects-hero h1 {
    font-size: 2rem;
  }

  .hud-nav-actions {
    display: none;
  }
}

/* Pulse animation for CTA button */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 132, 252, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 132, 252, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 132, 252, 0);
  }
}

/* Interactive Contact Form
        .hud-contact-form {
            max-width: 700px;
            margin: 0 auto;
            margin-top: 50px;
            background: rgba(10, 20, 40, 0.5);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 8px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .hud-contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(0,212,255,0.8), transparent);
            animation: scanline 6s linear infinite;
        }

        .hud-form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .hud-form-label {
            display: block;
            color: #00d4ff;
            margin-bottom: 15px;
font-family: 'Rajdhani', 'Orbitron', sans-serif;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .hud-form-input {
            width: 100%;
            padding: 15px;
            background: rgba(15, 25, 45, 0.7);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 4px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .hud-form-input:focus {
            outline: none;
            border-color: #00d4ff;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            background: rgba(15, 25, 45, 0.9);
        }

        .hud-form-textarea {
            min-height: 180px;
            resize: vertical;
        }

        .hud-form-submit {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            border: 1px solid #00d4ff;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
font-family: 'Rajdhani', 'Orbitron', sans-serif;
            letter-spacing: 1px;
            display: inline-block;
        }

        .hud-form-submit:hover {
            background: rgba(0, 212, 255, 0.4);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
        } */

/* Footer */
.hud-footer {
  background: rgba(8, 15, 30, 0.9);
  padding: 60px 5% 30px;
  position: relative;
}

.hud-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 132, 255, 0.8),
    transparent
  );
  animation: scanline 3s linear infinite;
}

.hud-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.hud-footer-logo img {
  height: 40px;
  /* font-family: 'Unique';
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 20px;
    display: inline-block; */
}

.hud-footer-about {
  color: rgba(200, 230, 255, 0.8);
  margin-bottom: 20px;
}

.hud-footer-social {
  display: flex;
  gap: 15px;
}

.hud-footer-social a {
  color: rgba(200, 230, 255, 0.8);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.hud-footer-social a:hover {
  color: #0072e6;
  transform: translateY(-3px);
}

.hud-footer-title {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #0072e6;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hud-footer-links {
  list-style: none;
}

.hud-footer-links li {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  margin-bottom: 10px;
}

.hud-footer-links a {
  color: rgba(200, 230, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hud-footer-links a:hover {
  color: #0072e6;
  transform: translateX(5px);
}

.hud-footer-contact-item {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(200, 230, 255, 0.8);
}

.hud-footer-contact-item i {
  margin-right: 10px;
  color: #0072e6;
}

.hud-contact-add {
  font-family: "Rajdhani", sans-serif;
}

.hud-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 132, 255, 0.2);
  color: rgba(200, 230, 255, 0.6);
  font-size: 0.9rem;
}

/* Footer legal section */
.hud-badges {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.hud-badges img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.hud-badges img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.hud-verify {
  margin-top: 10px;
  font-size: 0.8rem;
}

.hud-verify a {
  color: var(--primary-blue);
  text-decoration: none;
}

/* Modal styles */
.hud-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.hud-modal-content {
  background: #0a1428;
  border: 1px solid var(--primary-blue);
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  position: relative;
}

.hud-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.hud-doc-card {
  background: rgba(10, 20, 40, 0.6);
  padding: 15px;
  text-align: center;
}

.hud-doc-card img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 132, 255, 0.3);
  margin-bottom: 15px;
}

.hud-trust-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.hud-float-btn {
  background: rgba(0, 132, 255, 0.2);
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hud-float-btn:hover {
  background: rgba(0, 132, 255, 0.4);
  transform: translateY(-3px);
}

/* Footer Base Styles */
.hud-footer {
  background: #0a1428;
  border-top: 1px solid rgba(0, 132, 255, 0.2);
  padding: 60px 0 20px;
  color: rgba(200, 230, 255, 0.8);
  font-size: 0.9rem;
}

.hud-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* About Section */
.hud-footer-about {
  max-width: 300px;
}

.hud-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 20px;
}

.hud-footer-logo i {
  font-size: 2rem;
}

.hud-footer-about p {
  font-family: "Rajdhani", sans-serif;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hud-footer-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hud-footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.hud-footer-badges img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Links Section */
.hud-footer-links h3 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
}

.hud-footer-links ul {
  list-style: none;
  padding: 0;
}

.hud-footer-links li {
  margin-bottom: 12px;
}

.hud-footer-links a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hud-footer-links a:hover {
  color: #00d4ff;
  text-shadow: 0 0 5px rgba(0, 132, 255, 0.3);
}

/* Contact Section */
.hud-contact-item {
  font-family: "Rajdhani", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.hud-contact-item i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.hud-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.hud-footer-social a {
  color: rgba(200, 132, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hud-footer-social a:hover {
  color: #00d4ff;
  transform: translateY(-3px);
}

/* Footer Bottom */
.hud-footer-bottom {
  border-top: 1px solid rgba(0, 132, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.hud-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hud-legal-links a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hud-legal-links a:hover {
  color: #00d4ff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hud-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hud-footer-about {
    max-width: 100%;
  }

  .hud-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hud-legal-links {
    justify-content: center;
  }
}

/* Glow Effects */
/* .hud-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            z-index: -1;
        }

        .glow-1 {
            width: 300px;
            height: 300px;
            background: #00d4ff;
            top: -150px;
            right: -150px;
            animation: glowPulse 6s infinite ease-in-out;
        }

        .glow-2 {
            width: 400px;
            height: 400px;
            background: #0066ff;
            bottom: -200px;
            left: -200px;
            animation: glowPulse 8s infinite 0.5s ease-in-out;
        } */

/* Animations */
@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes titleUnderline {
  0% {
    width: 10%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

@keyframes floatParticle1 {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

@keyframes floatParticle2 {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) translateX(-80px);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.2;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.2;
    transform: scale(0.95);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hud-nav {
    height: 70px;
    padding: 0 20px;
  }

  .hud-menu {
    display: none;
    /* Replace with mobile menu toggle */
  }

  .hud-hero-title {
    font-size: 2.5rem;
  }

  .hud-hero-subtitle {
    font-size: 1.2rem;
  }

  .hud-hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .hud-section {
    padding: 60px 20px;
  }

  .hud-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hud-hero-title {
    font-size: 1.5rem;
  }

  .hud-section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/* Contact Page Specific Styles */
.hud-contact-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 25, 0.95) 0%,
    rgba(5, 10, 20, 0.98) 100%
  );
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
}

.hud-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .hud-contact-container {
    grid-template-columns: 1fr;
  }
}

.hud-contact-info {
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hud-contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00d4ff, transparent);
}

.hud-contact-form {
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hud-contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00d4ff, transparent);
}

.contact-section-title {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  color: #00d4ff;
  margin-right: 1rem;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-info-content h4 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-content p,
.contact-info-content a {
  color: rgba(0, 212, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #ffffff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #00d4ff;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  background: rgba(10, 20, 30, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: rgba(0, 212, 255, 0.9);
  font-family: "Courier New", monospace;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.hud-form-submit {
  background: transparent;
  color: #00d4ff;
  border: 1px solid #00d4ff;
  padding: 0.8rem 2rem;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hud-form-submit:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.hud-contact-map {
  height: 300px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.hud-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(120%) hue-rotate(180deg);
}

.hud-contact-hours {
  margin-top: 2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.8rem 0;
  color: rgba(0, 212, 255, 0.7);
}

.hours-table td:first-child {
  font-weight: bold;
  color: #00d4ff;
}

/* About Page Specific Styles */
.hud-about-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 25, 0.95) 0%,
    rgba(5, 10, 20, 0.98) 100%
  );
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
}

.hud-timeline {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.hud-timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #00d4ff, transparent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-container::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #00d4ff80;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::after {
  right: -10px;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.timeline-year {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  color: #00d4ff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.timeline-title {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline-quote {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgba(0, 212, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.struggle,
.breakthrough {
  line-height: 1.6;
  font-family: "Rajdhani", "Orbitron", sans-serif;
  margin-bottom: 1.5rem;
}

.struggle h4,
.breakthrough h4 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.struggle h4::before {
  content: "⚠️";
  margin-right: 0.5rem;
}

.breakthrough h4::before {
  content: "🚀";
  margin-right: 0.5rem;
}

.timeline-quote {
  font-style: italic;
  color: rgba(0, 212, 255, 0.7);
  border-left: 2px solid #00d4ff;
  padding-left: 1rem;
  margin: 1rem 0;
}

.hud-about-cta {
  text-align: center;
  padding: 4rem 0;
  background: rgba(10, 15, 25, 0.8);
  border-top: 1px dashed rgba(0, 212, 255, 0.3);
  border-bottom: 1px dashed rgba(0, 212, 255, 0.3);
}

.key-takeaways {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
}

.key-takeaways h3 {
  color: #00d4ff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

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

.takeaway-card {
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.takeaway-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
}

.takeaway-card h4 {
  color: #00d4ff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.takeaway-card h4::before {
  content: "★";
  margin-right: 0.5rem;
}

@media screen and (max-width: 768px) {
  .hud-timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::after {
    left: 21px;
  }

  .left::after,
  .right::after {
    left: 21px;
  }

  .right {
    left: 0%;
  }
}

/* Marquee Tech Stack Styles */

.hud-tech-marquee {
  width: 100%;
  padding: 4rem 0;
  background: rgba(10, 15, 25, 0.9);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  overflow: hidden;
}

/* .hud-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.hud-section-subtitle {
    text-align: center;
    color: rgba(0, 212, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
} */

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  margin-top: 2rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-card {
  min-width: 150px;
  padding: 2rem;
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.tech-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
  animation-play-state: paused;
}

.tech-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(76%) sepia(29%) saturate(1232%)
    hue-rotate(153deg) brightness(101%) contrast(101%);
}

/* Tech Icon Styling */
/* .tech-icon img {
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
    filter: grayscale(30%) brightness(1.2) drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

/* Hover Effects - Brand Colors */
.tech-card:hover .tech-icon img {
  filter: none;
  transform: scale(1.15);
  animation: iconPulse 1.5s infinite alternate;
}

/* Dynamic Brand Color Application */
.tech-card[data-brand-color="#61DAFB"]:hover .tech-icon img {
  /* React */
  filter: drop-shadow(0 0 12px rgba(97, 218, 251, 0.7));
}

.tech-card[data-brand-color="#000000"]:hover .tech-icon img {
  /* Next.js */
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.7));
}

.tech-card[data-brand-color="#3178C6"]:hover .tech-icon img {
  /* TypeScript */
  filter: drop-shadow(0 0 12px rgba(49, 120, 198, 0.7));
}

.tech-card[data-brand-color="#339933"]:hover .tech-icon img {
  /* Node.js */
  filter: drop-shadow(0 0 12px rgba(51, 153, 51, 0.7));
}

.tech-card[data-brand-color="#E0234E"]:hover .tech-icon img {
  /* NestJS */
  filter: drop-shadow(0 0 12px rgba(224, 35, 78, 0.7));
}

.tech-card[data-brand-color="#3776AB"]:hover .tech-icon img {
  /* Python */
  filter: drop-shadow(0 0 12px rgba(55, 118, 171, 0.7));
}

.tech-card[data-brand-color="#336791"]:hover .tech-icon img {
  /* PostgreSQL */
  filter: drop-shadow(0 0 12px rgba(51, 103, 145, 0.7));
}

.tech-card[data-brand-color="#47A248"]:hover .tech-icon img {
  /* MongoDB */
  filter: drop-shadow(0 0 12px rgba(71, 162, 72, 0.7));
}

.tech-card[data-brand-color="#D82C20"]:hover .tech-icon img {
  /* Redis */
  filter: drop-shadow(0 0 12px rgba(216, 44, 32, 0.7));
}

.tech-card[data-brand-color="#EE4C2C"]:hover .tech-icon img {
  /* PyTorch */
  filter: drop-shadow(0 0 12px rgba(238, 76, 44, 0.7));
}

.tech-card[data-brand-color="#FF6F00"]:hover .tech-icon img {
  /* TensorFlow */
  filter: drop-shadow(0 0 12px rgba(255, 111, 0, 0.7));
}

.tech-card[data-brand-color="#2496ED"]:hover .tech-icon img {
  /* Docker */
  filter: drop-shadow(0 0 12px rgba(36, 150, 237, 0.7));
}

.tech-card[data-brand-color="#326CE5"]:hover .tech-icon img {
  /* Kubernetes */
  filter: drop-shadow(0 0 12px rgba(50, 108, 229, 0.7));
}

/* Icon Pulse Animation */
@keyframes iconPulse {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1.25);
  }
}

.tech-card h4 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.tech-card p {
  color: rgba(0, 212, 255, 0.7);
  font-size: 0.9rem;
}

/* Category Color Coding */
.tech-card[data-category="frontend"] {
  border-top: 3px solid #3b82f6;
}

.tech-card[data-category="backend"] {
  border-top: 3px solid #10b981;
}

.tech-card[data-category="database"] {
  border-top: 3px solid #f59e0b;
}

.tech-card[data-category="ai"] {
  border-top: 3px solid #8b5cf6;
}

.tech-card[data-category="devops"] {
  border-top: 3px solid #ec4899;
}

/* Pause on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-card {
    min-width: 120px;
    padding: 1rem;
  }

  .tech-icon {
    width: 50px;
    height: 50px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }
}

/* Contact CTA Styles */
.hud-contact-cta {
  font-family: "Rajdhani", sans-serif;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 20, 0.95) 0%,
    rgba(10, 15, 25, 0.98) 100%
  );
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hud-contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.hud-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hud-cta-content h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-blue);
  line-height: 1.2;
}

.hud-cta-message p {
  font-family: "Rajdhani", sans-serif;
  color: rgba(0, 132, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.hud-cta-message p::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

.hud-cta-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  font-family: "Unique";
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00d4ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: rgba(0, 212, 255, 0.7);
  font-size: 0.9rem;
}

.cta-card {
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 132, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 132, 255, 0.1);
  border-color: rgba(0, 132, 255, 0.5);
}

.cta-card-inner {
  position: relative;
  z-index: 2;
}

.cta-card-inner h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.cta-card-inner p {
  font-family: "Unique", sans-serif;
  color: rgba(0, 132, 255, 0.8);

  font-size: 1rem;
}

.cta-features {
  margin: 2rem 0;
  padding: 0;
}

.cta-features li {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  color: rgba(0, 132, 255, 0.8);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
  list-style: none;
}

.feature-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 132, 255, 0.1);
  border: 1px solid rgba(0, 132, 255, 0.3);
  border-radius: 50%;
  margin-right: 12px;
  color: #00f0ff;
}

/* .cta-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300d4ff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center center;
} */

.hud-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: #00d4ff;
  border: 1px solid #00d4ff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  gap: 0.5rem;
}

.hud-cta-button:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hud-cta-button svg {
  transition: transform 0.3s ease;
}

.hud-cta-button:hover svg {
  transform: translateX(5px);
}

.cta-card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .hud-cta-grid {
    grid-template-columns: 1fr;
  }

  .hud-cta-content h2 {
    font-size: 2rem;
  }

  .hud-cta-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hud-cta-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    text-align: left;
  }

  .cta-card {
    padding: 1.5rem;
  }
}

/* Services Page Specific Styles */
.hud-services-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 25, 0.95) 0%,
    rgba(5, 10, 20, 0.98) 100%
  );
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.services-intro p {
  color: rgba(0, 212, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.service-card {
  background: rgba(20, 30, 50, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00d4ff, transparent);
}

.service-icon {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(0, 212, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-pill {
  padding: 0.3rem 0.8rem;
  background: rgba(0, 212, 255, 0.1);
  color: rgba(0, 212, 255, 0.8);
  font-size: 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #ffffff;
}

.service-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(3px);
}

.industries-section {
  margin: 6rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.industry-card {
  background: rgba(20, 30, 50, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: rgba(20, 30, 50, 0.5);
  border-color: rgba(0, 212, 255, 0.3);
}

.industry-card h4 {
  color: #00d4ff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.industry-card h4::before {
  content: "▹";
  margin-right: 0.5rem;
  color: #00d4ff;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card li {
  color: rgba(0, 212, 255, 0.7);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.industry-card li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #00d4ff;
}

.hud-services-cta {
  text-align: center;
  padding: 4rem 0;
  background: rgba(10, 15, 25, 0.8);
  border-top: 1px dashed rgba(0, 212, 255, 0.3);
  border-bottom: 1px dashed rgba(0, 212, 255, 0.3);
  margin: 4rem 0;
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}

/* Tech Stack Categories Styles */
.tech-stack-section {
  margin: 6rem 0 4rem;
  padding: 2rem 0;
  position: relative;
}

.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 30%
    );
  pointer-events: none;
  z-index: -1;
}

.tech-stack-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: rgba(20, 30, 50, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-category:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

.tech-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 212, 255, 0.5), transparent);
}

.tech-category h4 {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(0, 212, 255, 0.3);
  position: relative;
}

.tech-category h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background: #00d4ff;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tech-list span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 212, 255, 0.08);
  color: rgba(0, 212, 255, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.tech-list span:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tech-stack-categories {
    grid-template-columns: 1fr;
  }

  .tech-category {
    padding: 1.2rem;
  }

  .tech-list {
    gap: 0.5rem;
  }

  .tech-list span {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 1200px) {
  .tech-stack-categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Scanline Animation */
.hud-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.8),
    transparent
  );
  animation: scanline 3s linear infinite;
  z-index: 2;
}

/* Radar-Hud */
.hud-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 212, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(180deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

/* Mobile Menu Toggle */
.hud-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.51);
  /* backdrop-filter: blur(9px); */
  /* -webkit-backdrop-filter: blur(9px); */
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

/* ===== Enhanced Hamburger Morph Animation ===== */
.hud-menu-toggle path {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.3s ease;
  transform-origin: center;
}

/* Active State - Smooth X Morph */
.hud-menu-toggle[aria-expanded="true"] .top-bar {
  transform: translateY(11px) rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s;
}

.hud-menu-toggle[aria-expanded="true"] .middle-bar {
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.hud-menu-toggle[aria-expanded="true"] .bottom-bar {
  transform: translateY(-11px) rotate(-45deg);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.1s;
}

/* Reverse Animation (X to Hamburger) */
.hud-menu-toggle:not([aria-expanded="true"]) .top-bar,
.hud-menu-toggle:not([aria-expanded="true"]) .bottom-bar {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.hud-menu-toggle:not([aria-expanded="true"]) .middle-bar {
  transition: opacity 0.3s ease 0.2s;
}

/* Mobile Menu Styles */
@media (max-width: 480px) {
  .hud-menu-toggle {
    display: block;
  }

  .hud-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgb(26, 6, 6, 0.4);
    backdrop-filter: blur(9px);
    border-left: 1px solid rgba(0, 212, 255, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 30px 30px;
    z-index: 999;
    transition: opacity 0.3s ease 0.2s;
    visibility: hidden;
    /* Added to prevent flash */
  }

  /* Remove any conflicting transitions */
  .hud-menu,
  .hud-menu * {
    transition: none !important;
  }
}

@media (min-width: 480px) {
  /* Force regular menu visibility on desktop */
  .hud-menu {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: blur(12px) !important;
    border-left: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    visibility: visible !important;
    right: auto !important;
    transform: none !important;
  }

  .hud-nav-actions {
    transform: none !important;
    opacity: 1 !important;
  }

  /* Reset menu items */
  .hud-menu-item {
    transform: none !important;
    opacity: 1 !important;
    border-bottom: none !important;
  }

  /* Hide mobile toggle */
  .hud-menu-toggle {
    display: none !important;
  }
}

/* GSAP Animation */
.hud-subtitle::after {
  content: "_";
  margin-left: 5px;
  animation: blink 1s step-start infinite;
  font-weight: bold;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hud-feature-card {
  position: relative;
  overflow: hidden;
}

.hud-feature-icon-bg {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 120px;
  opacity: 0.1;
  z-index: 0;
  color: currentColor;
}

.hud-feature-icon-bg i {
  color: inherit;
}

.hud-feature-content {
  position: relative;
  z-index: 1;
}

/* Maintain existing color schemes for each card */
.hud-feature-card:nth-child(1) .hud-feature-icon-bg {
  color: var(--primary-blue);
}

.hud-feature-card:nth-child(2) .hud-feature-icon-bg {
  color: #ff00f0;
}

.hud-feature-card:nth-child(3) .hud-feature-icon-bg {
  color: #ff8c00;
}

.hud-feature-card:nth-child(4) .hud-feature-icon-bg {
  color: #00ff7f;
}

.hud-feature-card:nth-child(5) .hud-feature-icon-bg {
  color: #a162e8;
}

.hud-feature-card:nth-child(6) .hud-feature-icon-bg {
  color: #ff6b6b;
}

/* Full-width Timeline Layout */

/* .industry-tag {
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 8px;
} */

/* 
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00f0ff, #00a8ff);
    border-radius: 3px;
}



.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-pill {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.impact-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #00f0ff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 13px;
    opacity: 0.8;
}

Phase CTA
.phase-cta {
    padding: 20px;
    background: rgba(0, 240, 255, 0.03);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.confidentiality-note {
  font-size: 13px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Full-width CTA */
/* .cta-container {
    position: relative;
    margin-top: 80px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
} */

.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-button.large {
  padding: 15px 30px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  /* .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .phase-progress {
        width: 100%;
        text-align: left;
    } */

  .cta-features {
    flex-direction: column;
    gap: 15px;
  }

  /* .phase-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    } */
}

/* ===== BASE STYLES ===== */
.manufacturing-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  /* background: radial-gradient(ellipse at top left, #073647 0%, #073647 100%); */
  border-radius: 16px;
  /* border: 1px solid #0395b7; */
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.5); */
  font-family: "Inter", sans-serif;
}

/* ===== HEADER STYLES ===== */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid rgba(3, 149, 183, 0.3); */
}

.dashboard-title {
  font-size: 2.8rem;
  margin: 0;
  background: linear-gradient(90deg, #0072e6, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.dashboard-subtitle {
  color: #b4d0e8;
  font-size: 1.1rem;
  margin-top: 8px;
}

.global-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: #b4d0e8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PROJECT GRID ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.project-tile {
  /* background: rgba(7, 54, 71, 0.7); */
  border-radius: 12px;
  border: 1px solid #0395b7;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-tile:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
}

/* ===== PROJECT HEADER ===== */
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(3, 149, 183, 0.1);
}

.country-flag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-flag img {
  text-align: center;
  width: 32px;
  height: auto;
  border-radius: 4px;
}

.industry-tag {
  align-items: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 1rem;
  color: #b4d0e8;
}

.project-status {
  font-family: "Courier New", Courier, monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #b4d0e8;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-indicator.active {
  background: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.planning {
  background: #0395b7;
  box-shadow: 0 0 10px rgba(3, 149, 183, 0.3);
}

.status-indicator.testing {
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

@media (max-width: 480px) {
  .hud-project-header {
    max-width: 100vw;
    justify-content: space-between;
  }

  .country-flag {
    width: 200px;
  }

  .country-flag img {
    width: 25px;
  }

  .industry-tag {
    padding: 4px 12px;
    font-size: 0.7rem;
  }

  .status-indicator {
    margin-left: 10px;
  }

  .project-status {
    max-width: 100px;
    font-size: 0.7rem;
  }

  .hud-project-stats li strong,
  span {
    font-size: 0.9rem;
  }

  .hud-timeline {
    margin-top: 2rem;
    padding-left: 0 2rem;
    font-size: 0.8rem;
  }

  .hud-timeline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
  }

  .confidential-badge {
    font-size: 0.6rem;
  }

  .dashboard-button {
    padding: 1px 2px;
    border-radius: 5px;
    margin-left: 10px;
  }

  .dashboard-button span {
    font-size: 0.7rem;
  }
}

/* ===== COMPLETE PROJECT BODY REDESIGN ===== */
.project-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  padding: 0;
  position: relative;
  min-height: 280px;
}

/* Data Visualization Panel - Left Side */
.data-viz {
  display: grid;
  /* grid-template-rows: auto 1fr; */
  gap: 20px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(7, 54, 71, 0.9) 0%,
    rgba(3, 149, 183, 0.15) 100%
  );
  /* border-radius: 12px; */
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(0, 212, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* .data-viz::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
} */

/* Circular Progress Gauge */
.gauge-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 180px;
  margin: 0 auto;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-track {
  fill: none;
  stroke: rgba(180, 208, 232, 0.1);
  stroke-width: 10;
  stroke-linecap: round;
}

.gauge-fill {
  fill: none;
  stroke: url(#gauge-gradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
  transition: stroke-dashoffset 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.gauge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.gauge-value {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 5px;
}

.gauge-label {
  font-size: 0.8rem;
  color: #b4d0e8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Mini Stats Grid */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.mini-stat {
  background: rgba(7, 54, 71, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.mini-stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 3px;
}

.mini-stat-label {
  font-size: 0.7rem;
  color: #b4d0e8;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Project Details Panel - Right Side */
.project-details {
  display: flex;
  flex-direction: column;
  padding: 25px 25px 25px 0;
}

.project-title {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  color: #b4d0e8;
  position: relative;
  padding-bottom: 12px;
}

.project-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, transparent);
}

/* KPI Impact Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.kpi-card {
  background: rgba(7, 54, 71, 0.6);
  border: 1px solid rgba(3, 149, 183, 0.2);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kpi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00d4ff, #00ff88);
}

.kpi-card:hover {
  transform: translateY(-5px);
  border-color: #00d4ff;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.kpi-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  line-height: 1;
}

.kpi-label {
  font-size: 0.85rem;
  color: #b4d0e8;
  margin-top: 8px;
}

/* Solution Timeline */
.solution-timeline {
  margin-top: 25px;
}

/* .timeline-title {
    font-size: 0.9rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
} */

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 25px;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  height: calc(100% - 10px);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    #00d4ff 20%,
    #00ff88 80%,
    transparent
  );
}

.timeline-step {
  position: relative;
  padding-left: 25px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #073647;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 0 3px rgba(7, 54, 71, 0.8);
  z-index: 2;
}

.timeline-step:nth-child(2)::before {
  border-color: #0395b7;
}

.timeline-step:nth-child(3)::before {
  border-color: #00ff88;
}

.timeline-content {
  background: rgba(7, 54, 71, 0.5);
  border-radius: 6px;
  padding: 12px 15px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

/* Tech Stack */
.tech-stack {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 208, 232, 0.1);
}

.tech-stack-title {
  font-size: 0.9rem;
  color: #b4d0e8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  padding: 6px 12px 6px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #b4d0e8;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.tech-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .project-body {
    grid-template-columns: 1fr;
  }

  .project-details {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== PROJECT FOOTER ===== */
.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(3, 149, 183, 0.1);
  border-top: 1px solid rgba(3, 149, 183, 0.2);
}

.confidential-badge {
  font-family: "rajdhani";
  font-size: 0.8rem;
  color: #b4d0e8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dashboard-button {
  font-family: "Rajdhani", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #b4d0e8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dashboard-button:hover {
  background: rgba(0, 212, 255, 0.2);
}

/* ===== DASHBOARD FOOTER ===== */
.dashboard-footer {
  margin-top: 40px;
  padding-top: 30px;
  /* border-top: 1px solid rgba(3, 149, 183, 0.3); */
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid #0395b7;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #b4d0e8;
}

.cta-block {
  text-align: center;
  margin-top: 40px;
}

.cta-block h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #b4d0e8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  font-family: "Rajdhani", sans-serif;
  color: #073647;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

/* ===== ANIMATIONS ===== */
.pulse-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .global-stats {
    width: 100%;
    justify-content: space-between;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-body {
    flex-direction: column;
  }

  .trust-badges {
    gap: 15px;
  }

  .badge {
    padding: 6px 15px;
  }

  .dashboard-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .project-status {
    width: 100%;
    justify-content: space-between;
  }
}

.transform-dashboard {
  background: linear-gradient(135deg, #073647, #0395b7);
  color: #b4d0e8;
  padding: 2rem;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.banner-title {
  font-size: 2rem;
  color: #00d4ff;
}

.banner-subtitle {
  color: #b4d0e8;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  color: #00ff88;
}

.projects-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.project-card {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00d4ff20;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-phase {
  color: #00ff88;
}

.phase-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #00d4ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  color: #00d4ff;
}

.kpis {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.kpis li {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.tech-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tags span {
  background: #00d4ff20;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
}

.btn-case-study {
  display: inline-block;
  background: #00d4ff;
  color: #073647;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.dashboard-cta {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  background: #00ff88;
  color: #073647;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: bold;
  text-decoration: none;
}

/* Base HUD Styles */

.hud-projects-section {
  padding: 4rem 0;
  /* background: rgba(10, 15, 25, 0.9); */
  will-change: transform;
  /* color: #00fffc; */
  color: #00d4ff;
  font-family: "Courier New", monospace;
  /* border-top: 1px solid rgba(0, 255, 252, 0.2); */
  /* border-bottom: 1px solid rgba(0, 255, 252, 0.2); */
}

/* .hud-container {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
  background: #b4d0e8;
  color: #073647;
  font-family: 'Segoe UI', Tahoma, sans-serif;
} */

/* .hud-section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.hud-section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #0395b7;
  margin-bottom: 3rem;
} */

/* Project Section */
.hud-project-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hud-project {
  border-top: 2px solid #0395b7;
  padding-top: 1.5rem;
}

.hud-project-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hud-project-location {
  color: #00d4ff;
}

.hud-progress-bar {
  background: #073647;
  height: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.hud-progress-fill {
  background: #00ff88;
  height: 100%;
  width: 0;
  transition: width 1s ease-in-out;
}

.hud-progress-label {
  position: absolute;
  top: -1.5rem;
  right: 0.75rem;
  font-size: 0.9rem;
  color: #073647;
}

.hud-project-stats {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-family: "rajdhani", sans-serif;
}

.hud-project-stats li {
  font-size: 1rem;
}

.hud-project-stats strong {
  display: block;
  font-size: 1.3rem;
  color: #073647;
}

.hud-project-timeline {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: #0395b7;
  margin-top: 0.5rem;
  font-family: "rajdhani", sans-serif;
}

/* Footer CTA */
.hud-projects-footer {
  text-align: center;
  margin-top: 3rem;
}

.hud-credibility-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #073647;
}

/* .hud-button {
  background: #00d4ff;
  color: #073647;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hud-button:hover {
  background: #0395b7;
  color: #fff;
} */


body, html {
  cursor: none !important; /* Remove native cursor */
}

/* Large outer cursor */
#custom-cursor {
  position: fixed;
  left: 0; top: 0;
  width: 38px; height: 38px;
  border: 2px solid #00baff;
  border-radius: 50%;
  background: rgba(0,186,255,0.10);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 12000;
  transition: width .14s, height .14s, background .18s, border-color .15s;
  mix-blend-mode: lighten;
  box-shadow: 0 0 12px 2px rgba(0,186,255,0.10);
}

/* Inner dot */
#custom-cursor-dot {
  position: fixed;
  left: 0; top: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00baff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 12001;
  transition: background 0.18s, width 0.18s, height 0.18s;
}


.hud-chat-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}

.hud-float-btn.hud-float-whatsapp {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #25d366;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 48px;
  /* box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25); */
  padding: 5px 10px;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.hud-float-btn.hud-float-whatsapp i {
  
  font-size: 1.7rem;
}

.hud-float-btn.hud-float-whatsapp:hover {
 border: 1px solid rgba(37, 211, 102, 0.28);
  /* box-shadow: 0 6px 30px rgba(37, 211, 102, 0.28); */
}

@media (max-width: 599px) {
  .hud-chat-float {
    bottom: 18px;
    right: 14px;
  }
  .hud-float-btn.hud-float-whatsapp {
    padding: 10px 16px;
    font-size: 0.99rem;
  }
  .hud-float-btn.hud-float-whatsapp i {
    font-size: 1.2rem;
  }
}
