:root {
  --foreground-rgb: 255, 255, 255;
  --background-rgb: 0, 0, 0;
  --text-primary: #ffffff;
  --text-secondary: #ffffff;
  --spacing-section: 96px;
  --font-family: "Geist Sans", Arial, Helvetica, sans-serif;
  --accent-color: #A201FF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  color: var(--text-primary);
  background: rgb(var(--background-rgb));
  font-family: var(--font-family);
  line-height: 1.5;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header.scroll-down {
  transform: translateY(-100%);
}

.header.scroll-up {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .container a {
  cursor: pointer;
}

.logo {
  height: 41px;
  width: auto;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 18px;
  position: relative;
}
.full-site-coming-soon{
  text-align: center;
  margin-top: 100px;
  color: #000;
  font-size: 25px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  bottom: 0;

  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 0;
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  margin: 100px 20px 0 20px;
  text-align: left;
}

.hero-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: left;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 45px;
  text-align: left;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 300px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  border-radius: 12px;
}

/* Who We Are Section */
.bg-light {
  background-color: #ffffff;
  color: #000000;
}

.text-content {
  max-width: 800px;
  margin: 0 auto 64px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
}

.uniqueness-section {
  margin-top: 80px;
}

/* .uniqueness-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 48px;
  color: #000;
} */

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.service-card {
  padding: 45px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid black;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card h3 {
  font-size: 22px;
  font-weight:500;
  margin-bottom: 25px;
  color: #000;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}
.service-card-img{
  height: 90px;
  width: auto;

}
.service-card-img img{

  margin: 0;
}
.Industry7{
  height: 60px;
  width: auto;
  margin-bottom: 30px;
}

/* What We Do Section */
.bg-black {
  background: #000;
  color: white;
}

.section {
  padding: var(--spacing-section) 0;
}

.section-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}
.section-description{
    text-align: center;
    margin-bottom: 30px;
}
.section-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border: 1px solid var(--accent-color);
}
.card-title{
  margin-bottom: 20px;
  font-size: 20px;
}

.card-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* Industries Section */
.bg-dark {
  background: #111;
}

#industries .section-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* How We Serve Section */
.how-we-serve-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step {
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
  border-radius: 2px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  border-left-color: var(--accent-color);
}

.step-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.step-list {
  list-style: none;
}

.step-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: var(--text-secondary);
}

.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
}

.our-edge {
  margin-top: 80px;
}

/* why choose*/
.why-choose-us {
  color: #000;
  background-color: #ffffff;
  gap: 24px;
}

.why-container {
  max-width: 800px;
  margin: 0 auto;
}

.why-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.why-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
  user-select: none;
}

.why-title {
  font-size: 24px;
  margin: 0;
  color: #000000;
}

.why-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;
}

.why-text {
  padding: 1rem 0;
  color: #000000;
  line-height: 1.6;
}

.why-choose-us{
margin-top: 120px;
}


/* New styles for the edge section */
.edge-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.edge-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.edge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
  user-select: none;
}

.edge-title {
  font-size: 24px;
  color: var(--text-primary);
  margin: 0;
}

.edge-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.edge-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;
}

.edge-text {
  padding: 1rem 0;
  color: #000000;
  line-height: 1.6;
}

.section-subtitle{
  text-align: center;
}

/* CTA Section */
#cta {
  background: white;
  color: black;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-secondary {
  background: black;
  color: white;
}

.btn i {
  margin-left: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-color);
  color: white;
}

.CTA-main-p{
  margin: 50px 250px;
}
.cta-text{
  margin-bottom: 30px;
}


/* Footer */
.footer {
  background: #000;
  padding: 48px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  width: 200px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Animations */
/* .animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
} */

/* @keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-button:hover {
  color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .edge-list {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: #000000;
    padding: 20px;
    text-align: center;
  }

  .nav-links.open {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: white;
    font-size: 18px;
    padding: 10px 0;
    display: block;
    width: 100%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .hero-content {
    margin: 120px auto 0;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;

  }

  .hero-subtitle {
    font-size: 17px;
  }

  /* .hero-image {
    display: block;
    height: 300px;
    margin-top: 24px;
  } */

  .hero-video {
    height: 300px;
    width: 100%;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .edge-list {
    flex-direction: column;
    gap: 32px;
  }

  .edge-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 30px;
  }

  .text-content p {
    font-size: 16px;
  }

  .CTA-main-p {
    margin: 50px 20px;
  }

  .edge-title {
    font-size: 20px;
  }
  
  .edge-text {
    font-size: 15px;
    text-align: left;
  }

  .service-card {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .hero-content {
    margin: 130px auto 0;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 24px;
  }

  .container {
    padding: 0 16px;
  }
}

/* Active states */
.why-item.active .why-toggle,
.edge-item.active .edge-toggle {
    transform: rotate(45deg);
}

.why-item.active .why-content,
.edge-item.active .edge-content {
    max-height: 500px;
    opacity: 1;
}

/* Edge specific styles */
.edge-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.edge-text {
    color: var(--text-secondary);
}

/* Lazy loading styles */
.lazy-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Text colors for dark backgrounds */
.bg-black, .bg-dark, .header, .footer, 
.card p, .step p, .edge-text, .embrace-pillar p, 
.embrace-pillar li, .ai-section.bg-dark p {
  color: #FFFFFF;
}

/* Text colors for light backgrounds */
.bg-light, #cta, .what-is-content p, 
.accordion-content p, .why-text, 
.service-card p, .text-content p, 
.ai-section.bg-light p {
  color: #000000;
}