/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Brutalist Black & Red Theme */
:root {
  --background: #050505;
  --foreground: #FFFFFF;
  --primary: #FF0033;
  --primary-foreground: #FFFFFF;
  --secondary: #1A1A1A;
  --secondary-foreground: #E5E5E5;
  --muted: #121212;
  --muted-foreground: #A3A3A3;
  --accent: #FF0033;
  --border: #262626;
  --whatsapp-green: #25D366;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.overline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.navbar-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--foreground);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.navbar-menu a {
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--primary);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-secondary {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('https://static.prod-images.emergentagent.com/jobs/19b1a9ec-b92a-41bf-b053-94fddc6e80f6/images/4a44b9021095fadfed1335e1aa15f9dade639f0fabc74387f761dcf751d90cca.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(255, 0, 51, 0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--muted);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Employee Grid */
.employee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.employee-card {
  background-color: var(--muted);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.employee-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.employee-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary);
}

.employee-info {
  padding: 2rem;
}

.employee-info h3 {
  margin-bottom: 0.5rem;
}

.employee-info .role {
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.employee-info .quote {
  font-style: italic;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background-color: var(--muted);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  background-color: var(--background);
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.package-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.package-price span {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.package-features {
  list-style: none;
  margin: 2rem 0;
  flex-grow: 1;
}

.package-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--secondary-foreground);
}

.package-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  background-color: var(--muted);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.portfolio-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-info {
  padding: 2rem;
}

.portfolio-category {
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.portfolio-info h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.portfolio-info p {
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--muted);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial-message {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--primary);
}

.testimonial-rating {
  color: var(--primary);
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--muted-foreground);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
}
/* Commming soon card */
.coming-soon-card {
  position: relative;
  overflow: hidden;

  /* gray out effect */
  filter: grayscale(100%);
  opacity: 0.8;
}

.coming-soon-overlay {
  position: absolute;
  top: 20px;
  right: -40px;

  background: #ff9800;
  color: white;

  padding: 8px 50px;

  font-weight: bold;
  font-size: 14px;

  transform: rotate(45deg);

  z-index: 10;

  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.disabled-btn {
  background: #999 !important;
  border-color: #999 !important;
  cursor: not-allowed;
  pointer-events: none;
}


/*workflow section?*/
.workflow-section {
  padding: 100px 20px;
  background: #0d0d0d;
  color: white;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;

  color: #ff3b3b;

  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;

  color: white;
}

.section-subtitle {
  max-width: 700px;

  color: #b3b3b3;

  margin-bottom: 50px;
  line-height: 1.7;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.workflow-card {
  background: #161616;

  border: 1px solid rgba(255, 59, 59, 0.15);

  padding: 30px;
  border-radius: 18px;

  transition: all 0.3s ease;

  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.workflow-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 59, 59, 0.5);

  box-shadow:
    0 10px 30px rgba(255, 59, 59, 0.15);
}

.workflow-number {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff3b3b, #b30000);

  color: white;

  font-weight: bold;
  font-size: 20px;

  margin-bottom: 20px;

  box-shadow:
    0 0 15px rgba(255, 59, 59, 0.4);
}

.workflow-card h3 {
  margin-bottom: 12px;

  color: white;

  font-size: 1.2rem;
}

.workflow-card p {
  color: #bdbdbd;
  line-height: 1.7;
}

/*google review stars*/

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;

  margin-top: 50px;
}

.review-card {
  background: #161616;

  border: 1px solid rgba(255, 59, 59, 0.15);

  border-radius: 18px;

  padding: 25px;

  transition: all 0.3s ease;

  box-shadow: 0 5px 20px rgba(0,0,0,0.35);
}

.review-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255, 59, 59, 0.5);

  box-shadow:
    0 10px 25px rgba(255, 59, 59, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 18px;
}

.review-avatar {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  object-fit: cover;
}

.review-header h4 {
  margin: 0;
  color: white;
}

.review-stars {
  margin-top: 5px;
}

.review-text {
  color: #cfcfcf;
  line-height: 1.7;

  margin-bottom: 15px;
}

.review-date {
  color: #888;
}

.review-loading {
  color: #999;
  padding: 30px;
}

.reviews-section {
  background: #0d0d0d;
  padding: 5rem 0;
}

.reviews-wrapper {
  position: relative;

  display: flex;
  align-items: center;

  margin-top: 3rem;
}

.reviews-slider {
  display: flex;
  gap: 1.5rem;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  padding: 1rem;

  width: 100%;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 350px;
  max-width: 350px;

  background: #161616;

  border: 1px solid rgba(255, 0, 0, 0.15);

  border-radius: 16px;

  padding: 1.5rem;

  flex-shrink: 0;

  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255, 0, 0, 0.5);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-bottom: 1rem;
}

.review-avatar {
  width: 55px;
  height: 55px;

  border-radius: 50%;
}

.review-stars {
  margin-top: 0.3rem;
}

.review-text {
  color: #d0d0d0;

  line-height: 1.7;

  margin-bottom: 1rem;
}

.review-date {
  color: #888;
}

.review-nav {
  background: rgba(255, 0, 0, 0.15);

  border: none;

  color: white;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  cursor: pointer;

  font-size: 1.5rem;

  transition: 0.3s ease;

  z-index: 10;
}

.review-nav:hover {
  background: rgba(255, 0, 0, 0.5);
}

.portfolio-link-wrapper {
  text-decoration: none;
  color: inherit;
}

.ongoing-project {
  position: relative;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: 0.3s ease;
}

.ongoing-project:hover {
  filter: grayscale(40%);
  opacity: 1;
  transform: translateY(-5px);
}

.ongoing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff9800;
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

.visit-project {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #007bff;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo {
  height: 50px;
  width: auto;
}