
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Theme (match fulltechnologies HTML hero + buttons) */
  --bg-dark: #0E1114;
  --gradient: linear-gradient(135deg, #47A19E, #53B099, #6CCD99);
  --gradient-hover-glow: rgba(83, 176, 153, 0.25);
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255, 255, 255, 0.72);
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0.2, 0.2, 1);
  --transition-fast: 0.25s var(--ease);
  --hover-lift-sm: translateY(-3px);

  --color-primary: #000000;
  --color-light-gray: #ebebebb2;
  --color-secondary: #28a745;
  --color-text: #6e6e6e;
  --color-text-dark: #a7a7a7;
  --radius-16: 16px;
  --radius-24: 24px;
  --radius-28: 28px;
  --radius-18: 18px;
  --drop-shadow: 9.34px 16.01px 28.02px 0 #184f780d,
    -9.34px -16.01px 28.02px 0 #184f780d;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-special: 9.34px 16.01px 28.02px 0 #184f780d,
    -9.34px -16.01px 28.02px 0 #184f780d;
  --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html,
body,
.scroll-area,
* {
  scrollbar-width: thin;
  scrollbar-color: #a8a8a8 #111;
}
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
*::-webkit-scrollbar-track {
  background: #111;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 2px solid #111;
  background: linear-gradient(
    to bottom,
    #e0e0e0 0%,
    #cfcfcf 25%,
    #bfbfbf 50%,
    #9a9a9a 75%,
    #444444 100%
  );
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    to bottom,
    #f5f5f5 0%,
    #dcdcdc 25%,
    #c8c8c8 50%,
    #a5a5a5 75%,
    #333333 100%
  );
}
body {
  font-family: var(--font-body);
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-primary);
  background-color: #ffffff;
  overflow-x: hidden;
  transition: all 0.3s linear;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}
img {
  width: 100%;
  height: auto;
}
img.cover {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
li {
  list-style-type: none;
  padding-left: 0;
}
figure {
  margin-bottom: 0;
}
section {
  overflow: hidden;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
  line-height: 1.3;
  color: var(--color-primary);
}
.description {
  font-size: 2.2rem;
  line-height: 1.5;
  color: var(--color-text);
}
.dashb-btn {
  outline: none;
  width: initial;
  white-space: nowrap;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition-base) !important;
}
.primary-btn,
.secondary-btn {
  padding: 1.3rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--radius-16);
}
.primary-btn {
  background: var(--gradient);
  color: var(--text-on-dark);
  border: none;
}
.primary-btn:hover {
  color: var(--text-on-dark);
  border: none;
  transform: var(--hover-lift-sm);
  box-shadow: 0 12px 32px var(--gradient-hover-glow);
}
.primary-btn:active {
  transform: translateY(0);
}
.secondary-btn {
  background-color: #fff;
}
.secondary-btn:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}
.dashb-light-btn {
  border-radius: 8px;
  background-color: #0000001a;
  font-size: 1.4rem;
  padding: 8px 1rem;
}
.dashb-light-btn:hover {
  background-color: #08080830;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ellipse-lg {
  position: absolute;
  width: 11rem;
  height: 11rem;
  background-color: #0000000f;
  border-radius: 50%;
  z-index: -1;
}
.ellipse-sm {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-color: #0000000f;
  border-radius: 50%;
  z-index: -1;
}

.clr-text {
  color: var(--color-text);
}
.clr-text-dark {
  color: var(--color-text-dark);
}
.shadow-normal {
  box-shadow: var(--drop-shadow);
}

[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  opacity: 1;
}
.card-hover-effect:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.btn-pulse {
  position: relative;
  overflow: hidden;
}
.btn-pulse-infinite {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 70%;
  }
  .section-heading {
    font-size: 2.2rem;
  }
  .primary-btn {
    font-size: 15px;
  }
}