/********** Template CSS **********/
:root {
  --primary: 8100f9;
  --light: #fff3fe;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(135, 80, 109, 0.6); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}


.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  text-align: center;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #8100f9;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: 8100f9;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: 8100f9;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid 8100f9;
  color: #fff;
  padding: 8px 0;
  background: 8100f9;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: 8100f9;
}

#declineBtn {
  background-color: #fff;
  color: 8100f9;
}

#declineBtn:hover {
  background-color: #8100f9;
  color: #fff;
}



  /* new styles  */

  :root {
    --dark-bg: #0d478a;
    --light-bg: #f9faf8;
    --accent: #005bf9;
    --accent-hover: #0727df;
    --auxiliary: #4c54bf;
    --light-text: #e1e1e1;
    --dark-text: #2c2b42;
    --white: #ffffff;
    --light-gray: #ececec;
}

 /* Footer styles */
 .footer {
  padding-top: 4rem;
  background-color: #12141b !important;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .brand-link:hover {
  color: var(--accent);
}

.footer .brand-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .brand-link:hover::after {
  width: 100%;
}

.footer .btn-link {
  display: block;
  text-align: left;
  color: var(--light-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer .btn-link::before {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .btn-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer .btn-link:hover::before {
  width: 20px;
}

.footer .contact-email {
  color: var(--light-text);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .contact-email:hover {
  color: var(--accent);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .footer {
      padding-top: 3rem;
  }
  
  .footer .brand-link {
      margin-bottom: 1.5rem;
      display: inline-block;
  }
  
  .footer .contact-info {
      margin-top: 1.5rem;
  }
}

/* new styles  */
/* Styles généraux */
:root {
  --background-color: #f3f3f3;
  --text-color: #3c3c3c;
  --accent-color: #0d478a;
  --light-accent: rgba(61, 138, 13, 0.1);
  --header-height: 80px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 12px 30px;
}

.btn-accent:hover {
  background-color: #76560b;
  color: white;
  transform: translateY(-2px);
}

/* Styles pour le header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: radial-gradient(circle at center, #121721, #0a0d13);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-logo .material-icons {
  font-size: 28px;
  color: var(--accent-color);
}

.navbar-nav {
  gap: 12px;
}

.nav-link {
  position: relative;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 14px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 30px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 100 80' width='30' height='30'%3E%3Crect width='100' height='15'%3E%3C/rect%3E%3Crect y='30' width='100' height='15'%3E%3C/rect%3E%3Crect y='60' width='100' height='15'%3E%3C/rect%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0;
  }
  .nav-link {
    padding: 10px 20px;
    display: block;
    text-align: center;
  }
}


/* Styles pour le bloc principal (hero) */
.hero-section-dark {
  position: relative;
  padding: 140px 20px;
  background: radial-gradient(circle at center, #121721, #0a0d13);
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title-dark {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight-gradient {
  background: linear-gradient(to right, #c612ec, #0fe18a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-dark {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.button-dark {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(15, 225, 138, 0.2), rgba(196, 18, 236, 0.2));
  border: 2px solid #c612ec;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.button-dark:hover {
  background: rgba(198, 18, 236, 0.3);
  border-color: #0fe18a;
  transform: translateY(-2px);
}

.hero-background-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 18, 236, 0.2), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .hero-title-dark {
    font-size: 2.5rem;
  }
  .hero-subtitle-dark {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title-dark {
    font-size: 2rem;
  }
  .hero-subtitle-dark {
    font-size: 1rem;
  }
}

/* Styles pour le bloc À propos de nous */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.about-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
}

.about-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.about-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent-color);
  opacity: 0.15;
  font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.programs-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.programs-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.program-card {
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.program-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.program-card-body {
  padding: 25px;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.25rem;
}

.program-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.program-feature-text p {
  margin: 0;
  font-size: 0.95rem;
}

.program-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.program-cta {
  margin-top: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-section, .programs-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-card {
    margin-bottom: 30px;
  }
  
  .program-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-card-title {
    font-size: 1.3rem;
  }
  
  .program-card-header h3 {
    font-size: 1.3rem;
  }
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #f2f6fc, #e4ecf5);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d2d3a;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #606c76;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #e9e3ff, #f7f3ff);
  border: 2px solid #7a5af8;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d2c;
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 1rem;
  color: #7a7a8c;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

.pricing-price span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.btn {
  display: inline-block;
  padding: 12px 12px;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-select {
  background-color: #7a5af8;
  color: #fff;
}

.btn-select:hover {
  background-color: #6a4de3;
}

.btn-featured {
  background-color: #fff;
  color: #7a5af8;
  border: 2px solid #7a5af8;
}

.btn-featured:hover {
  background-color: #7a5af8;
  color: #fff;
}


/* Styles pour le bloc Témoignages */
.testimonials-dark {
  background: #0f1118;
  color: #e0e0e0;
  padding: 100px 0;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: #b5b5b5;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-box {
  background: #1c1f2a;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.testimonial-message {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #dedede;
}

.testimonial-person {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #8b5cf6;
}

.testimonial-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .testimonial-box {
    padding: 25px 20px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonial-message {
    font-size: 1rem;
  }
}


/* Styles pour le bloc Avantages */
.advantages-section-dark {
  padding: 100px 0;
  background: linear-gradient(to bottom, #101820, #0d0d12);
  color: #f2f2f2;
  position: relative;
}

.section-title.text-gradient {
  background: linear-gradient(to right, #c612ec, #0fe18a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.2rem;
}

.text-muted {
  color: rgba(255, 255, 255, 0.65);
}

.image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.advantage-dark {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.advantage-dark:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(196, 18, 236, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle span {
  color: #c612ec;
  font-size: 1.7rem;
}

.advantage-dark h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.advantage-dark p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Styles pour le bloc Appel à l'action */
.cta-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

.cta-modern-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.cta-modern-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f1f2c;
}

.cta-modern-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.cta-modern-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #6a4de3;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-modern-btn:hover {
  background-color: #5637d2;
}

.cta-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-modern-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}


/* Styles pour le bloc Contacts */
.contact-section-dark {
  background: #12141b;
  color: #e5e5e5;
  padding: 100px 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #1d1f29;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
  background-color: #292c3e;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box .material-icons {
  color: #f1c40f;
  font-size: 24px;
}

.contact-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fdfdfd;
}

.contact-link {
  color: #f1c40f;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form {
  background-color: #1d1f29;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffffff;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: #292c3e;
  border: none;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0b0b0;
}

.form-textarea {
  height: 120px;
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f1c40f, #e67e22);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e1b307, #d96d11);
}

/* Media queries */
@media (max-width: 991.98px) {
  .advantages-section, .cta-section, .contact-section, .form-section {
    padding: 70px 0;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section.image-right .cta-text,
  .cta-section.image-left .cta-text {
    margin-right: 0;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .cta-image-container {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .cta-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}


/* new styles */


/* business-section */
.business-category {
  padding: 80px 0;
  background: #f4f6fb;
}

.section-header h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #4a00e0;
}

.service-content p {
  font-size: 15px;
  color: #444;
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.tag {
  display: inline-block;
  background-color: #e0dcfc;
  color: #4a00e0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
  }
}


