/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  background: #1A1F24;
  color: #D9D9D9;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

a {
  text-decoration: none;
  color: #00C4CC;
  transition: color 0.3s ease;
}

a:hover {
  color: #00A1A7;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 .badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap; /* allows stacking on small screens */
  }

  .badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    padding: 25px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 220px;
  }

  .badge-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .badge-card img {
    margin-bottom: 12px;
  }

  .badge-card span {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
  }

  /* Responsive: stack vertically on small screens */
  @media (max-width: 600px) {
    .badge-container {
      flex-direction: column;
      gap: 20px;
    }
  }

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(26, 31, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left; /* Override the global center alignment for the header */
}

/* Style the nav menu */
.nav-menu {
  display: flex;
  align-items: center;
}

/* Style the hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  background: #D9D9D9;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Style the nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #D9D9D9;
}

.nav-links li a:hover {
  color: #00C4CC;
}

/* Logo */
.logo {
  width: 100px;
  height: auto;
  border-radius: 190px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 150px 20px;
  background: url('https://www.pranathiss.com/blog/wp-content/uploads/Expanding-AI-services-increasing-demand-for-AI-solutions.jpg') no-repeat center center/cover;
  color: #D9D9D9;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 31, 36, 0.7);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.cta-button {
  background: #00C4CC;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 196, 204, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #00A1A7;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 196, 204, 0.4);
}

.calendly-button {
  margin-top: 20px;
}

.testimonials p {
  font-size: 18px;
  font-style: italic;
  margin: 20px auto;
  max-width: 700px;
  background: rgba(28, 37, 38, 0.7);
  padding: 15px;
  border-radius: 10px;
}

.reviews {
  margin-top: 30px;
}

.reviews p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.reviews span {
  font-size: 16px;
  color: #00C4CC;
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: #252A2F;
}

.services-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #D9D9D9;
  margin-bottom: 20px;
}

.services-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(28, 37, 38, 0.9);
  backdrop-filter: bluer(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.service-card img {
  max-width: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #D9D9D9;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
}

/* Why Us Section */
.difference-section {
  padding: 80px 20px;
  background: #1A1F24;
}

.difference-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #D9D9D9;
  margin-bottom: 20px;
}

.difference-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.comparison {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.special-ops, .others {
  background: rgba(28, 37, 38, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.special-ops:hover, .others:hover {
  transform: translateY(-5px);
}

.special-ops h3, .others h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #D9D9D9;
  margin-bottom: 20px;
}

.special-ops ul, .others ul {
  list-style: none;
  text-align: left;
}

.special-ops ul li, .others ul li {
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.special-ops ul li:before {
  content: '✓';
  color: #00C4CC;
  position: absolute;
  left: 0;
}

.others ul li:before {
  content: '✗';
  color: #D81B60;
  position: absolute;
  left: 0;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: #252A2F;
}

.process-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #D9D9D9;
  margin-bottom: 20px;
}

.process-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  background: rgba(28, 37, 38, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #00C4CC;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 16px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #1A1F24;
}

.faq-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #D9D9D9;
  margin-bottom: 20px;
}

.faq-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(28, 37, 38, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #D9D9D9;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1F24 0%, #252A2F 100%);
  color: #D9D9D9;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input,
#contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: rgba(28, 37, 38, 0.9);
  color: #D9D9D9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

#contact-form button {
  background: #00C4CC;
  color: #FFFFFF;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 196, 204, 0.3);
  transition: all 0.3s ease;
}

#contact-form button:hover {
  background: #00A1A7;
  transform: translateY(-2px);
}

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00C4CC;
}

/* Footer */
footer {
  padding: 60px 20px;
  background: #252A2F;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

footer ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #D9D9D9;
}

footer p {
  font-size: 14px;
  color: #00C4CC;
}

/* Chatbot Styles */
.chatbot-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00C4CC;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 196, 204, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex; /* Ensure the button is visible and clickable */
  align-items: center;
  justify-content: center;
}

.chatbot-trigger:hover {
  background: #00A1A7;
  transform: translateY(-2px);
}

#chatbase-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1000;
}

