/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #2e86de;
  --secondary-color: #54a0ff;
  --background-color: #ffffff;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --border-color: #dee2e6;
  --dark-color: #343a40;
  --success-color: #38ada9;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: background-color 0.3s, color 0.3s;
}

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

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

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

.navbar {
  padding: 15px 0;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 28px;
  padding: 0;
}

.brand-text {
  color: var(--dark-color);
}

.brand-highlight {
  color: var(--primary-color);
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  font-weight: 600;
  padding: 10px 15px !important;
  margin: 0 5px;
  color: var(--dark-color) !important;
  position: relative;
  transition: all 0.3s;
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 15px;
  background-color: var(--primary-color);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover:before,
.nav-link.active:before {
  visibility: visible;
  width: calc(100% - 30px);
}

.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 15px;
  transition: all 0.3s;
}

.dropdown-item {
  font-weight: 500;
  padding: 8px 20px;
  color: var(--dark-color);
  transition: all 0.3s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(46, 134, 222, 0.1);
  color: var(--primary-color);
}

.dropdown-divider {
  margin: 8px 0;
  opacity: 0.1;
}

.nav-right {
  margin-left: 20px;
}

.header-contact {
  position: relative;
}

.header-icon {
  width: 40px;
  height: 40px;
  background: rgba(46, 134, 222, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 10px;
  padding: 10px;
}

.contact-label {
  display: block;
  font-size: 12px;
  color: #777;
  line-height: 1;
}

.contact-number {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
  line-height: 1.2;
}

.contact-number:hover {
  color: var(--primary-color);
}

.nav-btn {
  padding: 8px 20px !important;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(46, 134, 222, 0.2);
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 134, 222, 0.3);
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .nav-right {
    margin-top: 15px;
    margin-left: 0;
    justify-content: center;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  width: 100%;
  height: 100vh;
  background-color: var(--light-gray);
  padding-top: 80px;
}

.hero-section h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--dark-color);
}

.hero-section p {
  color: var(--secondary-color);
  margin-bottom: 50px;
  font-size: 20px;
}

.hero-section .hero-img {
  text-align: center;
}

.hero-section .hero-img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-section .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

.services-section .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-section .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
}

.services-section .icon svg {
  width: 28px;
  height: 28px;
}

.services-section .icon i {
  font-size: 36px;
  line-height: 1;
  height: 36px;
  width: 36px;
}

.services-section .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services-section .icon-box h4 a {
  color: var(--dark-color);
  transition: ease 0.3s;
}

.services-section .icon-box h4 a:hover {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffc107;
  margin-right: 2px;
}

.testimonial-rating .rating-value {
  font-weight: 600;
  margin-left: 10px;
  color: var(--dark-color);
}

.testimonial-text {
  margin-bottom: 25px;
}

.testimonial-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  margin: 0;
}

.testimonial-user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-user-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--dark-color);
}

.testimonial-user-info span {
  font-size: 14px;
  color: #777;
  display: block;
}

.testimonial-date {
  font-size: 12px;
  color: #999;
  margin: 5px 0 0;
}

.testimonial-service {
  margin-top: 15px;
}

.testimonial-service .badge {
  background: rgba(46, 134, 222, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: transparent;
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section .stat-box {
  padding: 30px;
  background: var(--light-gray);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

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

.stats-section .stat-box i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.stats-section .stat-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: var(--dark-color);
}

.stats-section .stat-box p {
  margin: 0;
  font-size: 16px;
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.why-us-section .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.why-us-section .content p {
  margin-bottom: 30px;
}

.why-us-section .content ul {
  list-style: none;
  padding: 0;
}

.why-us-section .content ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 15px;
}

.why-us-section .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--success-color);
}

.why-us-section img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(46, 134, 222, 0.25);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  background: #f9f9f9;
  color: #444;
  font-size: 15px;
  border-top: 1px solid #e1e1e1;
}

.footer-top {
  padding: 60px 0 30px;
}

.footer-info {
  margin-bottom: 30px;
}

.footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

.footer-info h3 span {
  color: var(--primary-color);
}

.footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.footer-info p a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

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

.footer-info p strong {
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
}

.footer-info p strong svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  color: var(--dark-color);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.social-links a svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

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

.footer-links ul li {
  padding: 8px 0;
}

.footer-links ul a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  position: relative;
}

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

.footer-newsletter {
  margin-bottom: 30px;
}

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-newsletter p {
  margin-bottom: 20px;
}

.footer-newsletter form {
  position: relative;
}

.footer-newsletter input[type="email"] {
  border: 1px solid #e1e1e1;
  padding: 10px 15px;
  width: 100%;
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
}

.footer-newsletter input[type="email"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 134, 222, 0.25);
}

.footer-newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: var(--primary-color);
  font-size: 14px;
  padding: 0 15px;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: var(--secondary-color);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.copyright {
  margin: 0;
}

.credits {
  margin: 0;
}

.credits a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

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

