/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #0d0d0d;
  color: white;
}

/* ---------- HEADER ---------- */
.custom-header {
  background-color: #0d0d0d;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- LOGO ---------- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 40px;
  display: block;
}

.site-logo h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* ---------- NAVIGATION ---------- */
.site-nav {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00D18C;
  transition: width 0.3s ease;
}

.nav-list li a:hover,
.nav-list .current-menu-item a {
  color: #00D18C;
}

.nav-list li a:hover::after,
.nav-list .current-menu-item a::after {
  width: 100%;
}

/* ---------- CTA BUTTON ---------- */
.header-btn .btn-outline-white {
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.header-btn .btn-outline-white:hover {
  background: #00D18C;
  color: #000;
  border-color: #00D18C;
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: #0d0d0d;
  padding: 30px;
  text-align: center;
  color: white;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  background-color: #080707;
  color: white;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #00D18C;
}

.hero-left p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-primary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #00D18C;
  color: #000;
  border-color: #00D18C;
}

/* ---------- Trusted Logos ---------- */
.trusted-logos {
  margin-top: 30px;
}

.trusted-logos p {
  color: #00D18C;
  font-weight: 500;
  margin-bottom: 10px;
}

.brands {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


.brands img {
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.brands img:hover {
  opacity: 1;
}

/* ---------- Hero Image ---------- */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.circle-image {
  width: 300px;
  height: 300px;
  border: 8px solid #00D18C;
  border-radius: 50%;
  overflow: hidden;
  padding: 10px;
  background: #111;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}



/* ---------- SERVICES SECTION ---------- */

.services-section {
  background-color: #fff;
  color: #000;
  padding: 100px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle {
  color: #00D18C;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f3f3f3;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card.active {
  background-color: #000;
  color: white;
}

.service-card .icon {
  background-color: #000;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card.active .icon {
  background-color: #fff;
  color: #000;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.service-card.active p {
  color: #ccc;
}

/* Responsive heading size */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .service-card {
    text-align: center;
  }

  .service-card .icon {
    margin: 0 auto 15px auto;
  }

.brands{
   gap: 30px;
}

}

/* ---------- ABOUT SECTION ---------- */

.about-section {
  background-color: #0d0d0d;
  color: white;
  padding: 100px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.about-image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  border-radius: 20px;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.image-layer.layer2 {
  top: 40px;
  right: 40px;
  z-index: 0;
  opacity: 0.5;
}

.image-main {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
}

.image-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Content Area */
.about-content {
  flex: 1;
  min-width: 300px;
}

.about-subtitle {
  color: #00D18C;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stat-box h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.stat-box h3 span {
  color: #00D18C;
  font-size: 24px;
  margin-left: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #ccc;
}

/* CTA Button (reused from earlier) */
.btn-outline-white {
  border: 1px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-white:hover {
  background: #00D18C;
  color: #000;
  border-color: #00D18C;
  transform: translateY(-2px);
}




/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image-stack {
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 24px;
  }

  .stat-box h3 {
    font-size: 22px;
  }
}





/* ---------- PROCESS SECTION ---------- */

.process-section {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
  color: #000;
}

.section-subtitle {
  color: #00D18C;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.4;
}

/* Steps Container */
.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

/* Each Step */
.process-step {
  background: #f7f7f7;
  padding: 30px 20px;
  border-radius: 12px;
  width: 240px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Arrow between cards */
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #ccc;
}

/* Icon Circle */
.icon-circle {
  background: #0d0d0d;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step Title */
.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Step Description */
.process-step p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .process-step {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .process-step {
    width: 100%;
  }

  .process-step:not(:last-child)::after {
    content: none;
  }

  .section-title {
    font-size: 26px;
  }
}




/*--------ShowCase Section------*/


.recent-showcase {
  padding: 80px 20px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px; 
  justify-content: center;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-item:nth-child(2),
.showcase-item:nth-child(4) {
  margin-top: 60px; /* Staggered effect */
}

.showcase-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  margin: 0 auto; 
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.image-wrapper {
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.showcase-item:hover .image-wrapper img {
  transform: scale(1.05);
}

.showcase-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 20px 5px 20px;
  color: #222;
}

.showcase-item p {
  font-size: 14px;
  color: #666;
  margin: 0 20px 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-item:nth-child(2),
  .showcase-item:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}


/*------Testinomial------*/

.testimonial-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.testimonial-container {
  background:  #f7f7f7;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}

.testimonial-position {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.arrow-btn {
  background-color: #000;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.arrow-btn:hover {
  background-color: #00D18C;
}




/* ---------- Hamburger ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    background-color: #0d0d0d;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    z-index: 999;
  }

  .site-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .header-btn {
    margin-top: 10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    max-width: 100%;
  }

  
}