#chatbase-iframe {
  width: 350px;
  height: 500px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    width: 70px; /* Reduced logo size for mobile */
  }

  .hamburger {
    display: flex; /* Ensure hamburger is visible in mobile view */
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 31, 36, 0.95);
    flex-direction: column;
    gap: 0;
    padding: 2px 0; /* Minimized padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 5px 20px; /* Minimized padding */
    text-align: center;
  }

  .nav-links li a {
    font-size: 14px; /* Smaller for compactness */
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Hero Section - Minimized spacing */
  .hero-section {
    padding: 50px 10px; /* Minimized padding */
  }

  .hero-section h1 {
    font-size: 24px; /* Smaller */
    margin-bottom: 5px; /* Minimized margin */
  }

  .hero-section p {
    font-size: 14px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .cta-button {
    padding: 8px 16px; /* Smaller button */
  }

  .calendly-button {
    margin-top: 5px; /* Minimized margin */
  }

  .testimonials p {
    font-size: 14px;
    margin: 5px auto; /* Minimized margin */
    padding: 5px; /* Minimized padding */
  }

  .reviews {
    margin-top: 5px; /* Minimized margin */
  }

  .reviews p {
    font-size: 18px;
  }

  /* Services Section - Minimized spacing */
  .services-section {
    padding: 20px 10px; /* Minimized padding */
  }

  .services-section h2 {
    font-size: 28px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .services-section p {
    font-size: 14px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 5px; /* Minimized gap */
  }

  .service-card {
    padding: 10px; /* Minimized padding */
  }

  .service-card img {
    max-width: 40px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .service-card p {
    font-size: 12px;
  }

  /* Why Us Section - Minimized spacing */
  .difference-section {
    padding: 20px 10px; /* Minimized padding */
  }

  .difference-section h2 {
    font-size: 28px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .difference-section p {
    font-size: 14px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .comparison {
    flex-direction: column;
    gap: 5px; /* Minimized gap */
  }

  .special-ops, .others {
    padding: 10px; /* Minimized padding */
  }

  .special-ops h3, .others h3 {
    font-size: 18px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .special-ops ul li, .others ul li {
    font-size: 12px;
    margin-bottom: 3px; /* Minimized margin */
  }

  /* Process Section - Minimized spacing */
  .process-section {
    padding: 20px 10px; /* Minimized padding */
  }

  .process-section h2 {
    font-size: 28px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .process-section p {
    font-size: 14px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .process-timeline {
    gap: 3px; /* Minimized gap */
  }

  .process-step {
    padding: 10px; /* Minimized padding */
  }

  .process-step h3 {
    font-size: 16px;
    margin-bottom: 3px; /* Minimized margin */
  }

  .process-step p {
    font-size: 12px;
  }

  /* FAQ Section - Minimized spacing */
  .faq-section {
    padding: 20px 10px; /* Minimized padding */
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .faq-section p {
    font-size: 14px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .faq-list {
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 3px; /* Minimized margin */
    padding: 10px; /* Minimized padding */
  }

  .faq-item h3 {
    font-size: 14px;
    margin-bottom: 3px; /* Minimized margin */
  }

  .faq-item p {
    font-size: 12px;
  }

  /* Contact Section - Minimized spacing */
  .contact-section {
    padding: 20px 10px; /* Minimized padding */
  }

  .contact-section h2 {
    font-size: 28px;
    margin-bottom: 5px; /* Minimized margin */
  }

  .contact-section p {
    font-size: 14px;
    margin-bottom: 5px; /* Minimized margin */
  }

  #contact-form {
    gap: 5px; /* Minimized gap */
  }

  #contact-form input,
  #contact-form textarea {
    padding: 8px; /* Minimized padding */
    font-size: 12px;
  }

  #contact-form textarea {
    min-height: 80px; /* Minimized height */
  }

  #contact-form button {
    padding: 8px; /* Minimized padding */
  }

  .contact-info {
    margin-top: 5px; /* Minimized margin */
  }

  .contact-info p {
    font-size: 14px;
    margin-bottom: 3px; /* Minimized margin */
  }

  /* Footer - Minimized spacing */
  footer {
    padding: 15px 10px; /* Minimized padding */
  }

  footer ul {
    gap: 10px; /* Minimized gap */
    margin-bottom: 5px; /* Minimized margin */
  }

  footer ul li a {
    font-size: 12px;
  }

  footer p {
    font-size: 10px;
  }

  /* Chatbot - Adjusted for mobile */
  #chatbase-iframe {
    width: 300px;
    height: 400px;
  }

  .chatbot-trigger {
    width: 50px; /* Slightly smaller for mobile */
    height: 50px;
    font-size: 14px;
  }
}