* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f172a;
  color: #fff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #020617;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #22c55e;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
}

.navbar .btn {
  background: #22c55e;
  padding: 10px 18px;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  background: url('https://images.unsplash.com/photo-1504384764586-bb4cdc1707b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1650&q=80') no-repeat center center/cover;
  min-height: 90vh;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 16px;
}

.hero-text {
  flex: 1;
  color: #fff;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  font-weight: 300;
  color: #cbd5e1;
}

.hero-text p {
  max-width: 500px;
  font-size: 16px;
  color: #d1d5db;
}

.hero-form {
  flex: 1;
  background: #0f172a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  background: #1e293b;
  color: #fff;
  font-size: 14px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #94a3b8;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row select {
  width: 30%;
}

.form-row input {
  width: 70%;
}

.hero-form button {
  padding: 12px;
  background: #22c55e;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-form button:hover {
  background: #16a34a;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  .hero-text h1 {
    font-size: 42px;
  }
}




/* How We Work Section */
.how-we-work-section {
  background-color: #0f1115;
  padding: 80px 20px;
  text-align: center;
}

.section-heading {
  color: #22c55e;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}

.section-heading::before {
  content: '↘';
  color: #22c55e;
  position: absolute;
  left: 0;
  top: 0;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  background-color: #111827;
  color: #fff;
  padding: 30px 25px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 0 0 transparent;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



.step-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 10px;
}

.step-card.active .step-count {
  color: #22c55e;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.line {
  width: 50px;
  height: 1px;
  background: #999;
  margin: 10px 0;
}

.step-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
}



/* Responsive */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 340px;
  }
}

/* Who We Are Section (within the same container) */
.who-we-are-wrapper {
  background-color: #111827;
  padding: 40px 30px;
  border-radius: 8px;
  margin-top: 20px;
  color: #cbd5e1;
  text-align: left;
}

.who-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 15px;
}

.who-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #e2e8f0;
}

/* Optional: Add hover animation */
.who-we-are-wrapper:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}


.expertise-section {
  background: #0f1114;
  color: #ffffff;
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.expertise-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.expertise-text {
  flex: 1 1 50%;
}

.expertise-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.expertise-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-top: 1px solid #374151;
  padding: 20px 0;
  cursor: pointer;
}

.accordion-item:last-child {
  border-bottom: 1px solid #374151;
}

.accordion-header {
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(90deg);
}

.accordion-body {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #d1d5db;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

.expertise-image {
  flex: 1 1 45%;
}

.expertise-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .expertise-content {
    flex-direction: column;
  }
}


/* === CTA Section === */
.cta-section {
  position: relative;
  background-color: #0f1114;
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.cta-background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  color: #5af1a4;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 20px;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
}

.cta-button {
  background-color: #5af1a4;
  color: #000;
  border-radius: 50%;
  padding: 40px 30px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  width: 150px;
  height: 150px;
  line-height: 1.4;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-background-text {
    font-size: 3rem;
  }

  .cta-button {
    width: 120px;
    height: 120px;
    padding: 30px 20px;
    font-size: 0.9rem;
  }
}


/* === Footer === */
.site-footer {
  background: #0c0f13;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-left {
  max-width: 500px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-contact-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  transition: 0.3s;
}

.footer-contact-btn span {
  margin-left: auto;
  font-size: 18px;
}

.footer-contact-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #5af1a4;
}

/* === Footer Bottom === */
.footer-bottom {
  margin-top: 30px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-links-inline a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-inline a:hover {
  color: #5af1a4;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    margin-top: 40px;
  }

  .footer-contact-buttons {
    flex-direction: column;
  }

  .footer-heading {
    font-size: 2rem;
  }
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #080c10;
  color: white;
}

/* Grid background */
.grid-background {
  background-image: linear-gradient(to right, #111 1px, transparent 1px),
                    linear-gradient(to bottom, #111 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 0;
}

/* Main wrapper */
.home-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 0 30px;
}

/* Left text content */
.home-text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.home-text p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.6;
}

