@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #222b7e;

  --first-color: #222b7e;
  --second-color: #374491;

  /* linear-gradient(135deg, var(--first-color) 0%, var(--second-color) 100%); */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafbfc;
  color: #1a1f2e;
  overflow-x: hidden;
}

/* Accessibility - Skip to main content */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-to-main:focus {
  top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
}

.app-container {
  min-height: 100vh;
}


.main-content.policy-page {
  margin-top: 80px;
  background: #fff;
}

.privacy-policy-content,
.terms-condition-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 1rem 2rem;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1f2e;
  padding: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links button {
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links button:hover {
  color: var(--primary-color);
}

.nav-links button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f89c1c;
  transition: width 0.3s ease;
}

.nav-links button:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-color) !important;
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: #1557b0 !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links button {
    width: 100%;
    padding: 1rem;
    text-align: left;
  }

  .process-image-wraper-desktop {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  padding: 5rem 0rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  background: #f89c1c26;
  color: #f89c1c;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  max-width: 600px;
}

.hero-industries {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0f172a;
  font-weight: 500;
}

.hero-feature svg {
  color: #10b981;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
  text-decoration: none;
}

.btn-primary:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Trust Bar */
.trust-bar {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--second-color) 100%);
  padding: 3rem 2rem;
  color: white;
}

.trust-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.trust-label {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 400;
}

/* Section Containers */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 0rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Services Section */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;
}

.service-card:nth-child(8n + 1) .service-icon,
.service-card:nth-child(8n + 0) .service-icon,
.tech-category:nth-child(8n + 1) .tech-icon,
.tech-category:nth-child(8n + 0) .tech-icon {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  color: var(--primary-color);
}

.service-card:nth-child(8n + 2) .service-icon,
.service-card:nth-child(8n + 7) .service-icon,
.tech-category:nth-child(8n + 2) .tech-icon,
.tech-category:nth-child(8n + 7) .tech-icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.service-card:nth-child(8n + 3) .service-icon,
.service-card:nth-child(8n + 6) .service-icon,
.tech-category:nth-child(8n + 3) .tech-icon,
.tech-category:nth-child(8n + 6) .tech-icon {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
  color: #7c3aed;
}

.service-card:nth-child(8n + 4) .service-icon,
.service-card:nth-child(8n + 5) .service-icon,
.tech-category:nth-child(8n + 4) .tech-icon,
.tech-category:nth-child(8n + 5) .tech-icon {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #ea580c;
}



/*  */

.tech-category:nth-child(8n + 1),
.tech-category:nth-child(8n + 0) {
  border-left: 4px solid var(--primary-color);
}

.tech-category:nth-child(8n + 2),
.tech-category:nth-child(8n + 7) {
  border-left: 4px solid #059669;
}

.tech-category:nth-child(8n + 3),
.tech-category:nth-child(8n + 6) {
  border-left: 4px solid #7c3aed;
}

.tech-category:nth-child(8n + 4),
.tech-category:nth-child(8n + 5) {
  border-left: 4px solid #ea580c;
}

/* .service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #ea580c;
}

.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
  color: #7c3aed;
}

.service-card:nth-child(7) .service-icon {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.service-card:nth-child(8) .service-icon {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  color: var(--primary-color);
} */


.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Industries Section */
.industries-section {
  background: #f89c1c14;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.industry-tag {
  background: white;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #334155;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.industry-tag:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
}

.industry-tag svg {
  color: var(--primary-color);
}

.industries-focus {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: #475569;
  font-weight: 500;
}

/* Tech Stack Section */
.tech-section {
  background: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-category:hover {
  transform: translateX(8px);
}

.tech-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.tech-category h3 {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 600;
}

.tech-category p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Why Us Section */
.why-us-section {
  background: #f8fafc;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 3rem;
}

.why-card {
  background: white;
  padding: 2rem 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon-wrapper {
  transform: scale(1.1);
}

.why-icon-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
}

.why-icon-green {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}

.why-icon-purple {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
  color: #7c3aed;
}

.why-icon-orange {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #ea580c;
}

.why-icon-teal {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #0d9488;
}

.why-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 600;
}

