:root {
  --accent: #F4C708;
  --primary: #0f294b;
  --secondary: #1a1b40;
  --dark: rgb(11, 13, 60);
  --light: rgba(255, 255, 255, 0.87);
  --bg-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

.navbar {
  background: var(--primary);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  padding: 15px 50px;
}

.navbar-brand.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
}

.navbar-brand.logo span {
  color: var(--accent);
}

.navbar-nav .nav-link {
  color: var(--light);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
}

.navbar-toggler {
  border-color: var(--light);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(244, 199, 8, 0.3);
  font-weight: 600;
  text-decoration: none;
  z-index: 1100;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(244, 199, 8, 0.4);
}

header.enhanced-header {
  position: relative;
  background: var(--bg-gradient);
  color: var(--light);
  padding: 120px 50px 100px;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}

header.enhanced-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://via.placeholder.com/1600x900') no-repeat center/cover;
  opacity: 0.2;
}

header.enhanced-header .header-content {
  position: relative;
  z-index: 2;
}

header.enhanced-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--accent);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 1s;
}

header.enhanced-header p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s;
}

header.enhanced-header .header-cta-btn {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(244, 199, 8, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s;
  margin-top: 40px;
}

header.enhanced-header .header-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(244, 199, 8, 0.4);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section & Component Styles */
.section,
.strategy-section,
.process-section,
.benefits,
.tech-tools,
.quote-section,
.faq-section,
.final-cta {
  padding: 60px 50px;
}

h2,
.benefits h2,
.tech-tools h2,
.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

p,
.benefits p,
.tech-tools p,
.final-cta p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.process-steps .step-item,
.process-steps .extra-step {
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}

.step-icon {
  font-size: 24px;
  color: var(--accent);
  margin-top: 2px;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  text-align: left;
}

.vision-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
  text-align: center;
}

.vision-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}

.service-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--light);
}

.service-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 40px 0;
}

.process-step {
  min-width: 250px;
  background: var(--secondary);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.process-step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

.process-step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--light);
}

.process-step p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: start;
  letter-spacing: 1px;
}

.process-cta {
  text-align: center;
  margin-top: 60px;
}

.benefit-card {
  background: var(--dark);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  height: 100%;
}

.benefit-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 10px;
}

.benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 25px;
}

.testimonial-card {
  background: var(--secondary);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: left;
  height: 100%;
}

.testimonial-quote {
  font-size: 40px;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.card-body {
  background-color: var(--secondary);
  border-radius: 0 0 8px 8px;
}

.tech-tools .d-flex {
  margin-top: 30px;
  gap: 40px;
}

.tech-tools img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.tech-tools .fw-bold {
  font-size: 1.1rem;
}

.quote-form {
  max-width: 600px;
  margin: auto;
  background: var(--dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  font-size: 16px;
  background: var(--secondary);
  color: var(--light);
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-form button {
  background: var(--accent);
  color: var(--dark);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.quote-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(244, 199, 8, 0.4);
}

.accordion-button {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: black;
}

.accordion-body {
  background: var(--secondary);
  color: var(--light);
}

.accordion-button::after {
  display: none;
}

.accordion-header .icon {
  margin-left: auto;
}

.final-cta {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 80px 50px;
}

.final-cta a {
  background: var(--light);
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.final-cta a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(244, 199, 8, 0.4);
}

.footer {
  background: var(--primary);
  color: var(--light);
  padding: 50px 0;
  text-align: center;
}

.footer a {
  color: var(--light);
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--accent);
}

.footer .social a {
  font-size: 24px;
  margin: 0 10px;
}

@media (max-width:768px) {

  .navbar,
  header.enhanced-header,
  .section {
    padding: 15px 20px;
  }

  header.enhanced-header {
    padding: 100px 20px 80px;
    margin-top: 60px;
  }

  header.enhanced-header h1 {
    font-size: 36px;
  }

  header.enhanced-header p {
    font-size: 16px;
  }
}

@media (max-width:576px) {
  .navbar {
    padding: 10px 15px;
  }

  header.enhanced-header {
    padding: 80px 15px 60px;
    margin-top: 60px;
  }

  .sticky-cta {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 14px;
  }
}

.btn-warning{
    font-weight: 700;
}