body {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  color: #333;
}

:root {
  --primary-color: #ffd700; /* Gold/Yellow */
  --secondary-color: #28a745; /* Green */
  --dark-overlay: rgba(0, 0, 0, 0.6);
  --light-bg: #f8f9fa;
  --text-color-dark: #343a40;
  --text-color-light: #ffffff;
}

.navbar-brand .fs-4 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}

@media (min-width: 768px) {
  .navbar-brand .fs-4 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  }
}

@media (min-width: 1024px) {
  .navbar-brand .fs-4 {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
  }
}

/* General Styles */
section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #218838;
  border-color: #218838;
}

.btn-outline-primary {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
  }
  h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  }
  h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: clamp(3rem, 3.5vw, 4rem);
  }
  h2 {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
  }
  h3 {
    font-size: clamp(2rem, 2.5vw, 3rem);
  }
}

/* Header & Navigation */
.navbar-brand img {
  max-height: 40px;
}

.navbar-nav .nav-link {
  color: var(--text-color-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.offcanvas-header {
  background-color: var(--light-bg);
}

.offcanvas-body {
  background-color: var(--light-bg);
}

.offcanvas .nav-link {
  padding: 0.75rem 1rem;
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  color: var(--text-color-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 72px; /* Adjust for fixed header height */
}

@media (max-width: 991.98px) {
  .hero-section {
    margin-top: 68px;
  }
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-overlay);
  z-index: 0;
}

.hero-section h1 {
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p.lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-section .form-control {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-color-dark);
}

.hero-section .form-control::placeholder {
  color: rgba(52, 58, 64, 0.7);
}

.hero-section .form-control:focus {
  background-color: var(--text-color-light);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

/* About Section - Our Advantages */
.icon-yellow-outline {
  font-size: 2.5rem;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  padding: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-image-panel {
  background-size: cover;
  background-position: center;
  height: 450px;
  filter: blur(2px);
  transform: scale(1.02); /* Slightly scale up to hide blur edges */
}

@media (max-width: 767.98px) {
  .about-image-panel {
    height: 300px;
    margin-top: 30px;
  }
}

/* Services Section - Stepped Process */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.process-step-item {
  flex: 1 1 calc(50% - 2rem);
  max-width: 280px;
  text-align: center;
  position: relative;
  padding: 1.5rem;
  background-color: var(--text-color-light);
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.process-step-item .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-color-dark);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.process-step-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.process-step-item p {
  color: #6c757d;
}

.process-steps .process-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 2rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: translateY(-50%);
  z-index: -1;
}

@media (min-width: 768px) {
  .process-steps {
    justify-content: space-between;
    gap: 0;
  }

  .process-step-item {
    flex: 1 1 auto;
    max-width: 23%;
  }

  .process-steps .process-step-item:not(:last-child)::after {
    right: -1rem;
    width: 1rem;
  }

  .process-steps .process-step-item:not(:last-child)::before {
    content: "\2192"; /* Right arrow */
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 0;
  }
}

@media (max-width: 767.98px) {
  .process-step-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-steps .process-step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    right: auto;
    top: auto;
  }

  .process-steps .process-step-item:not(:last-child)::before {
    content: "\2193"; /* Down arrow */
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 0;
  }
}

/* Features Section */
.feature-card {
  background-color: var(--text-color-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.feature-card i {
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works-section .illustration {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-item .step-number-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-item h4 {
  color: var(--text-color-dark);
  margin-bottom: 0.25rem;
}

.step-item p {
  color: #6c757d;
}

/* Testimonials Section */
.testimonial-card {
  background-color: var(--text-color-light);
  border: none;
}

.testimonial-content {
  position: relative;
  color: var(--text-color-dark);
}

.large-quote-marks {
  font-family: serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
}

.gradient-panel {
  background: linear-gradient(45deg, var(--secondary-color), #1e7e34);
  color: var(--text-color-light);
}

/* Pricing Section */
.pricing-card {
  background-color: var(--text-color-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.pricing-card .price {
  color: var(--secondary-color);
}

.pricing-card ul {
  padding-left: 0;
}

.pricing-card ul li {
  color: var(--text-color-dark);
}

.pricing-card .btn-link {
  color: var(--secondary-color);
  font-weight: 500;
}

.pricing-card .btn-link:hover {
  color: #1e7e34;
}

.pricing-card .btn-link i.bi-chevron-down {
  transition: transform 0.3s ease;
}

.pricing-card .btn-link[aria-expanded="true"] i.bi-chevron-down {
  transform: rotate(180deg);
}

/* Team Section */
.team-member-card {
  background-color: var(--text-color-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.team-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.social-icons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

.team-member-card:hover .social-icons-overlay {
  opacity: 1;
}

.social-icons-overlay .icon-link {
  color: var(--text-color-light);
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.social-icons-overlay .icon-link:hover {
  color: var(--primary-color);
}

/* Stats Section */
.stats-section {
  background-color: var(--secondary-color) !important;
  color: var(--text-color-light);
}

.stat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-circle {
  width: 190px;
  height: 190px;
  position: relative;
}

.circular-chart {
  display: block;
  margin: 5px;
  max-width: 80%;
  max-height: 190px;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.stat-number {
  color: var(--text-color-light);
  font-size: 2.5rem;
  font-weight: bold;
}

.stat-label {
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-section .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-section .subtle-blue-border {
  border-color: rgba(0, 123, 255, 0.2) !important;
}

.faq-section .accordion-button {
  background-color: var(--text-color-light);
  color: var(--text-color-dark);
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--text-color-dark);
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion-body {
  padding: 1.25rem;
  background-color: #fcfcfc;
  color: #6c757d;
}

.faq-section .chevron-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-color-dark);
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) .chevron-box {
  transform: rotate(180deg);
  background-color: rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #212529 !important;
  color: rgba(255, 255, 255, 0.8);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer .navbar-brand .fs-5 {
  color: var(--text-color-light) !important;
}

/* Cookie Banner */
.cookie-banner {
  background-color: #212529;
  color: var(--text-color-light);
  padding: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner a {
  color: var(--primary-color);
}

.cookie-banner .btn-success {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.cookie-banner .btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.cookie-banner .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.cookie-banner .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

@media (max-width: 767.98px) {
  .cookie-banner .d-flex.gap-3 {
    width: 100%;
    justify-content: center;
  }
  .cookie-banner .btn {
    flex: 1;
  }
}
/* Styles for the main wrapper */
.regShieldWrap {
  padding: 20px 15px; /* Top/bottom padding, left/right padding */
}

/* Heading 1 styles */
.regShieldWrap h1 {
  font-size: 28px; /* Moderate font size for H1 */
  margin-top: 1.5em; /* Top margin for spacing */
  margin-bottom: 0.8em; /* Bottom margin for spacing */
  font-weight: 700; /* Bold font weight */
  line-height: 1.2; /* Line height for better readability */
}

/* Heading 2 styles */
.regShieldWrap h2 {
  font-size: 24px; /* Moderate font size for H2 */
  margin-top: 1.4em;
  margin-bottom: 0.7em;
  font-weight: 700;
  line-height: 1.3;
}

/* Heading 3 styles */
.regShieldWrap h3 {
  font-size: 20px; /* Moderate font size for H3 */
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  font-weight: 700;
  line-height: 1.4;
}

/* Heading 4 styles */
.regShieldWrap h4 {
  font-size: 18px; /* Moderate font size for H4 */
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 600; /* Slightly less bold than H1-H3 */
  line-height: 1.5;
}

/* Heading 5 styles */
.regShieldWrap h5 {
  font-size: 16px; /* Moderate font size for H5, often body size */
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.5;
}

/* Paragraph styles */
.regShieldWrap p {
  font-size: 16px; /* Standard body text size */
  line-height: 1.6; /* Good line height for readability */
  margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.regShieldWrap ul {
  margin-top: 1em; /* Top margin for lists */
  margin-bottom: 1em; /* Bottom margin for lists */
  padding-left: 25px; /* Indentation for bullet points */
  list-style-type: disc; /* Default disc bullets */
}

/* List item styles */
.regShieldWrap li {
  font-size: 16px; /* Standard text size for list items */
  line-height: 1.5; /* Line height for list items */
  margin-bottom: 0.5em; /* Space between list items */
}

.stat-circle-item {
  .stat-symb {
    bottom: 50%;
    position: absolute;
    right: 40px;
    transform: translateY(50%);
  }
}

footer h5 {
  color: #fff !important;
}
@media (max-width: 575px) {
  .step-item {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .stat-circle {
    width: 170px;
    height: 170px;
  }

  .translate-middle {
    transform: translate(-80%, -80%) !important;
  }

  .stat-circle-item {
    .stat-symb {
      bottom: 57%;
      right: 55px;
    }
  }
}


section{
    overflow: hidden;
}

@media (min-width: 992px){
    .offcanvas-body{
        background-color: transparent !important;
    }
}