@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer-info, .footer-links {
    text-align: center;
  }

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-top {
    padding: 40px 0 20px;
  }

  .footer-info p strong {
    display: block;
    margin-bottom: 5px;
    text-align: center;
  }

  .footer-info p {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }

  .footer-links ul li {
    text-align: center;
  }

  .footer-info p svg {
    margin-bottom: 5px;
  }

  .footer-info h3 {
    margin-bottom: 25px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# User and Bot Messages
--------------------------------------------------------------*/
.user-message,
.bot-message {
  margin-bottom: 15px;
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
}

.user-message p,
.bot-message p {
  margin: 0;
  line-height: 1.5;
}

.user-message p {
  text-align: right;
  background-color: var(--primary-color);
  color: white;
  border-radius: 15px 15px 0 15px;
}

.bot-message p {
  text-align: left;
  background-color: #f0f0f0;
  color: var(--dark-color);
  border-radius: 15px 15px 15px 0;
}

/*--------------------------------------------------------------
# Header Scrolled
--------------------------------------------------------------*/
.header-scrolled {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Alert Success
--------------------------------------------------------------*/
.alert-success {
  background-color: rgba(56, 173, 169, 0.2);
  border-color: var(--success-color);
  color: var(--success-color);
}

/*--------------------------------------------------------------
# Services Detail Section
--------------------------------------------------------------*/
.services-detail-section {
  padding: 120px 0 60px;
}

.process-box {
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s;
  height: 100%;
  margin-bottom: 30px;
}

.process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
  position: relative;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46, 134, 222, 0.1);
}

.process-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
}

.process-icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.process-box p {
  margin-bottom: 0;
  color: #666;
}

.table {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.table thead th {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px;
}

.table tbody td {
  padding: 15px;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  background-color: rgba(46, 134, 222, 0.05);
}

.form-select {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  box-shadow: none;
  transition: all 0.3s;
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(46, 134, 222, 0.25);
}

/*--------------------------------------------------------------
# Réalisations Page
--------------------------------------------------------------*/
.realisations-page-section {
  padding: 120px 0 60px;
}

.chart-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s;
}

.chart-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--dark-color);
  font-weight: 600;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  color: white;
  transition: all 0.3s;
  transform: translateY(100%);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 14px;
  margin: 0;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  margin-bottom: 30px;
}

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

.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.reviewer {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  text-align: right;
}

@media (max-width: 992px) {
  .services-detail-section,
  .realisations-page-section {
    padding: 100px 0 40px;
  }
}

@media (max-width: 768px) {
  .services-detail-section,
  .realisations-page-section {
    padding: 80px 0 30px;
  }

  .gallery-item {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .hero-section {
    height: auto;
    padding: 120px 0 60px;
  }
  .hero-section .hero-img {
    text-align: center;
    margin-top: 50px;
  }

  .hero-section h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .hero-section p {
    font-size: 18px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .contact-form .form-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .footer-newsletter form input[type="email"] {
    width: calc(100% - 90px);
  }

  .footer-newsletter form input[type="submit"] {
    padding: 0 15px;
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.why-box {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.why-box:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.why-box:hover:before {
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
}

.why-box .icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.why-box .icon i {
  color: var(--primary-color);
  font-size: 42px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.why-box:hover .icon i {
  transform: scale(1.2);
}

.why-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  z-index: 2;
}

.why-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Privacy Policy & Terms Conditions Pages
--------------------------------------------------------------*/
.privacy-policy, .terms-conditions {
  padding: 80px 0;
}

.privacy-content, .terms-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-content h3, .terms-content h3 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-section, .terms-section {
  margin-bottom: 30px;
}

.privacy-section h4, .terms-section h4 {
  color: var(--dark-color);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.privacy-section h4:before, .terms-section h4:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  height: 15px;
  width: 5px;
  background-color: var(--primary-color);
}

.privacy-section p, .terms-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section ul, .terms-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.privacy-section ul li, .terms-section ul li {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
}

.privacy-section ul li strong, .terms-section ul li strong {
  color: var(--dark-color);
  font-weight: 600;
}

.breadcrumbs {
  padding: 120px 0 20px;
  background-color: var(--light-gray);
  position: relative;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-color);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

.breadcrumbs ol li a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumbs ol li a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.certification-box {
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.certification-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.certification-icon {
  margin-bottom: 20px;
  position: relative;
}

.certification-icon i {
  color: var(--primary-color);
  font-size: 48px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(46, 134, 222, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.certification-box:hover .certification-icon i {
  background: var(--primary-color);
  color: #fff;
}

.certification-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.certification-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.certification-note {
  font-style: italic;
  color: #666;
  font-size: 16px;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 80px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: #fff;
  color: var(--dark-color);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(46, 134, 222, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(46, 134, 222, 0.1);
}

.accordion-button::after {
  background-size: 16px;
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.accordion-body {
  padding: 20px;
  background-color: #fff;
  color: #555;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Thank You Section
--------------------------------------------------------------*/
.thank-you-section {
  padding: 160px 0 80px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-icon svg {
  color: var(--success-color);
}

.thank-you-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.thank-you-content .lead {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .thank-you-section {
    padding: 120px 0 60px;
  }

  .thank-you-content {
    padding: 30px;
  }

  .thank-you-content h2 {
    font-size: 24px;
  }

  .thank-you-content .lead {
    font-size: 18px;
  }
}
