/* style.css */
/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com */
/* ... (Tailwind CSS base, components, utilities) ... */

/* Custom base styles and variables - Orange/Amber Theme */
:root {
  --color-primary: #ea580c; /* Orange-600 */
  --color-primary-light: #f97316; /* Orange-500 */
  --color-primary-dark: #c2410c; /* Orange-700 */
  --color-accent: #f59e0b; /* Amber-500 */
  --color-bg-dark: #0a0e1a; /* Deep navy/charcoal */
  --color-text-light: #f3f4f6;
  --color-text-muted: #9ca3af;
  --color-card-bg: rgba(255, 255, 255, 0.03);
  --border-glow: rgba(234, 88, 12, 0.3);
  --font-family: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Gradient Text - Orange/Amber */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Button Styles - Orange/Amber */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}
.button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.6);
}

.button--ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary-light);
}

.button--full {
  width: 100%;
}

/* Header */
.header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  text-decoration: none;
}
.logo__text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.05em;
}
.logo__badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  color: white;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.nav__link:hover {
  color: white;
}
.nav__link--button {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
}
.nav__link--button:hover {
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}
.hamburger__line {
  width: 25px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s ease;
}

/* Hamburger Menu Active State */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section - Clean Dark Background with Geometric Lines */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  padding: 4rem 0 0;
}

/* Geometric Line Patterns (like palm lines) - Only lines, no orange background */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Diagonal lines */
    repeating-linear-gradient(45deg, 
      transparent 0px, 
      transparent 40px, 
      rgba(234, 88, 12, 0.06) 40px, 
      rgba(234, 88, 12, 0.06) 41px
    ),
    repeating-linear-gradient(-45deg, 
      transparent 0px, 
      transparent 40px, 
      rgba(245, 158, 11, 0.04) 40px, 
      rgba(245, 158, 11, 0.04) 41px
    ),
    /* Horizontal subtle lines */
    repeating-linear-gradient(0deg, 
      transparent 0px, 
      transparent 80px, 
      rgba(234, 88, 12, 0.03) 80px, 
      rgba(234, 88, 12, 0.03) 81px
    ),
    /* Vertical subtle lines */
    repeating-linear-gradient(90deg, 
      transparent 0px, 
      transparent 80px, 
      rgba(245, 158, 11, 0.03) 80px, 
      rgba(245, 158, 11, 0.03) 81px
    );
  z-index: 0;
  pointer-events: none;
}

/* Remove the orange gradient overlay completely */
.hero::before {
  display: none;
}

/* Ensure hero content is above the background */
.hero__container,
.hero__visual,
.trusted-bar {
  position: relative;
  z-index: 1;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}
.hero__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
}
.grid-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  aspect-ratio: 1/1;
  transition: all 0.3s;
  animation: pulse-grid 4s ease-in-out infinite alternate;
}
.grid-item:nth-child(odd) {
  animation-delay: 0.5s;
}
@keyframes pulse-grid {
  0% {
    background: rgba(234, 88, 12, 0.05);
    border-color: rgba(255, 255, 255, 0.03);
  }
  100% {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
  }
}

