:root {
  --primary-color: #ffc107;
  --secondary-color: #212529;
  --text-color: #212529;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --border-color: #dee2e6;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #e0a800;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-weight: 600;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: var(--dark-color);
}

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: relative;
}

.navbar {
  padding: 1rem 0;
  background-color: #fff;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.logo {
  height: 40px;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  font-weight: 500;
}

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

.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: var(--box-shadow);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}


.hero-section {
  padding: 8rem 0 5rem;
  position: relative;
  background-color: #f9f9f9;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  opacity: 0.5;
  z-index: 0;
}

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

.subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.hero-title2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image {
  position: relative;
  z-index: 1;
}


.rating-box {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  max-width: 300px;
}

.rating-score {
  margin-right: 1rem;
}

.rating-score h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

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

.rating-label {
  font-size: 0.9rem;
}

.trustpilot-logo {
  height: 20px;
  margin-top: 0.5rem;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients-section {
  padding: 3rem 0;
  background-color: #fff;
}

.client-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.client-logo {
  padding: 1rem;
  opacity: 0.9;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
}

.client-logo img {
  height: 70px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
  padding: 5rem 0;
  background-color: #fff;
}

.features-row {
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border-radius: 10px;
}

.feature-card:hover {
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-icon.yellow {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Strategy Section
--------------------------------------------------------------*/
.strategy-section {
  padding: 5rem 0;
  background-color: #fff;
}

.strategy-images {
  position: relative;
}

.image-grid {
  position: relative;
  height: 500px;
}

.image-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  z-index: 3;
}

.image-2 {
  position: absolute;
  top: 20%;
  right: 0;
  width: 50%;
  z-index: 2;
}

.image-3 {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  z-index: 1;
}

.image-grid img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.strategy-content {
  padding-left: 2rem;
}

.cta-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stats-box {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-right: 1rem;
  color: var(--primary-color);
  display: flex;
  align-items: flex-start;
}

.plus {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.stat-text {
  font-size: 0.9rem;
  max-width: 150px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  padding: 5rem 0;
  background-color: var(--dark-color);
  color: #fff;
}

.services-accordion {
  margin-top: 3rem;
}

.service-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.service-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.service-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  opacity: 0.5;
}

.service-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 1.5rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  flex-grow: 1;
}

.service-title h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.service-arrow {
  transition: var(--transition);
}

.service-item[aria-expanded="true"] .service-arrow {
  transform: rotate(90deg);
}

.service-content {
  padding: 0 1.5rem 1.5rem 6rem;
}

.service-content p {
  margin-bottom: 0;
}



    .blog-section {
      padding: 60px 0;
    }

    .blog-title h2 {
      font-weight: 700;
    }

    .blog-title h2 span {
      color: var(--primary-color);
    }

    .blog-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
    }

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

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-meta {
      font-size: 0.85rem;
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .blog-content h5 {
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-color);
    }

    .blog-content p {
      font-size: 0.95rem;
      color: #495057;
    }


/*--------------------------------------------------------------
# Conversion Section
--------------------------------------------------------------*/
.conversion-section {
  padding: 5rem 0;
  background-color: #fff;
}

.conversion-metrics {
  margin-top: 3rem;
}

.metric-item {
  margin-bottom: 1.5rem;
}

.metric-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.metric-bar {
  height: 10px;
}

.progress {
  height: 10px;
  border-radius: 5px;
  background-color: #f0f0f0;
}

.progress-bar {
  border-radius: 5px;
}

.conversion-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.rate-number {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark-color);
  display: flex;
  align-items: flex-start;
}

.percent {
  font-size: 3rem;
  margin-top: 1rem;
}

