:root {
  --westorx-gradient: linear-gradient(90deg, #ff41d2 0%, #4bdcff 100%);
  --color-background: #0f0f1a;
  --color-surface: #181826;
  --color-text: #fafaff;
  --color-text-secondary: #bdbdd7;
  --color-primary: #4bdcff; /* Use this for buttons and highlights */
  --color-border: rgba(75, 220, 255, 0.13);
  --radius-base: 14px;
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.14);
  --font-family-base: "Inter", "Geist", Arial, sans-serif;
}

html, body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #12121e;
  box-shadow: 0 2px 24px 0 #11112044;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: -0.03em;
  margin: 0;
}
.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav__link {
  color: var(--color-text-secondary);
  font-size: 1.02rem;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color .21s;
  padding: 0.6em 0.6em;
}
.nav__link.active, .nav__link:hover {
  color: var(--color-primary); /* just a simple color, no gradient */
}
.nav__toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  gap: 0.3rem;
  z-index: 1001;
}
.nav__toggle-bar {
  width: 24px;
  height: 3px;
  background: var(--color-text-secondary);
  border-radius: 2px;
  transition: all .25s;
}
@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #12121e;
    flex-direction: column;
    padding: 2rem 0 2rem 0;
    gap: 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: all .24s;
    box-shadow: 0 8px 40px #11112066;
  }
  .nav__menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: var(--color-background);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 96px;
  overflow: hidden;
}
.hero__container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
  margin: 2rem auto;
  max-width: 640px;
}
.hero__title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fafaff;
  margin-bottom: 1.3rem;
  line-height: 1.13;
}
.hero__subtitle {
  font-size: 1.13rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.2rem;
}
.hero__cta {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
}
@media (max-width: 700px) {
  .hero__content { padding: 1.2rem 0.5rem; }
  .hero__title { font-size: 1.2rem; }
}

/* Buttons - use simple accent color, not gradient */
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.8em 2.3em;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  transition: background .18s, box-shadow .18s, color .17s;
  margin-bottom: 0;
  outline: none;
}
.btn--primary {
  background: var(--color-primary);
  color: #181826;
  box-shadow: 0 0 14px #4bdcff44;
}
.btn--primary:hover, .btn--primary:focus {
  background: #00b4d8;
  color: #fff;
  box-shadow: 0 0 19px #4bdcff88;
}
.btn--outline {
  border: 2px solid var(--color-primary);
  background: none;
  color: var(--color-primary);
}
.btn--outline:hover, .btn--outline:focus {
  background: #4bdcff22;
  color: #fff;
  border-color: #4bdcff;
}
.btn--lg {
  font-size: 1.1rem;
  padding: 0.93em 2.8em;
}
.btn--full-width {
  width: 100%;
  display: block;
}

/* Section Styles */
.section-padding { padding: 76px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fafaff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.025em;
  position: relative;
}
.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  display: inline-block;
}

/* All cards and features - no gradient borders, just surface and subtle highlight on hover */
.about__content, .services__grid, .portfolio__grid, .features__grid, .contact__form {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 1050px) {
  .about__content, .contact__content, .footer__content { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .section-padding { padding: 36px 0; }
}
@media (max-width: 700px) {
  .footer__links { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .contact__content { grid-template-columns: 1fr; }
}
@media (max-width: 550px) {
  .nav__logo { font-size: 1.1rem; }
  .nav { padding: 0.7rem 0.3rem; }
  .section-padding { padding: 18px 0; }
  .about__stats { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
}

/* Add the rest of your card, feature, portfolio, and footer styling here as in the prior version, omitting any gradient border/background. */



/* About Section */
.about__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about__text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.about__text p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Stats */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 1rem;
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-6px);
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.stat__label {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .about__stats {
    grid-template-columns: 1fr;
  }
}










/*  */


/* Services Section */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-surface);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(75, 220, 255, 0.2);
}

.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.service-card__description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
/*  */


/*  */

/* Portfolio Section */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: var(--color-surface);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 32px rgba(75, 220, 255, 0.2);
}