.floating-card {
  position: absolute;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 88, 12, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 9999px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

/* Innovation - Sits in the open gap to the LEFT, above the grid */
.floating-card--1 {
  top: 15%;
  left: 80%;
}

/* Security - Sits in the open gap to the RIGHT, below the grid */
.floating-card--2 {
  bottom: 15%;
  right: 2%;
  animation-delay: 2s;
}

/* Scalability - Sits in the open gap to the LEFT, below the grid */
.floating-card--3 {
  bottom: 5%;
  left: 2%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Trusted Bar */
.trusted-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}
.trusted-bar__label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f3f4f6;
  margin-bottom: 1.5rem;
}
.trusted-bar__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}
.trusted-bar__logos span {
  font-weight: 500;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.trusted-bar__logos span:hover {
  opacity: 1;
}

/* Section Styles */
.section {
  padding: 6rem 0;
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary-light);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

/* Glass-morphism Cards - Orange/Amber glow */
.service-card,
.vision-card,
.partnership-card,
.feature-item,
.contact__info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover,
.vision-card:hover,
.partnership-card:hover,
.feature-item:hover {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 8px 40px 0 rgba(234, 88, 12, 0.15);
  transform: translateY(-6px);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}
.about__text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.vision-card {
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 16px;
}
.vision-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: white;
}
.vision-card p {
  color: var(--color-text-muted);
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  border-radius: 20px;
  padding: 2rem;
}
.service-card--highlight {
  border-color: var(--color-primary);
  background: rgba(234, 88, 12, 0.05);
}
.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card__description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-card__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-card__features li {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.8rem;/* ========================================================
   HEADER & FOOTER LOGO FIX - SIDEBYSIDE & SAME SIZE
   ======================================================== */
.logo--header,
.logo--footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo--header .logo__image,
.logo--footer .logo__image {
    height: 3rem; /* Adjust this value to precisely match your text height */
    width: auto;
    max-height: 3rem;
    display: block;
}

/* Ensure text group aligns well */
.logo__text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo--header .logo__badge,
.logo--footer .logo__badge {
    margin-top: 0.1rem; /* Fine-tune badge spacing if needed */
}

/* Scale down slightly on mobile to prevent overflow */
@media (max-width: 768px) {
    .logo--header .logo__image,
    .logo--footer .logo__image {
        height: 2.5rem; 
        max-height: 2.5rem;
    }
}
  border-radius: 9999px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Industries */
.industries__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.2rem;
}
.industry-tag {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: default;
}
.industry-tag:hover {
  background: rgba(234, 88, 12, 0.1);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
}
.feature-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.feature-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Partnership */
.partnership {
  background: radial-gradient(circle at 30% 30%, rgba(234, 88, 12, 0.05), transparent 60%);
}
.partnership__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.partnership__text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.partnership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}
.partnership-card {
  padding: 2rem;
  border-radius: 16px;
}
.partnership-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.partnership-card p {
  color: var(--color-text-muted);
}
.partnership__cta {
  margin-top: 2rem;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact__info {
  padding: 2rem;
  border-radius: 20px;
}
.contact__info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact__info p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.contact__details {
  list-style: none;
  margin-bottom: 2rem;
}
.contact__details li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact__details a {
  color: var(--color-text-light);
  text-decoration: none;
}
.contact__details a:hover {
  color: var(--color-primary-light);
}
.contact__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact__services span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand .logo {
  margin-bottom: 1rem;
}
.footer__description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 350px;
}
.footer__links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer__links ul {
  list-style: none;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: white;
}
.footer__legal {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-align: right;
}
.footer__legal p {
  margin-bottom: 0.25rem;
}

/* ========================================================
   RESPONSIVE STYLES
   ======================================================== */

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header */
  .header__container {
    flex-wrap: wrap;
  }

  /* Mobile Menu - OVERLAP FIX */
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    order: 3;
    padding-top: 80px;
    overflow-y: auto;
    animation: menuFadeIn 0.3s ease forwards;
  }

  @keyframes menuFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav.is-active {
    display: block !important;
  }

  .nav__list {
    flex-direction: column;
    padding: 2rem 2rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .nav__link {
    font-size: 1.3rem;
    padding: 0.5rem 0;
    display: block;
  }

  .nav__link--button {
    text-align: center;
    padding: 0.7rem 2.5rem;
    display: inline-block;
    margin-top: 0.5rem;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    min-height: auto;
  }
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__grid {
    max-width: 280px;
  }
  .floating-card {
    display: none;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats {
    justify-content: center;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Partnership */
  .partnership__grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__legal {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero__grid {
    max-width: 220px;
  }
  
  .hero__title {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* ========================================================
   HEADER & FOOTER LOGO FIX - SIDEBYSIDE & SAME SIZE
   ======================================================== */
.logo--header,
.logo--footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo--header .logo__image,
.logo--footer .logo__image {
    height: 3rem; /* Adjust this value to precisely match your text height */
    width: auto;
    max-height: 3rem;
    display: block;
}

/* Ensure text group aligns well */
.logo__text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo--header .logo__badge,
.logo--footer .logo__badge {
    margin-top: 0.1rem; /* Fine-tune badge spacing if needed */
}

/* Scale down slightly on mobile to prevent overflow */
@media (max-width: 768px) {
    .logo--header .logo__image,
    .logo--footer .logo__image {
        height: 2.5rem; 
        max-height: 2.5rem;
    }
}

