* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f9fafb;
    color: #111;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* .navbar {
    background: #0f172a;
    color: #fff;
    padding: 15px 0;
}

.navbar nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
} */
/* ===== Navbar ===== */
.navbar {
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #38bdf8;
}

/* Contact button */
.nav-btn {
  padding: 8px 14px;
  /* background: #22c55e; */
  border-radius: 4px;
  color: #fff !important;
}

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

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background: #020617;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }
}


.logo {
    display: inline-block;
}

.hero {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.btn {
    /* background: #22c55e; */
      background: #38bdf8;
    color: #fff;
    padding: 12px 20px;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}
.btn:hover,
.btn:hover a.active {
  /* background: #38bdf8; */
   background: #22c55e;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
}

.page-header {
    background: #e5e7eb;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #0f172a;
    color: #fff;
    margin-top: 40px;
}
/* ===== Working Process Section ===== */
.section {
  padding: 80px 0;
}

.bg-dark {
  background: #0f172a;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

.section-title.light {
  color: #ffffff;
}

/* Grid for 4 steps */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Individual process step */
.process-step {
  background: #020617;
  color: #e5e7eb;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Number highlight */
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #022c22;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .process-step {
    padding: 25px 15px;
  }
}

/* ===== Call To Action Section ===== */
.cta {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* Soft background glow */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

/* CTA Content */
.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta p {
  font-size: 1.05rem;
  margin-bottom: 35px;
  color: #e0e7ff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta .btn {
  background: #22c55e;
  color: #022c22;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.cta .btn:hover {
  transform: translateY(-3px);
  background: #16a34a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .cta {
    padding: 70px 15px;
  }

  .cta h2 {
    font-size: 1.9rem;
  }

  .cta p {
    font-size: 0.95rem;
  }
}
/* ===== Footer ===== */
.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding-top: 60px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* Map */
.footer-col iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== Testimonials Section ===== */
.testimonials {
  background: #f8fafc;
  padding: 80px 0 90px;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 1rem;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Quote style */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: #22c55e;
  font-family: serif;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Text */
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
}

/* Client info */
.client-info strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
}

.client-info span {
  font-size: 0.85rem;
  color: #64748b;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Why Choose Us Section ===== */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0f172a;
}

/* Grid layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card styling */
.card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Hover effect */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Advantage badge */


/* Card text */
.card {
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ===== Brand Slider Section ===== */
.brands {
  background: #f8fafc;
  padding: 60px 0;
}

.brand-slider {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.brand-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollBrands 18s linear infinite;
}

.brand-item {
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  font-weight: 700;
  color: #0f172a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* Pause animation on hover */
.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ===== Why Choose Us Section ===== */
.why-choose {
  padding: 80px 0;
  background: #f8fafc;
}

.why-choose .section-title {
  margin-bottom: 40px;
}

/* Card Layout */
.why-choose .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card Design */
.why-choose .card {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover */
.why-choose .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  color: #fff;
}

/* Icon */
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover Icon */
.why-choose .card:hover .card-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Title & Description */
.why-choose h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-choose p {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Text color on hover */
.why-choose .card:hover p {
  color: rgba(255,255,255,0.9);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .why-choose .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-choose .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ===== Brands Section ===== */
.brands {
  padding: 70px 0;
  background: #ffffff;
  overflow: hidden;
}

.brands .section-title {
  margin-bottom: 40px;
}

/* Slider wrapper */
.brand-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Moving track */
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollBrands 20s linear infinite;
}

/* Brand item */
.brand-item {
  min-width: 200px;
  margin: 0 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Logo image */
.brand-item img {
  max-width: 140px;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .brand-item {
    min-width: 160px;
    margin: 0 15px;
  }

  .brand-item img {
    max-width: 120px;
  }
}


/* ===== Services Page ===== */
.services {
  padding: 60px 0;
}

.service-block {
  margin-bottom: 80px;
}

.service-info {
  max-width: 600px;
  margin-bottom: 30px;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-info p {
  color: #64748b;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Package card */
.package-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.package-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.package-card ul li {
  padding: 6px 0;
  color: #475569;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
}

/* Popular highlight */
.package-card.popular {
  border: 2px solid #2563eb;
}

.package-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2563eb;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
}

/* Service color accents */
.service-block.dev h3 { color: #2563eb; }
.service-block.marketing h3 { color: #16a34a; }
.service-block.training h3 { color: #9333ea; }

/* Responsive */
@media (max-width: 768px) {
  .service-info h3 {
    font-size: 1.5rem;
  }
}