.portfolio-item__content {
  padding: 1.5rem;
}

.portfolio-item__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.portfolio-item__content p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.portfolio-item__category {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--westorx-gradient);
  color: #fff;
}

.portfolio-item {
  opacity: 0;
  transform: translateY(30px);
}
.portfolio-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

/*  */

/*  */

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

.feature-card {
  background: var(--color-surface);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(75, 220, 255, 0.2);
}

.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.feature-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.feature-card__description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.feature-card {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}



/*  */

/*  */

/* Contact Section */
.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__item p,
.contact__item a {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
}

.contact__item a:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact__form {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-base);
  border: 1px solid var(--color-border);
  background: #12121e;
  color: var(--color-text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(75, 220, 255, 0.3);
}

textarea.form-control {
  resize: none;
}

/* Error messages */
.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

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

.contact__info,
.contact__form {
  opacity: 0;
  transform: translateY(30px);
}

.contact__info.animate-in,
.contact__form.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

/* Contact Section */
.contact .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

/* Contact Info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
}

.contact__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__item p,
.contact__item a {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
}

.contact__item a:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact__form {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-glass);
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-base);
  border: 1px solid var(--color-border);
  background: #12121e;
  color: var(--color-text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(75, 220, 255, 0.3);
}

textarea.form-control {
  resize: none;
}

/* Error messages */
.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

/* Button */
.contact__form .btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
}

/* Animations */
.contact__info,
.contact__form {
  opacity: 0;
  transform: translateY(30px);
}

.contact__info.animate-in,
.contact__form.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

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





/*  */
/* Themed error box */
.form-error-box {
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #ff6b6b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 6px;
  text-align: left;
  animation: fadeIn 0.4s ease-in;
}

/* Themed success box */
.form-success-box {
  background: rgba(75, 220, 255, 0.15);
  border: 1px solid rgba(75, 220, 255, 0.3);
  color: #4bdcff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 600;
  animation: fadeIn 0.4s ease-in;
}

/* Input error border */
.form-control.error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 8px rgba(255, 100, 100, 0.3);
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}



/*  */
/*  */



/* Footer */
.footer {
  background: #0b0b14;
  color: var(--color-text-secondary);
  padding: 3rem 1rem 1.5rem;
  font-size: 0.95rem;
  border-top: 2px solid rgba(75, 220, 255, 0.15);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.6rem;
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

.footer__social {
  display: flex;
  gap: 0.9rem;
}

.footer__social-link {
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer__social-link:hover {
  transform: scale(1.2);
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.footer__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 0.6rem;
}

.footer__list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: #4bdcff; /* Highlight hover */
}

.footer__bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer__highlight {
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__brand {
    margin: 0 auto;
  }

  .footer__social {
    justify-content: center;
  }

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

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



.footer__social-link {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer__social-link:hover {
  transform: scale(1.2);
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

/* Gradient only for icons */
.footer_clrs {
  font-size: 1rem;
  background: var(--westorx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Links stay normal text */
.footer__link {
  text-decoration: none;
  color: #fff; /* white or your theme text color */
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #2ae4e4; /* hover effect (WestorX accent) */
}

/* Normal text */
.footer__text {
  color: #ccc; /* softer gray */
}

.footer__item {
  display: flex;
  align-items: center;   /* vertical centering */
  gap: 10px;             /* space between icon & text */
  margin: 6px 0;         /* spacing between rows */
}

.footer__item i {
  flex-shrink: 0;        /* prevent icon from shrinking */
}







.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
}

/* Large version */
.btn--lg {
  font-size: 1rem;
}

/* Primary button */
.btn--primary {
  background: var(--westorx-gradient);
  color: #fff;
  border: none;
}

.btn--primary:hover {
  opacity: 0.9;
}

/* Outline button */
.btn--outline {
  border: 2px solid var(--westorx-gradient);
  color: var(--westorx-gradient);
  background: transparent;
}

.btn--outline:hover {
  background: var(--westorx-gradient);
  color: #fff;
}