.home-buttons {
  display: flex;
  gap: 16px;
}

.btn-outline {
  padding: 10px 20px;
  border: 1px solid #fff;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: #2ee59d;
  color: #000;
}

/* Right image & explore */
.home-media {
  position: relative;
}

.home-image {
  width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.1);
}

.explore-button {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: #2ee59d;
  color: #000;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding-top: 20px;
  box-shadow: 0 0 20px rgba(46, 229, 157, 0.3);
}

.arrow-up {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}


.about-section {
  font-family: 'Poppins', sans-serif;
  background-color: #080c10;
  color: #fff;
  padding: 80px 30px;
}

.about-grid-background {
  background-image: linear-gradient(to right, #111 1px, transparent 1px),
                    linear-gradient(to bottom, #111 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 60px 0;
}

/* Top Heading Section */
.about-heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-heading h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.about-heading h1 span {
  color: #ccc;
}

.about-bubbles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.about-bubbles img {
  width: 80px;
  height: 50px;
  border-radius: 30px;
  object-fit: cover;
}

.half-moon-icon {
  width: 30px;
  height: 60px;
  border-radius: 0 60px 60px 0;
  background-color: #2ee59d;
}

/* Subtitle */
.about-subtagline {
  font-size: 13px;
  color: #aaa;
}

/* Lower Content */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-image img {
  width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.1);
}

.about-description {
  max-width: 600px;
}

.about-description h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-description p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}


.services-section {
  background-color: #080c10;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.services-grid-bg {
  background-image: linear-gradient(to right, #111 1px, transparent 1px),
                    linear-gradient(to bottom, #111 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 60px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 14px;
  color: #bbb;
}

/* Intro Row */
.services-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto;
}

.intro-left {
  flex: 1;
  min-width: 300px;
}

.intro-left h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.intro-left p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.service-tags {
  margin-top: 20px;
}

.service-tags span {
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 8px 16px;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  border-radius: 20px;
  font-size: 13px;
  cursor: default;
}

/* Collage */
.intro-right {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.service-collage {
  display: flex;
  gap: 10px;
  align-items: center;
}

.service-collage img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.round-green-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #00e59b;
}

/* Service List */
.service-list-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-top: 80px;
}

.service-list-subtext {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}

.service-card {
  background-color: #10151b;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid transparent;
}


.service-card:hover {
  background-color: #00e59b;
  color:white;
  transform: translateY(-4px);
}

.service-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
}


/* ========== EXTRA RESPONSIVE FIXES ========== */

/* Navbar collapses into vertical stack for small screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .navbar .btn {
    margin-top: 15px;
  }
}

/* Hero section */
@media (max-width: 768px) {
  .hero {
    padding: 30px 20px;
    background-position: center top;
    background-size: cover;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-form {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input,
  .form-row select {
    width: 100%;
  }
}

/* Expertise section */
@media (max-width: 768px) {
  .expertise-title {
    font-size: 2rem;
  }

  .expertise-desc {
    font-size: 0.95rem;
  }
}

/* CTA section */
@media (max-width: 480px) {
  .cta-heading {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 100px;
    height: 100px;
    font-size: 0.8rem;
    padding: 25px 15px;
  }
}

/* About Section */
@media (max-width: 768px) {
  .about-heading h1 {
    font-size: 32px;
  }

  .about-description h2 {
    font-size: 18px;
  }

  .about-description p {
    font-size: 13px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
  }
}

/* Home wrapper image and text stack */
@media (max-width: 768px) {
  .home-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .home-text h1 {
    font-size: 36px;
  }

  .home-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-media {
    text-align: center;
  }

  .explore-button {
    position: relative;
    right: 0;
    top: auto;
    transform: none;
    margin-top: 20px;
  }
}

/* Services Section Responsive */
@media (max-width: 768px) {
  .services-intro {
    flex-direction: column;
    gap: 20px;
  }

  .intro-left,
  .intro-right {
    width: 100%;
  }

  .service-collage {
    justify-content: center;
    flex-wrap: wrap;
  }
}