.why-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Engagement Section */
.engagement-section {
  background: #ffffff;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 3rem;
}

.engagement-card {
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.engagement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
}

.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.engagement-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.engagement-card:hover .engagement-icon {
  transform: rotate(10deg) scale(1.1);
}

.engagement-card-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.engagement-card-blue .engagement-icon {
  background: white;
  color: #1e40af;
}

.engagement-card-purple {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
  color: #6b21a8;
}

.engagement-card-purple .engagement-icon {
  background: white;
  color: #6b21a8;
}

.engagement-card-teal {
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  color: #115e59;
}

.engagement-card-teal .engagement-icon {
  background: white;
  color: #115e59;
}

.engagement-card-orange {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #c2410c;
}

.engagement-card-orange .engagement-icon {
  background: white;
  color: #c2410c;
}

.engagement-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.engagement-duration {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.engagement-card p {
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Process Section - Circular Design */
.process-section {
  background: #f89c1c14;
}

.process-image-wraper {
  padding: 35px 0;
}

.process-circle-container {
  position: relative;
  max-width: 900px;
  margin: 4rem auto;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-connections {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.process-circle-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.process-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: white;
  border: 3px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-circle:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.process-circle-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--second-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.process-label {
  text-align: center;
  max-width: 150px;
}

.process-label h3 {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.process-label p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Position items in circular pattern */
.process-item-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process-item-2 {
  top: 25%;
  left: 10%;
}

.process-item-3 {
  top: 25%;
  right: 10%;
}

.process-item-4 {
  bottom: 25%;
  left: 5%;
}

.process-item-5 {
  bottom: 25%;
  right: 5%;
}

.process-item-6 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 968px) {
  .process-circle-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    min-height: auto;
  }

  .process-circle-item {
    position: static;
    transform: none !important;
  }

  .process-connections {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-circle-container {
    grid-template-columns: 1fr;
  }
}

/* Security Section */
.security-section {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--second-color) 100%);
  color: white;
}

.security-content {
  text-align: center;
}

.security-icon {
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.security-section .section-title {
  color: white;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.security-item {
  display: flex;
  align-items: self-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.security-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.12);
}

.security-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.security-item span {
  font-size: 18px;
  font-weight: 500;
}

/* FAQ Section */
.faq-accordion {
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 1rem 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Final CTA */
.final-cta-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  padding: 5rem 2rem;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0c4a6e;
  margin-bottom: 1rem;
  font-weight: 700;
}

.final-cta-content p {
  font-size: 1.125rem;
  color: #0369a1;
  margin-bottom: 2.5rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--second-color) 100%);
  color: white;
  padding: 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  object-position: left;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: right;
}

.contact-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.contact-item svg {
  color: #60a5fa;
  flex-shrink: 0;
}

.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* ===== Base Section Styles ===== */
.faq-section {
  padding: 0px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #111;
}

/* ===== Accordion Container ===== */
.faq-accordion {
  border-top: 1px solid #e5e7eb;
}

/* ===== Accordion Item ===== */
.faq-accordion .border-b {
  border-bottom: 1px solid #e5e7eb;
}

/* ===== Accordion Button ===== */
.faq-accordion button {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease-in-out;
  color: #111;
}


.faq-accordion svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease-in-out;
  stroke: #6b7280;
  /* muted-foreground */
}

/* ===== Accordion Content ===== */
.faq-accordion [role="region"] {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  padding: 0 36px;
}

.faq-accordion [role="region"].open {
  max-height: 300px;
  /* adequate height for content */
  opacity: 1;
}

.faq-accordion [role="region"] div {
  padding: 0.5rem 0 1rem;
  font-size: 22px;
  font-weight: 300;
  color: #111;
  line-height: 1.6;
}

/* ===== SVG Rotation When Open ===== */
.faq-accordion button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}


/* Responsive Design */
@media (max-width: 768px) {
  .section-container {
    padding: 3rem 1.5rem;
  }

  .services-grid,
  .why-us-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .security-item span {
    text-align: left;
  }

  .footer-contact h3 {
    text-align: left;
  }

  .contact-item-list {
    gap: 0px;
  }
}