.rate-text {
  max-width: 300px;
  text-align: center;
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Case Studies Section
--------------------------------------------------------------*/
.case-studies-section {
  padding: 5rem 0;
  background-color: #fff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.slider-controls {
  display: flex;
  gap: 1rem;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.case-study-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.case-study-card:hover {
  transform: translateY(-10px);
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.client-feedback {
  display: flex;
  align-items: center;
}

.feedback-icon {
  margin-right: 1rem;
}

.feedback-icon img {
  height: 30px;
}

.client-feedback h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.testimonial-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonials-slider {
  position: relative;
}

.testimonial-item {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-item.active {
  display: block;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details {
  flex-grow: 1;
}

.client-details h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.client-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.client-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.client-rating .stars {
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section {
  padding: 5rem 0;
  background-color: #fff;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.stat-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 1.5rem;
}

.circular-chart {
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 3;
}

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

.percentage {
  fill: var(--dark-color);
  font-size: 0.6em;
  font-weight: 700;
  text-anchor: middle;
}

.stat-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 5rem 0 1rem;
  background-color: var(--dark-color);
  color: #fff;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-newsletter {
  margin-bottom: 2rem;
}

.footer-newsletter h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-newsletter h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  padding: 0.75rem 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-bottom-links li a:hover {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e0a800;
  color: var(--dark-color);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  background-color: #f9f9f9;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 700;
  color: var(--dark-color);
}

.modal-body {
  padding: 1.5rem;
}

.contact-popup-form .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-popup-form .form-control,
.contact-popup-form .form-select {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-popup-form .form-control:focus,
.contact-popup-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.contact-popup-form .form-check-label {
  font-size: 0.9rem;
}

.contact-popup-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-popup-form .btn-submit {
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.contact-popup-form .btn-submit:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  opacity: 0.65;
}

.success-icon {
  animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Contact Floating Button */
.contact-float-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  font-size: 1.5rem;
}

.contact-float-btn:hover {
  background-color: #e0a800;
  transform: translateY(-5px);
}

/* about us page */
    .hero {
      background: var( --primary-color);
      color: rgb(0, 0, 0);
      padding: 100px 0;
      text-align: center;
    }

    .section-title {
      font-size: 2.5rem;   
      font-weight: bold;
      color: var(--primary-color);
    }

    .about-text {
      font-size: 1.1rem;
      color: var(--text-secondary);
    }

    .team-card {
      background-color: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      transition: transform 0.3s;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .team-card img {
      border-radius: 12px 12px 0 0;
      height: 250px;
      object-fit: cover;
      width: 100%;
    }

    .team-card-body {
      padding: 20px;
    }

    .team-card-body h5 {
      color: var(--primary-color);
      font-weight: 600;
    }

    .team-card-body p {
      color: var(--text-secondary);
    }


@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .rate-number {
    font-size: 6rem;
  }

  .image-grid {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 7rem 0 4rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    margin-top: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .strategy-content {
    padding-left: 0;
    margin-top: 3rem;
  }

  .image-grid {
    height: 350px;
  }

  .rate-number {
    font-size: 5rem;
  }

  .conversion-rate {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .image-grid {
    height: 300px;
  }

  .service-header {
    flex-wrap: wrap;
  }

  .service-number {
    width: 10%;
  }

  .service-image {
    width: 15%;
  }

  .service-title {
    width: 60%;
  }

  .service-arrow {
    width: 10%;
  }

  .service-content {
    padding-left: 1.5rem;
  }

  .rate-number {
    font-size: 4rem;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 5rem 0 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .image-grid {
    height: 250px;
  }

  .cta-box {
    flex-direction: column;
  }

  .cta-box .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .service-header {
    padding: 1rem;
  }

  .service-number {
    margin-right: 0.5rem;
    font-size: 1.2rem;
  }

  .service-image {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
  }

  .service-title h3 {
    font-size: 1rem;
  }

  .service-content {
    padding: 0 1rem 1rem;
  }

  .rate-number {
    font-size: 3rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .client-info {
    flex-wrap: wrap;
  }

  .client-rating {
    width: 100%;
    align-items: flex-start;
    margin-top: 1rem;
  }
}
