/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*=== MEDIA QUERY ===*/ /*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -LOGO CSS
    -MENU CSS
* 04.ABOUT CSS STYLE
* 05.SERVICE CSS STYLE
* 06.WORK CSS STYLE
* 07.AVAILABLE CSS STYLE
* 08.CONTACT CSS STYLE
* 09.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700|Rubik:400,600,700");
/* Full screen background - covers entire site */
html { 
  min-height: 100%;
  height: 100%;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-family: "Rubik", sans-serif;
  color: #788487;
  position: relative;
  min-height: 100vh;
  background-image: url("../images/banner/backgroundlight.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Mobile optimized background - avoid zoomed effect */
@media (max-width: 991px) {
  html, body {
    margin: 0;
    padding: 0;
  }
  
  body {
    background-image: none;
  }
  
  .bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("../images/banner/mobilebackgroundlight.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}

p {
  line-height: 28px;
  font-size: 15px;
}

html {
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 0px;
  color: #232323;
}

a {
  text-decoration: none;
  transition: all 0.2s;
  color: #000;
}

img {
  max-width: 100%;
}

a:hover {
  color: #635CDB;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
  line-height: 38px;
}

h4 {
  font-size: 22px;
  line-height: 32px;
}

h5 {
  font-size: 16px;
  line-height: 24px;
}

h6 {
  font-size: 14px;
  line-height: 26px;
}

.f-color {
  color: #635CDB;
}

h5.subtitle {
  font-size: 16px;
  font-weight: 400;
}

.no-padding {
  padding: 0;
}

.flaticon {
  display: inline;
}

.mb30 {
  margin-bottom: 30px;
}

.section-padding {
  padding: 90px 0px;
}

.section-heading {
  text-align: center;
  width: 70%;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.section-title span {
  color: #635CDB;
}

.section {
  padding: 100px 0px;
}

.line {
  width: 50px;
  background: #635CDB;
  height: 1px;
  margin: 10px auto;
}

/*---------- BUTTONS ----------*/
.btn {
  font: 600 10.5px/1;
  display: inline-block;
  padding: 15px 45px 15px 45px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.2s;
  border-radius: 0px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn:focus,
.btn:active,
.btn:active:focus {
  outline: none;
  box-shadow: none;
}

.btn-hero,
.btn-white:hover {
  color: #fff !important;
  background: #635CDB;
}

.btn-hero:focus {
  color: #fff !important;
}

.btn-black,
.btn-hero:hover {
  background-color: rgb(0, 0, 0);
  color: #fff !important;
}

.btn-black:hover {
  color: #fff;
  background: #635CDB;
}

.btn-black:focus {
  color: #fff;
}

.btn-white {
  background-color: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-white:focus {
  color: #000;
}

.btn-white:active {
  color: #fff;
}

.btn-trans-black {
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.85);
}

.btn-trans-black:hover {
  color: rgb(255, 255, 255);
  background-color: #000;
}

.btn-trans-white {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
}

.btn-trans-white:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-trans-white:active,
.btn-trans-white:focus {
  color: #fff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-rounded {
  border-radius: 2px;
}

.btn-circled {
  border-radius: 40px;
}

.btn-trans-black:hover {
  background: #635CDB !important;
}

/*---------- COLORS ----------*/
/*-- Background Colors --*/
.bg-black {
  background-color: #000;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.96);
}

.bg-feature {
  background-color: #635CDB;
}

.bg-primary {
  background-color: #0db8ca;
}

.bg-gray {
  background-color: #f2f4ec;
}

.bg-white {
  background-color: #fff;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}






/* ========================

==============================*/
.heading {
  margin-bottom: 40px;
}

.heading h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

/*------------------------------------
  MENU NAVIGATION AREA
----------------------------------*/
.site-navigation,
.trans-navigation {
  padding: 5px 0px;
}

.site-navigation .navbar-nav a,
.trans-navigation .navbar-nav a {
  text-transform: uppercase;
}

.site-navigation .navbar-nav a.active,
.trans-navigation .navbar-nav a.active {
  color: red;
}

.header-white {
  position: fixed;
  top: 0px;
  
  z-index: 9999;
  width: 100%;
  left: 0;
  transition: all 0.5s ease 0s;
  color: #000 !important;
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link,
.navbar-expand-lg.site-navigation .navbar-nav .nav-link {
  padding: 5px 24px;
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link:last-child,
.navbar-expand-lg.site-navigation .navbar-nav .nav-link:last-child {
  padding-right: 20px;
  padding-left: 20px;
}

.site-navigation,
.trans-navigation {
  transition: all 0.5s ease 0s;
}

.navbar-brand {
  padding-top: 0px;
  margin-right: 5px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}

.navbar-brand span {
  font-weight: 400;
}

.navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
  color: #fff;
}

.trans-navigation {
  background: transparent;
}



.trans-navigation.header-white .navbar-nav .nav-link {
  color: #fff;
}

.trans-navigation.header-white .navbar-nav a.active {
  color: #635CDB;
}



.trans-navigation.header-white .btn-white {
  background: #635CDB;
  color: #fff;
}

/* ===============================
 DROPDOWN MENU
================================*/
.navbar-expand-lg.trans-navigation .navbar-nav .nav-link.dropdown-toggle {
  padding-right: 0px;
}

.dropdown-toggle i {
  font-size: 10px;
  vertical-align: 2px;
}

.dropdown-menu {
  padding: 0px;
  border: 0;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
@media (max-width: 992px) {
  .dropdown-menu {
    text-align: center;
    float: left !important;
    width: 100%;
    margin: 0;
  }
}
.dropdown-menu li:first-child {
  margin-top: 5px;
}
.dropdown-menu li:last-child {
  margin-bottom: 5px;
}

.dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-menu,
.dropright .dropdown-menu {
  margin: 0;
}

.dropleft .dropdown-toggle::before,
.dropright .dropdown-toggle::after {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  border: 0;
  font-size: 10px;
  vertical-align: 1px;
}

.dropleft .dropdown-toggle::before {
  content: "\f053";
  margin-right: 5px;
}

.dropright .dropdown-toggle::after {
  content: "\f054";
  margin-left: 5px;
}

.dropdown-item {
  padding: 0.6rem 1.5rem 0.35rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-submenu.active > .dropdown-toggle,
.dropdown-submenu:hover > .dropdown-item,
.dropdown-item.active,
.dropdown-item:hover {
  background: rgba(99, 92, 219, 0.1);
  color: #635CDB;
}

button:focus {
  outline: 0;
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}

@media (min-width: 992px) {
  .dropdown-menu {
    transition: all 0.2s ease-in, visibility 0s linear 0.2s, transform 0.2s linear;
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    transform: translateY(10px);
  }
  .dropdown-menu li:first-child {
    margin-top: 5px;
  }
  .dropdown-menu li:last-child {
    margin-bottom: 5px;
  }
  .dropleft .dropdown-menu,
.dropright .dropdown-menu {
    margin-top: -5px;
  }
  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    transition: all 0.3s ease 0s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }
}
.navbar-collapse.show {
  
  max-height: calc(100vh - 100px);
}

/*------------------------------------
 BANNER AREA
----------------------------------*/
.banner-area {
  height: 100vh;
}

.banner-area .content-padding {
  padding: 60px 0px 80px;
}

.content-padding {
  padding: 140px 0px 80px;
}

.banner-content {
  padding-right: 30px;
}

.banner-content .btn {
  margin-top: 15px;
}

.banner-content .banner-title {
  color: #fff;
  font-weight: 700;
  line-height: 50px;
}

.banner-content .subtitle {
  color: #fff;
  background: #635CDB;
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.subtitle {
  color: #635CDB;
}

.banner-content p {
  margin: 20px 0px;
  color: #eee;
  font-size: 18px;
  line-height: 30px;
}

.banner-content .btn {
  margin-right: 12px;
}

.btn-sm {
  padding: 10px 30px;
}

.banner-1 {
  background: transparent;
  position: relative;
}

.banner-2 {
  background: url("../images/banner/slider-3.jpg");
  background-size: cover;
  position: relative;
}

.banner-3 {
  background: url("../images/banner/banner-bg.jpg");
  background-size: cover;
  position: relative;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

/* =======================================
INner Pages
=========================================*/
#page-banner {
  position: relative;
  padding: 60px 0px 80px;
}

.page-banner-area {
  background: url("../images/banner/1.jpg") no-repeat 50% 50%;
  background-size: cover;
}

/*-------------------- ------------
 INTRO SECTION
-----------------------------*/
#intro {
  padding-bottom: 0px;
}

.intro-img {
  margin-top: 45px;
}

#intro .section-heading p {
  color: #000;
  font-size: 30px;
  line-height: 40px;
}

.intro-box {
  margin-top: 30px;
  position: relative;
  margin-bottom: 20px;
}

.intro-box h4:before {
  position: absolute;
  left: 0px;
  top: 17px;
  content: "";
  bottom: 0px;
  background: #000;
  width: 50px;
  height: 2px;
}

.intro-box h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
}

.intro-box span {
  font-size: 28px;
  color: #635CDB;
}

.intro-cta {
  margin-top: 40px;
}

/*--------------------------
  ABOUT SECTION
----------------------*/
.section-pt {
  padding-top: 90px;
}

.section-pb {
  padding-bottom: 90px;
}

#about {
  position: relative;
  padding-bottom: 85px;
}

.about-bg-img {
  position: absolute;
  right: 0px;
  content: "";
  background: url("../images/banner/1.jpg") 50% 50%;
  width: 40%;
  height: 100%;
  max-height: 560px;
  top: 0px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}

.about-content {
  margin-top: 94px;
}

.about-content .subtitle {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-content h3 {
  margin-bottom: 25px;
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  width: 45%;
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
  color: #888;
}

.about-list li i {
  color: #000;
  margin-right: 10px;
}

/* ----------------------
ABOUT PAGE
-------------------------*/
.about-list2 li i {
  margin-right: 10px;
  color: #635CDB;
}

.icon-3x {
  font-size: 3rem;
}

.text-default {
  color: #635CDB;
}

.team-social li a {
  font-size: 13px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid #fff;
  display: inline-block;
  padding-top: 3px;
  background: #fff;
}

/* ========================
HISTORY MISSION
==============================*/
.img-block img {
  width: 200px;
}

/* ========================

==============================*/
#section-strategy {
  background: url("../images/bg/bg-1.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.strategy-text {
  margin-bottom: 50px;
}

.strategy-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.strategy-text span {
  font-size: 61px;
  color: #635CDB;
  margin-bottom: 15px;
  display: block;
}

/*--------------------------------
 COUNTER SECTION
-----------------------------*/
.counter {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  line-height: 70px;
  margin: 10px 0px;
  color: #635CDB;
}

.counter-stat i {
  font-size: 40px;
  color: #fff;
  margin-right: 10px;
}

.counter-stat h5 {
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.counter-block span {
  font-size: 30px;
}

#counter {
  background: url("../images/banner/pattern-3.png") fixed 50% 50%;
  position: relative;
  background-size: cover;
  padding-top: 87px;
  padding-bottom: 95px;
}

/*--------------------------
  SERVICE AREA SECTION
----------------------*/
.page-banner-area.page-service {
  background: url("../images/bg/bg-2.jpg") no-repeat;
  background-size: cover;
}

#service-head {
  padding-bottom: 100px;
  padding-top: 90px;
}

#service-head .section-title {
  color: #fff;
}

.text-white p {
  color: #fff;
}

#service {
  margin-top: -100px;
  padding-bottom: 70px;
}

.service-box .service-img-icon {
  width: 100px;
  height: 100px;
  text-align: center;
  background: #fff;
  padding-top: 20px;
  margin: 0 auto;
  border-radius: 100%;
  margin-bottom: 20px;
  background: #635CDB;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.service-box {
  margin-bottom: 40px;
  background: #fff;
  text-align: center;
  padding: 45px 25px 30px 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.service-inner {
  margin-top: 30px;
}

.service-inner h4 {
  margin-bottom: 20px;
}

.service-inner span {
  color: #635CDB;
}

/* ================================
SERVICE PAGE
==============================*/
.bg-gray {
  background: #f4f4f4;
}

.service-block-2 {
  position: relative;
}

.service-block-2 h4 {
  margin-bottom: 15px;
  line-height: 26px;
}

.service-block-2 p {
  font-size: 16px;
}

.service-block-2 span {
  position: absolute;
  content: "";
  font-size: 70px;
  top: 0px;
  left: 0px;
  font-weight: 800;
  opacity: 0.05;
  margin-top: -15px;
}

.service-style-two {
  background: url("../images/bg/bg-2.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

.service-style-two:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.heading {
  margin-bottom: 70px;
}

/*------------------------------------
  PRICING SECTION AREA
--------------------------------*/
#pricing {
  padding-bottom: 100px;
}

.pricing-block {
  text-align: center;
  transition: all 0.3s 0s ease;
  border-radius: 5px;
  border: 1px solid #eee;
}

.price-header {
  padding-bottom: 30px;
  padding-top: 30px;
}

.price-header i {
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 25px;
  font-size: 50px;
  display: inline-block;
  border-radius: 100%;
  transition: all 0.3s ease 0s;
  color: #635CDB;
  border: 1px solid #eee;
}

.price-header .price {
  font-size: 70px;
  margin-top: 40px;
  margin-bottom: 0px;
}

.price-header h5 {
  font-weight: 400;
}

.price-header .price small {
  font-size: 18px;
}


.pricing-block ul li {
  padding: 6px 0px;
}

.pricing-block .btn {
  margin-bottom: 30px;
}

.pricing-block:hover i {
  background-image: -webkit-linear-gradient(135deg, #2f1ce0 0%, #53a0fd 50%, #51eca5 100%);
  background-iamge: -linear-gradient(135deg, #2f1ce0 0%, #53a0fd 50%, #51eca5 100%);
  color: #fff;
  border: 1px solid #53a0fd;
}

.pricing-block:hover,
.pricing-block.active {
  background: #fff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
}

#pricing .section-heading {
  margin-bottom: 90px;
}

/* -------------------
PRICING PAGE
--------------------*/
#section-counter .counter-stat i {
  color: #000;
}

#section-counter .counter-stat h5 {
  color: #777;
}

/*------------------------------------
  CLIENT PARTNER AREA SECTION
--------------------------------*/
#clients {
  padding-top: 75px;
  padding-bottom: 80px;
  position: relative;
}

.client-img {
  background: #fff;
}

/*------------------------------------
  TESTIMONIAL AREA SECTION
---------------------------------*/
.author-img img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 5px solid #ddd;
}

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

.carousel-indicators {
  bottom: 0px;
  margin-bottom: 0px;
}

.carousel-indicators li {
  background: #111;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.carousel-indicators li.active {
  background: #635CDB;
}

.testimonial-content {
  padding: 0px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-content .author-text {
  padding-top: 10px;
}

.testimonial-content .author-info {
  display: block;
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 20px;
  line-height: 36px;
  color: #222;
  margin: 35px 0px;
  display: block;
}

.author-text h5 {
  text-transform: uppercase;
}

.author-text p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 36px;
  color: #888;
  margin: 0px;
}

.testimonial-content p i {
  margin: 0px 8px;
}

.carousel-indicators li {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/*--------------------------
 CONTACT SECTION AREA
----------------------*/
#contact {
  padding-bottom: 100px;
}

.text-color {
  color: #635CDB;
}

input[type=text],
input[type=email] {
  height: 50px;
}

.form-control {
  border: 1px solid #eee;
  padding-left: 20px;
}

.form-control:hover,
.form-control:focus {
  box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
}

.input:focus {
  outline: none;
}

.form-control::-webkit-input-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

.form-control::-moz-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

.form-control:-ms-input-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

.form-control:-moz-placeholder {
  color: #888;
  opacity: 0.9;
  font-size: 13px;
  padding-left: 10px;
}

/* --------------
    MAP
-----------------*/
#map {
  height: 400px;
  width: 100%;
  position: relative;
}

/*--------------------------
 BLOG SECTION AREA
----------------------*/
#blog {
  padding-bottom: 55px;
}

.blog-block {
  overflow: hidden;
  transition: all 0.3s ease 0s;
}

.blog-block img {
  margin-bottom: 10px;
}

.blog-text {
  padding: 20px;
}

.blog-text .author-name {
  font-weight: 400;
}

.blog-text .author-name span {
  margin-right: 10px;
  font-weight: 600;
}

.blog-block .read-more,
.blog-block span {
  color: #635CDB;
}

/* =================================
BLOG PAGE
===================================*/
.blog-post {
  margin-bottom: 50px;
}

.blog-post img {
  border-radius: 5px;
}

.blog-post .post-author i,
.blog-post .post-info i {
  margin-right: 5px;
  font-size: 14px;
}

.blog-post .post-author span,
.blog-post .post-info span {
  font-size: 14px;
}

.sidebar-widget {
  margin-bottom: 40px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .sidebar-widget {
    padding-left: 0;
  }
}

.category ul li {
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
  padding-left: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.category ul li:before {
  position: absolute;
  content: "\f105";
  left: 0px;
  top: 0px;
  font-family: "Font Awesome 5 Free";
  color: #635CDB;
  font-weight: 900;
}

.tag a {
  text-transform: capitalize;
  padding: 5px 8px;
  border: 1px solid #eee;
  margin-bottom: 5px;
  font-size: 14px;
  display: inline-block;
}

.search i {
  position: absolute;
  right: 0px;
  top: 0px;
  margin-right: 35px;
  margin-top: 15px;
  color: #635CDB;
}

.download a {
  display: block;
  padding: 12px 20px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  background: #f2f2f2;
}

.download a i {
  margin-right: 15px;
  color: #635CDB;
}

/* ==================================
BLOG SINGLE
=====================================*/
.quote i {
  font-size: 50px;
  margin-right: 10px;
  position: absolute;
  left: 0px;
}

.quote {
  font-size: 18px;
  line-height: 32px;
  color: #222;
  position: relative;
  margin: 50px 0px;
  padding-left: 70px;
}

.comments img {
  width: 80px;
  height: 80px;
}

/*--------------------------
 FOOTER
----------------------*/
#footer {
  padding-bottom: 60px;
  position: relative;
  background: url("../images/bg/2.png");
  border-top: 1px solid #eee;
}

.footer-widget ul li {
  padding: 5px 0px;
}

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

.footer-widget h4 {
  margin-bottom: 20px;
}

.footer-widget h4 span {
  color: #635CDB;
  display: block;
  font-size: 60px;
  line-height: 60px;
}

.footer-blog li img {
  width: 70px;
  height: 70px;
  float: left;
  margin-right: 20px;
}

.footer-blog li h5 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
}

.footer-blog li a.read-more {
  font-size: 13px;
}

.footer-blog li {
  margin-bottom: 15px;
}

.footer-copy {
  letter-spacing: 1px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.footer-text h6 {
  margin-bottom: 10px;
}

.footer-text p span {
  color: #000;
}

.footer-text p.mail {
  color: #635CDB;
}

.bg-main {
  background: #F4F8FB;
}

.footer-widget a {
  color: #999;
}

/*-------------------------------
 SECTIONS DOWNWARD SHIFT (très léger)
---------------------------------*/
section {
  margin-top: 65px;
}

#banner,
.banner-area {
  margin-top: 0;
}

/*-------------------------------
 RESPONSIVE LAYOUT
---------------------------------*/
/*Extra large devices (large desktops, 1200px and up)*/
/*Large devices (desktops, 992px and up)*/
/*Medium devices (tablets, 768px and up)*/
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
  /*---------------
     NAVIGATION
    ----------------*/
  .navbar-toggler {
    background: #fff;
    border-radius: 0px;
  }
  .navbar-toggler-icon {
    height: auto;
    padding: 5px 0px;
    width: 1rem;
  }
  
  .navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    margin-bottom: 10px;
  }
  /*----------------------
     SECTION HEAINDG
    -----------------------*/
  .section-heading {
    width: 100%;
  }
  /*----------------
     INTRO
    ----------------*/
  #intro {
    padding-bottom: 90px;
  }
  /*----------------
     ABOUT
    ----------------*/
  .about-list li {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .about-bg-img {
    width: 35%;
    height: 100%;
    max-height: 600px;
  }
  .about-content {
    margin-top: 60px;
  }
  #about {
    padding-bottom: 40px;
  }
  /*--------------
     COUNTER
    ----------------*/
  .counter-stat {
    margin-bottom: 30px;
    text-align: center;
  }
  /*--------------
     BLOG
    ----------------*/
  .blog-text {
    padding: 0px;
    margin-top: 10px;
  }
  .blog-tex h5 {
    font-size: 15px;
  }
  .blog-text p {
    font-size: 14px;
  }
  .pricing-block {
    margin-bottom: 30px;
  }
  /*--------------
     FOOTER
    ----------------*/
  .footer-widget {
    margin-bottom: 30px;
  }
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /*---------------
     NAVIGATION
    ----------------*/
  .navbar-toggler {
    background: #fff;
    border-radius: 0px;
  }
  .navbar-toggler-icon {
    height: auto;
    padding: 5px 0px;
    width: 1rem;
  }
 
  .navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    margin-bottom: 10px;
  }
  /*----------------------
     SECTION HEAINDG
    -----------------------*/
  .section-heading {
    width: 100%;
  }
  /*----------------
     INTRO
    ----------------*/
  #intro {
    padding-bottom: 90px;
  }
  /*----------------
     ABOUT
    ----------------*/
  .about-content {
    margin-top: 60px;
  }
  #about {
    padding-bottom: 40px;
  }
  /*-------------------
     TESTIMONIAL
    -------------------*/
  .testimonial-content {
    padding: 10px;
  }
  /*--------------
     COUNTER
    ----------------*/
  .counter-stat {
    margin-bottom: 30px;
    text-align: center;
  }
  /*--------------
     BLOG
    ----------------*/
  .blog-block {
    margin-bottom: 30px;
  }
  .blog-text {
    padding: 0px;
    margin-top: 10px;
  }
  .blog-block:hover {
    box-shadow: none;
  }
  .blog-text h5 {
    font-size: 16px;
  }
  .blog-text p {
    font-size: 14px;
  }
  .intro-box {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  /*--------------
     CLIENT
    --------------*/
  .client-img {
    text-align: center;
  }
  /*--------------
     FOOTER
    ----------------*/
  .footer-widget {
    margin-bottom: 30px;
  }
  .pricing-block {
    margin-bottom: 30px;
  }
  .img-block img {
    width: 130px;
  }
}
/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  /*---------------
     NAVIGATION
    ----------------*/
  .navbar-toggler {
    background: #fff;
    border-radius: 0px;
  }
  .navbar-toggler-icon {
    height: auto;
    padding: 5px 0px;
    width: 1rem;
  }
  .trans-navigation {
   
    padding: 20px 15px;
  }
  .navbar-expand-lg.trans-navigation .navbar-nav .nav-link {
    margin-bottom: 10px;
  }
  /*----------------------
     SECTION HEAINDG
    -----------------------*/
  #intro .section-heading,
.section-heading {
    width: 100%;
  }
  #intro .section-heading p {
    font-size: 16px;
    line-height: 28px;
  }
  .section-title {
    font-size: 26px;
    line-height: 36px;
  }
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
  /*--------------------
     BANNER
    -----------------*/
  .banner-content .banner-title {
    line-height: 37px;
  }
  .banner-content p {
    font-size: 16px;
  }
  /*----------------
     INTRO
    ----------------*/
  #intro {
    padding-bottom: 90px;
  }
  /*----------------
     ABOUT
    ----------------*/
  .about-list li {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .about-bg-img {
    width: 35%;
    height: 100%;
    max-height: 600px;
  }
  .about-content {
    margin-top: 60px;
  }
  #about {
    padding-bottom: 40px;
  }
  .img-block img {
    width: 130px;
  }
  .service-block {
    margin-bottom: 20px;
  }
  /*-------------------
     TESTIMONIAL
    -------------------*/
  .testimonial-content {
    padding: 10px;
  }
  /*--------------
     COUNTER
    ----------------*/
  .counter-stat {
    margin-bottom: 30px;
    text-align: center;
  }
  /*--------------
     BLOG
    ----------------*/
  .blog-block {
    margin-bottom: 30px;
  }
  .blog-text {
    padding: 10px;
    margin-top: 10px;
    text-align: center;
  }
  .blog-tex h5 {
    font-size: 15px;
  }
  .blog-text p {
    font-size: 14px;
  }
  /*--------------
     CLIENT
    --------------*/
  .client-img {
    text-align: center;
  }
  /*--------------
     FOOTER
    ----------------*/
  .footer-widget {
    margin-bottom: 30px;
  }
  .pricing-block {
    margin-bottom: 30px;
  }
}






/*# sourceMappingURL=style.css.map */

/* Theme Switcher Styles */
#dark-mode-toggle {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2em;
  cursor: pointer;
  transition: color 0.3s ease;
}

#dark-mode-toggle:hover {
  color: #635CDB;
}



/* Glassmorphism Wrapper */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 20px;
}

/* Glassmorphism Cards */
.glass-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    border-radius: 16px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    color: #333;
    text-shadow: none;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: liquid-shimmer 3s infinite;
}

@keyframes liquid-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 2px 2px 0 rgba(231, 196, 160, 0.08),
                inset 0 -2px 2px 0 rgba(0, 0, 0, 0.3);
}

@import url("https://fonts.cdnfonts.com/css/mona-sans");

.card {
    position: relative;
    width: 320px; height: 500px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 50%
    );
    backdrop-filter: blur(4px);
    box-shadow: inset 0 2px 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 2px 0 rgba(0, 0, 0, 0.1);

    color: #333;
    text-shadow: none;
    padding: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
    h2, p {
        margin: 8px 0;
    }
    h2 {
        font-size: 1.1em;
        color: #000;
    }
    p {
        font-size: 0.9em;
        font-weight: 800;
        color: #555;
    }
    .button {
        width: fit-content;
        border-radius: 100px;
        padding: 8px 36px;
        margin: 12px auto 0;
        background: rgba(0, 0, 0, 0.1);
        box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 120px 0 100px -100px rgba(255, 255, 255, 0.5),
        0 0 0 0 rgba(0, 0, 0, 0.05);

        transition: box-shadow 0.4s ease-in-out;
        cursor: pointer;
        &:hover {
            box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.1),
            inset 200px 0px 100px -100px rgba(255, 255, 255, 0.7),
            -4px 0 8px 2px rgba(0, 0, 0, 0.1);
        }
    }
    img {
        position: relative;
        top: auto;
        left: auto; right: auto;
        width: 80%;
        margin: 0 auto 20px auto;
        object-fit: contain;
        user-select: none;
        pointer-events: none;
    }
}
.accents {
    user-select: none;
    pointer-events: none;
    position: absolute;
    left: 0; right: 0;
    top: 20%;
    .acc-card{
        width: 330px; height: 500px;
        background: #eee1;
        opacity: 0.8;
        z-index: -1;
        position: absolute;
        left: 0; right: 0;
        top: 20%;
        margin: auto;
        border-radius: 16px;
        box-shadow: inset 0 2px 2px 0 #e0c9b266,
        inset 0 -2px 2px 0 #0004;
        backdrop-filter: blur(4px);
        transition: all 0.1s linear;
        transform-origin: 20% 80%;

        &:nth-child(1){
            animation: wobble 18s ease-in-out infinite;
        }
        &:nth-child(2){
            animation: wobble 22s ease-in-out -6s infinite reverse;
        }
        &:nth-child(3){
            animation: wobble 26s ease-in-out -18s infinite;
        }
    }
    .light {
        --bgref: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 487 487'%3E%3Ccircle cx='243' cy='243.5' r='233' style='fill:none; opacity:.1; stroke:%23aaa; stroke-linecap:round; stroke-miterlimit:10; stroke-width:18px;'/%3E%3Ccircle cx='243.5' cy='243.5' r='243' style='fill:none; stroke:%23111; stroke-linecap:round; stroke-miterlimit:10;'/%3E%3Ccircle cx='243' cy='243.5' r='222' style='fill:none; stroke:%23111; stroke-linecap:round; stroke-miterlimit:10;'/%3E%3Cpath d='m10,243.5C10,114.82,114.32,10.5,243,10.5' style='fill:none; stroke:%23ddd; stroke-linecap:round; stroke-miterlimit:10; stroke-width:18px;'/%3E%3C/svg%3E");
        position: absolute;
        left: 0; right: calc(0% + 300px);
        top: 264px;
        margin: auto;
        width: 164px; height: 164px;
        z-index: -2;
        background-image: var(--bgref);
        animation: rotate360 22s linear infinite;

        &::before, &::after {
            content: ''; display: block;
            width: 100%; height: 100%;
            position: absolute;
            left: 0; right: 0;
            top: 0; bottom: 0;
            margin: auto;
            background-image: var(--bgref);
            filter: blur(3px);
            scale: 1.01;
        }
        &::after {
            filter: blur(8px);
        }
        &.sm {
            width: 100px; height: 100px;
            left:  calc(0% + 300px); right: 0;
            top: 142px; bottom: 0;
            animation: rotate360 18s linear -10s infinite;
        }
    }
    .top-light {
        position: absolute;
        left: 0; right: 0;
        top: -42px;
        margin: auto;
        width: 284px;
        height: 6px;
        border-radius: 10px;
        background: #fffef9;
        box-shadow:
        0 0px 1px 1px #ffc78e,
        0 1px 2px 1px #ff942977,
        0 2px 6px 1px #e98b2d77,
        0 4px 12px 0px #ff9e3d99,
        0 12px 20px 12px #ff800044;
    }
}

@keyframes rotate360 { to { rotate: 360deg;} }
@keyframes wobble {
    0% {
        transform: translateX(10px) translateY(20px) rotate(-3deg) scale(1);
    }
    20% {
        transform: translateX(-44px) translateY(-8px) rotate(6deg) scale(1.02);
    }
    60% {
        transform: translateX(32px) translateY(18px) rotate(-8deg) scale(1);
    }
    80% {
        transform: translateX(-42px) translateY(-22px) rotate(12deg) scale(0.94);
    }
    100% {
        transform: translateX(10px) translateY(20px) rotate(-3deg) scale(1);
    }
}

@media screen and ( max-height: 600px ){
    .card{
        height: fit-content !important;
        img { display: none; }
    }
    .acc-card{
      height: 180px !important;
    }
    .card, .accents { top: 30%; }
    .accents {
        .light {
            top: 124px; bottom: 0;
            &.sm { top: 42px; }
        }
    }
}

.glass-card h2 {
    margin: 8px 0;
    font-size: 1.4em;
    color: #333;
}

.glass-card p {
    font-size: 0.9em;
    font-weight: 800;
    color: #666;
    margin: 8px 0;
    line-height: 1.4;
}

.glass-card .button {
    width: fit-content;
    border-radius: 100px;
    padding: 8px 24px;
    margin: 12px auto 0;
    background: rgba(0, 0, 0, 0.1);
    box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    inset 120px 0 100px -100px rgba(255, 255, 255, 0.3),
    0 0 0 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease-in-out;
    cursor: pointer;
    color: #333;
    font-size: 0.9em;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.glass-card .button:hover {
    box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    inset 200px 0px 100px -100px rgba(255, 255, 255, 0.4),
    -4px 0 8px 2px rgba(0, 0, 0, 0.1);
}

.glass-card .price {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.glass-card .price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #666;
}

.glass-card .features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.glass-card .features li {
    padding: 5px 0;
    font-size: 0.9em;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.glass-card .features li:last-child {
    border-bottom: none;
}

/* Pricing section specific styles for readability */
#pricing .glass-card h2 {
    color: white;
    font-size: 1.6em;
}

#pricing .glass-card p {
    color: white;
    font-size: 1.0em;
}

#pricing .glass-card .price {
    color: white;
    font-size: 2.7em;
}

#pricing .glass-card .price span {
    color: white;
}

#pricing .glass-card .features li {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.0em;
}

#pricing .glass-card .button {
    color: white;
    font-size: 1.0em;
}

.glass-card h2 {
    color: #333;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 10px;
}

.glass-card img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 70%;
    height: auto;
    margin: 0 auto 20px auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .glass-card {
        height: 350px;
        padding: 20px;
    }
    .glass-card h2 {
        font-size: 1.2em;
    }
    .glass-card p {
        font-size: 0.8em;
    }
    .glass-card img {
        width: 60%;
        top: 15px;
    }
}

/* Portrait mode */
@media (orientation: portrait) {
    .glass-card {
        width: 90%;
        max-width: 400px;
    }
}

/* Accents for neon effects */
.accents {
    user-select: none;
    pointer-events: none;
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.acc-card {
    width: 100%;
    height: 100%;
    background: rgba(238, 238, 238, 0.1);
    opacity: 0.8;
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    margin: auto;
    border-radius: 16px;
    box-shadow: inset 0 2px 2px 0 rgba(224, 201, 177, 0.4),
    inset 0 -2px 2px 0 rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.1s linear;
    transform-origin: 20% 80%;
}

.acc-card:nth-child(1) {
    animation: wobble 18s ease-in-out infinite;
}
.acc-card:nth-child(2) {
    animation: wobble 22s ease-in-out -6s infinite reverse;
}
.acc-card:nth-child(3) {
    animation: wobble 26s ease-in-out -18s infinite;
}

.light {
    --bgref: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 487 487'%3E%3Ccircle cx='243' cy='243.5' r='233' style='fill:none; opacity:.1; stroke:%23aaa; stroke-linecap:round; stroke-miterlimit:10; stroke-width:18px;'/%3E%3Ccircle cx='243.5' cy='243.5' r='243' style='fill:none; stroke:%23111; stroke-linecap:round; stroke-miterlimit:10;'/%3E%3Ccircle cx='243' cy='243.5' r='222' style='fill:none; stroke:%23111; stroke-linecap:round; stroke-miterlimit:10;'/%3E%3Cpath d='m10,243.5C10,114.82,114.32,10.5,243,10.5' style='fill:none; stroke:%23ddd; stroke-linecap:round; stroke-miterlimit:10; stroke-width:18px;'/%3E%3C/svg%3E");
    position: absolute;
    left: 0; right: calc(0% + 300px);
    top: 50%;
    margin: auto;
    width: 164px; height: 164px;
    z-index: -2;
    background-image: var(--bgref);
    animation: rotate360 22s linear infinite;
    transform: translateY(-50%);
}

.light::before, .light::after {
    content: ''; display: block;
    width: 100%; height: 100%;
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    margin: auto;
    background-image: var(--bgref);
    filter: blur(3px);
    scale: 1.01;
}
.light::after {
    filter: blur(8px);
}
.light.sm {
    width: 100px; height: 100px;
    left: calc(0% + 300px); right: 0;
    animation: rotate360 18s linear -10s infinite;
}

.top-light {
    position: absolute;
    left: 0; right: 0;
    top: -42px;
    margin: auto;
    width: 284px;
    height: 6px;
    border-radius: 10px;
    background: #f0f0f0;
    box-shadow:
    0 0px 1px 1px #ddd,
    0 1px 2px 1px #ccc,
    0 2px 6px 1px #bbb,
    0 4px 12px 0px #aaa,
    0 12px 20px 12px #888;
}

@keyframes rotate360 { to { rotate: 360deg;} }
@keyframes wobble {
    0% {
        transform: translateX(10px) translateY(20px) rotate(-3deg) scale(1);
    }
    20% {
        transform: translateX(-44px) translateY(-8px) rotate(6deg) scale(1.02);
    }
    60% {
        transform: translateX(32px) translateY(18px) rotate(-8deg) scale(1);
    }
    80% {
        transform: translateX(-42px) translateY(-22px) rotate(12deg) scale(0.94);
    }
    100% {
        transform: translateX(10px) translateY(20px) rotate(-3deg) scale(1);
    }
}

/* Glassmorphism Contact Form */
.glassmorphism {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}



.glassmorphism .container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
}

.glassmorphism .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg);
    pointer-events: none;
}

.glassmorphism h2 {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.glassmorphism .container .row {
    position: relative;
    width: 100%;
}

.glassmorphism .container .row .col {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin: 30px 0 20px;
    transition: 0.5s;
}

.glassmorphism .container .row .inputBox {
    position: relative;
    width: 100%;
    height: 40px;
    color: #fff;
}

.glassmorphism .container .row .inputBox input,
.glassmorphism .container .row .inputBox textarea {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 0 10px;
    z-index: 1;
    color: #000;
}

.glassmorphism .container .row .inputBox .text {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    padding: 0 10px;
    display: block;
    transition: 0.5s;
    pointer-events: none;
}

.glassmorphism .container .row .inputBox input:focus + .text,
.glassmorphism .container .row .inputBox input:valid + .text {
    top: -35px;
    left: -10px;
}

.glassmorphism .container .row .inputBox .line {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.5s;
    border-radius: 2px;
    pointer-events: none;
}

.glassmorphism .container .row .inputBox input:focus ~ .line,
.glassmorphism .container .row .inputBox input:valid ~ .line {
    height: 100%;
}

.glassmorphism .container .row .inputBox.textarea {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px 0;
}

.glassmorphism .container .row .inputBox textarea {
    height: 100%;
    resize: none;
}

.glassmorphism .container .row .inputBox textarea:focus ~ .line,
.glassmorphism .container .row .inputBox textarea:valid ~ .line {
    height: 100%;
}

.glassmorphism .container .row .inputBox textarea:focus + .text,
.glassmorphism .container .row .inputBox textarea:valid + .text {
    top: -35px;
    left: -10px;
}

.glassmorphism input[type="submit"] {
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    outline: none;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    border-radius: 2px;
}

@media (max-width: 767px) {
    .glassmorphism::before {
        transform: translate(-200px,-180px);
    }
    .glassmorphism::after {
        transform: translate(220px,180px);
    }
    .glassmorphism .container {
        padding: 20px;
    }
    .glassmorphism h2 {
        font-size: 28px;
    }
}








@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');


.switcher {
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  
  --c-content: #224;
  --c-action: #0052f5;
  
  --c-bg: #E8E8E9;
  
  --glass-reflex-dark: 1;
  --glass-reflex-light: 1;
  
  --saturation: 150%;
  
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  background: var(--c-bg);
  color: var(--c-content);
  
  transition: background 400ms cubic-bezier(1, 0.0, 0.4, 1), color 400ms cubic-bezier(1, 0.0, 0.4, 1);
}

.switcher:has(input[value="dark"]:checked) {
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  
  --c-content: #e1e1e1;
  --c-action: #03d5ff;
  
  --c-bg: #1b1b1d;
  
  --glass-reflex-dark: 2;
  --glass-reflex-light: 0.3;
  
  --saturation: 150%;
}

.switcher:has(input[value="dim"]:checked) {
  --c-light: #99deff;
  --c-dark: #20001b;
  --c-glass: hsl(335 250% 74% / 1);
  
  --c-content: #d5dbe2;
  --c-action: #ff48a9;
  
  --c-bg: #152433;
  
  --glass-reflex-dark: 2;
  --glass-reflex-light: 0.7;
  
  --saturation: 200%;
}


.switcher {
  position: relative;
  z-index: 2;
  top: 0px;
  left: 50%;
  translate: -50%;
  display: flex;
  align-items: center;
  width: 169px;
  max-width: 250px;
  height: 60px;
  box-sizing: border-box;
  padding: 15px 12px 10px;
  margin: 0 auto;
  border: none;
  border-radius: 99em;
  font-size: var(--fz);
  background-color: color-mix(in srgb, var(--c-glass) 12%, transparent);
  backdrop-filter: blur(8px) url(#switcher) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
  box-shadow: 
    inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), 
    inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), 
    inset -3px -8px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), 
    inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent), 
    inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), 
    inset 0px 3px 4px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), 
    inset 2px -6.5px 1px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 
    0px 1px 5px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 
    0px 6px 16px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
  transition: 
    background-color 400ms 
      cubic-bezier(1, 0.0, 0.4, 1),
    box-shadow 400ms
      cubic-bezier(1, 0.0, 0.4, 1);
}

.switcher__legend {
  position: relative;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.switcher__input {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.switcher__icon {
  display: block;
  width: 100%;
  transition: scale 200ms cubic-bezier(0.5, 0, 0, 1);
}

.switcher__filter {
  position: relative;
  width: 0;
  height: 0;
  z-index: -1;
}

.switcher__option {
  --c: var(--c-content);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  width: 68px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 99em;
  opacity: 1;
  transition: all 160ms;
}

.switcher__option:hover {
  --c: var(--c-action);
  cursor: pointer;
}

.switcher__option:hover .switcher__icon {
  scale: 1.2;
}

.switcher__option:has(input:checked) {
  --c: var(--c-content);
  cursor: auto;
}

.switcher__option:has(input:checked) .switcher__icon {
  scale: 1;
}

.switcher::after {
  content: '';
  position: fixed;
  left: 4px;
  top: 4px;
  display: block;
  width: 84px;
  height: calc(100% - 10px);
  border-radius: 99em;
  background-color: color-mix(in srgb, var(--c-glass) 36%, transparent);
  z-index: -1;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
    inset 2px 1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
    inset -1.5px -1px 0px -1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
    inset -2px -6px 1px -5px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
    inset -1px 2px 3px -1px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
    inset 0px -4px 1px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
    0px 3px 6px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
}

.switcher:has(input[c-option="1"]:checked)::after {
  translate: 0 0;
  transform-origin: right;
  transition:
    background-color 400ms
      cubic-bezier(1, 0.0, 0.4, 1),
    box-shadow 400ms
      cubic-bezier(1, 0.0, 0.4, 1),
    translate 400ms
      cubic-bezier(1, 0.0, 0.4, 1);
  animation: scaleToggle 440ms ease;
}

.switcher:has(input[c-option="2"]:checked)::after {
  translate: 76px 0;
  transition:
    background-color 400ms
      cubic-bezier(1, 0.0, 0.4, 1),
    box-shadow 400ms
      cubic-bezier(1, 0.0, 0.4, 1),
    translate 400ms
      cubic-bezier(1, 0.0, 0.4, 1);
  animation: scaleToggle2 440ms ease;
}

.switcher[c-previous="1"]:has(input[c-option="2"]:checked)::after {
  transform-origin: left;
}


@keyframes scaleToggle {
  0% { scale: 1 1; }
  50% { scale: 1.1 1; }
  100% { scale: 1 1; }
}

@keyframes scaleToggle2{
  0% { scale: 1 1; }
  50% { scale: 1.2 1; }
  100% { scale: 1 1; }
}

/* Card styles for larger size */
.card {
  margin: auto;
  width: 100%;
  height: auto;
  min-height: 600px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card .button {
  padding: 12px 24px;
  font-size: 16px;
}

/* Glassmorphism for navbar links */
.trans-navigation {
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  --c-content: #224;
  --c-action: #0052f5;
  --c-bg: #E8E8E9;
  --glass-reflex-dark: 1;
  --glass-reflex-light: 1;
  --saturation: 150%;
}

.trans-navigation:has(.switcher input[value="dark"]:checked) {
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  --c-content: #e1e1e1;
  --c-action: #03d5ff;
  --c-bg: #1b1b1d;
  --glass-reflex-dark: 2;
  --glass-reflex-light: 0.3;
  --saturation: 150%;
}

.trans-navigation .nav-link {
  --c: var(--c-content);
  background-color: color-mix(in srgb, var(--c-glass) 12%, transparent);
  backdrop-filter: blur(8px) url(#switcher) saturate(var(--saturation));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
    inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
    inset -3px -8px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
    inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent),
    inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
    inset 0px 3px 4px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
    inset 2px -6.5px 1px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
    0px 1px 5px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
    0px 6px 16px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
  border-radius: 99em;
  padding: 8px 16px;
  margin: 0 8px;
  transition: all 160ms;
  color: var(--c);
  text-decoration: none;
  display: inline-block;
 
}

.trans-navigation .nav-link:hover {
  --c: var(--c-action);
  cursor: pointer;
  scale: 1.1;
}

.trans-navigation .nav-link.active {
  --c: var(--c-content);
}

/* Light mode background for why-webapp section */
#why-webapp {
  background: white !important;
  color: #333;
}

/* Responsive styles for why-webapp section */
@media (max-width: 768px) {
  #why-webapp .feature-card {
    margin-bottom: 20px;
  }
  #why-webapp .feature-icon i {
    font-size: 2rem;
  }
  #why-webapp h5 {
    font-size: 1.1rem;
  }
  #why-webapp p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  #why-webapp .section-title {
    font-size: 1.5rem;
  }
  #why-webapp .feature-card {
    padding: 15px;
  }
  #why-webapp .feature-icon i {
    font-size: 1.5rem;
  }
  #why-webapp h5 {
    font-size: 1rem;
  }
  #why-webapp p {
    font-size: 0.8rem;
  }
}

/* ========================================
MOBILE RESPONSIVE STYLES - Custom Mobile Navbar
========================================*/

/* ========================================
MOBILE NAVBAR - PROPRE ET FONCTIONNEL
========================================*/

/* Cacher les éléments mobiles sur desktop */
@media (min-width: 992px) {
  .mobile-nav-toggle,
  .mobile-overlay,
  .mobile-menu {
    display: none !important;
  }
}

/* Afficher le bouton burger sur mobile */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }
}

/* Bouton burger */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: 15px;
  z-index: 10000;
  background: #635CDB;
  border: 2px solid white;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(99, 92, 219, 0.5);
}

.mobile-nav-toggle:hover {
  background: #7c6de8;
  transform: scale(1.05);
}

.mobile-nav-toggle i {
  color: white;
  font-size: 22px;
}

/* Overlay sombre */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu slide-in */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  max-width: 85%;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 70px 25px 30px;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

/* Bouton fermer */
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-menu-close:hover {
  background: #635CDB;
}

/* Liens du menu */
.mobile-menu .nav-link {
  display: block;
  color: white !important;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu .nav-link:hover {
  color: #635CDB !important;
  padding-left: 8px;
}

  /* Theme switcher mobile */
  .mobile-menu-switcher {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-switcher .switcher__legend {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 12px;
  }

/* Mobile styles - Applied when screen is less than 992px */
@media (max-width: 991px) {
  
  /* Make wrapper flex wrap for mobile - Pricing Cards */
  .wrapper {
    flex-wrap: wrap !important;
    gap: 30px;
    padding: 0 15px;
  }
  
  /* Glass cards on mobile - Pricing */
  .glass-card {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 20px !important;
    margin-bottom: 0;
  }
  
  .glass-card h2 {
    font-size: 1.3em !important;
  }
  
  .glass-card .price {
    font-size: 2em !important;
  }
  
  .glass-card .features li {
    font-size: 0.85em !important;
    padding: 8px 0;
  }
  
  /* Hide desktop navbar on mobile */
  .desktop-navbar {
    display: none !important;
  }
  
  /* Show mobile navbar on mobile */
  .mobile-navbar {
    display: block !important;
  }
  
  .mobile-nav-toggle {
    display: block !important;
  }
  
  /* Banner adjustments for mobile */
  .banner-content {
    padding-right: 0;
    text-align: center;
  }
  
  .banner-content .banner-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  
  .banner-content p {
    font-size: 14px !important;
    line-height: 24px !important;
  }
  
  /* Service cards on mobile */
  .card {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 30px;
  }
  
  .card img {
    width: 60% !important;
  }
  
  /* Contact form mobile */
  .glassmorphism .container {
    padding: 20px 15px !important;
    margin: 10px;
  }
  
  .glassmorphism h2 {
    font-size: 24px !important;
  }
  
  /* Footer mobile */
  #footer {
    padding: 40px 15px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
    text-align: center;
  }
  
  /* Section padding adjustment */
  .section-padding {
    padding: 50px 15px;
  }
  
  /* Counter section mobile */
  #counter .row > div {
    margin-bottom: 30px;
  }
  
  /* Service section - stack columns */
  #service .row {
    flex-direction: column;
  }
  
  #service .col-lg-4 {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* Extra small devices - Very small phones */
@media (max-width: 575px) {
  .glass-card {
    padding: 15px !important;
  }
  
  .glass-card h2 {
    font-size: 1.1em !important;
  }
  
  .glass-card .price {
    font-size: 1.8em !important;
  }
  
  .glass-card .features li {
    font-size: 0.75em !important;
  }
  
  .banner-title {
    font-size: 24px !important;
  }
  
  /* Button adjustments */
  .btn {
    padding: 12px 25px;
    font-size: 12px;
  }
  
  /* Service section title */
  .section-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  
  /* Contact section */
  .glassmorphism {
    height: auto;
    padding: 20px 10px;
  }
  
  .glassmorphism .container {
    padding: 15px !important;
  }
  
  /* Banner area height on mobile */
  .banner-area {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 50px;
  }
}

/* Pricing section button responsive */
@media (max-width: 991px) {
  #pricing .text-center {
    padding: 0 15px;
  }
  
  #pricing .text-center .button {
    width: 100% !important;
    max-width: 300px;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    text-align: center;
  }
  
  #pricing .text-center p {
    font-size: 12px !important;
    padding: 0 10px;
  }
}

@media (max-width: 575px) {
  #pricing .text-center .button {
    font-size: 12px !important;
    padding: 10px 15px !important;
  }
}

/* Mobile navbar - smaller and more compact */
@media (max-width: 991px) {
  /* Compact mobile navbar */
  .trans-navigation {
    padding: 10px 15px !important;
    min-height: 60px;
  }
  
  .trans-navigation .navbar-brand img {
    width: 120px !important;
    height: auto !important;
  }
  
  /* Move toggle button to left side for better mobile UX */
  .mobile-nav-toggle {
    top: 10px !important;
    left: 15px !important;
    right: auto !important;
    padding: 8px 12px !important;
  }
  
  .mobile-nav-toggle span {
    width: 20px !important;
    height: 2px !important;
  }
  
  /* Adjust mobile menu for compact navbar */
  .mobile-menu {
    padding-top: 70px !important;
  }
  
  .mobile-menu .nav-link {
    padding: 12px 0 !important;
    font-size: 16px !important;
  }
}

/* Ensure navbar takes less space on mobile */
@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
  
  .trans-navigation {
    height: auto;
    min-height: 60px;
    padding: 10px 15px !important;
  }
  
  .trans-navigation .navbar-brand {
    padding: 0 !important;
  }
  
  .trans-navigation .navbar-brand img {
    width: 130px !important;
    max-height: 50px !important;
  }
  
  /* Mobile toggle button - smaller */
  .mobile-nav-toggle {
    top: 10px !important;
    left: 10px !important;
    padding: 8px 12px !important;
  }
  
  .mobile-nav-toggle span {
    width: 20px !important;
    height: 2px !important;
    margin: 3px 0 !important;
  }
  
  /* Adjust mobile menu */
  .mobile-menu {
    padding-top: 80px !important;
    width: 80% !important;
    max-width: none !important;
  }
  
  .mobile-menu .nav-link {
    padding: 12px 0 !important;
    font-size: 16px !important;
  }
  
  /* Keep navbar collapse visible on mobile but in a different way */
  .navbar-collapse {
    display: block !important;
    position: absolute !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0,0,0,0.95) !important;
    padding: 15px !important;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
  }
  
  .navbar-collapse .navbar-nav {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .navbar-collapse .navbar-nav .nav-link {
    padding: 10px 15px !important;
    margin: 5px 0 !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* Keep switcher visible on mobile */
  .switcher {
    display: flex !important;
    margin-top: 15px !important;
    transform: none !important;
    transform-origin: center !important;
  }
}

/* Extra compact for very small screens */
@media (max-width: 480px) {
  .trans-navigation {
    padding: 3px 8px !important;
  }
  
  .trans-navigation .navbar-brand img {
    width: 80px !important;
  }
  
  .mobile-nav-toggle {
    padding: 5px 8px !important;
  }
  
  .mobile-menu {
    padding-top: 55px !important;
  }
  
  .mobile-menu .nav-link {
    font-size: 14px !important;
  }
}

/* Mobile navbar - logo centered and bigger */
@media (max-width: 991px) {
  /* Hide navbar brand on mobile - logo will be shown in sidebar menu */
  .trans-navigation .navbar-brand {
    display: none !important;
  }
  
  /* Hide logo in mobile sidebar menu as well */
  .mobile-menu-logo {
    display: none !important;
  }
  
  /* Hide the main logo (b-logo class) on mobile */
  .b-logo {
    display: none !important;
  }
  
  /* Keep toggle button on left */
  .mobile-nav-toggle {
    position: absolute !important;
    left: 10px !important;
    right: auto !important;
    top: 8px !important;
    transform: none !important;
  }
  
  /* Adjust container for centering */
  .trans-navigation .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Remove margin from brand wrapper */
  .trans-navigation .navbar-brand {
    margin: 0 !important;
  }
}

/* Even bigger logo for very small screens */
@media (max-width: 480px) {
  .trans-navigation .navbar-brand img {
    width: 120px !important;
  }
}

/* ========================================
ENHANCED MOBILE NAVBAR STYLES
========================================*/

/* Hide desktop elements on mobile - switcher will be controlled by JavaScript */
@media (max-width: 991px) {
  .desktop-theme-switcher {
    /* Hidden by default on mobile, will be shown when menu is closed via JavaScript */
    display: none;
  }
  
  .navbar-collapse {
    display: none !important;
  }
  
  /* Improved burger button - smaller height */
  .mobile-nav-toggle {
    display: flex !important;
    position: fixed !important;
    top: 8px !important;
    left: 12px !important;
    z-index: 10001 !important;
    background: linear-gradient(135deg, #635CDB 0%, #8B5CF6 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(99, 92, 219, 0.4) !important;
    transition: all 0.3s ease !important;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav-toggle:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(99, 92, 219, 0.6) !important;
  }
  
  .mobile-nav-toggle:active {
    transform: scale(0.95) !important;
  }
  
  .mobile-nav-toggle i {
    color: white !important;
    font-size: 20px !important;
    transition: transform 0.3s ease !important;
  }
  
  /* Hide burger button when menu is open - show only close button on right */
  .mobile-nav-toggle.active {
    display: none !important;
  }
  
  /* Enhanced overlay */
  .mobile-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Enhanced slide-in menu */
  .mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    z-index: 9999 !important;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 80px 25px 30px !important;
    overflow-y: auto !important;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .mobile-menu.active {
    left: 0 !important;
  }
  
  /* Menu header with gradient */
  .mobile-menu::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 120px !important;
    background: linear-gradient(180deg, rgba(99, 92, 219, 0.3) 0%, transparent 100%) !important;
    pointer-events: none !important;
  }
  
  /* Logo in mobile menu */
  .mobile-menu-logo {
    display: block !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    padding: 20px !important;
  }
  
  .mobile-menu-logo img {
    width: 250px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }
  
  /* Close button */
  .mobile-menu-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    color: white !important;
    font-size: 28px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    padding: 0 !important;
  }
  
  .mobile-menu-close:hover {
    background: #635CDB !important;
    transform: rotate(90deg) !important;
  }
  
  /* Menu links */
  .mobile-menu .nav-link {
    display: block !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
  }
  
  .mobile-menu .nav-link:hover {
    color: white !important;
    padding-left: 28px !important;
    background: rgba(99, 92, 219, 0.2) !important;
    border-bottom-color: transparent !important;
  }
  
  .mobile-menu .nav-link.active {
    color: #635CDB !important;
    background: rgba(99, 92, 219, 0.15) !important;
    border-left: 3px solid #635CDB !important;
  }
  
  /* Theme switcher in mobile menu - FIXED ALIGNMENT */
  .mobile-menu-switcher {
    margin-top: 30px !important;
    padding: 25px 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .mobile-menu-switcher .switcher {
    
    width: 169px !important;
    max-width: 250px !important;
    margin: 0 auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px 8px 10px !important;
  }
  
  .mobile-menu-switcher .switcher__legend {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 12px !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    clip: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: normal !important;
  }
  
  
  /* Menu section title */
  .mobile-menu-section-title {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
    padding-left: 5px !important;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .mobile-nav-toggle {
    padding: 10px 12px !important;
    top: 10px !important;
    left: 10px !important;
  }
  
  .mobile-menu {
    width: 85vw !important;
    left: -85vw !important;
    padding: 70px 20px 25px !important;
  }
  
  .mobile-menu .nav-link {
    font-size: 15px !important;
    padding: 14px 18px !important;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden !important;
}

/* ========================================
CENTRAGE MOBILE - Tous les éléments
========================================*/

/* Centrage général du contenu mobile */
@media (max-width: 991px) {
  /* Centrer le contenu principal */
  .container {
    text-align: center !important;
  }
  
  /* Centrer les rangées */
  .row {
    justify-content: center !important;
  }
  
  /* Centrer les colonnes */
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
  .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
  .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
  .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Centrer le contenu des sections */
  .section-heading,
  .section-title,
  .section-title span {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Centrer le contenu banner */
  .banner-content {
    text-align: center !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .banner-content .banner-title,
  .banner-content p,
  .banner-content .subtitle {
    text-align: center !important;
  }
  
  /* Centrer les boutons */
  .btn,
  .button,
  .banner-content .btn {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  
  /* Centrer les images */
  img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Centrer les cartes de service */
  .service-box {
    text-align: center !important;
  }
  
  .service-box .service-img-icon {
    margin: 0 auto 20px auto !important;
  }
  
  /* Centrer les cartes de pricing */
  .pricing-block {
    text-align: center !important;
  }
  
  .pricing-block ul {
    text-align: center !important;
    padding-left: 0 !important;
  }
  
  /* Centrer les cartes glassmorphism */
  .glass-card {
    text-align: center !important;
    align-items: center !important;
  }
  
  .glass-card h2,
  .glass-card p,
  .glass-card .price,
  .glass-card .features,
  .glass-card .button {
    text-align: center !important;
  }
  
  .glass-card img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Centrer le contenu intro */
  .intro-img {
    text-align: center !important;
    margin-top: 30px !important;
  }
  
  .intro-box {
    text-align: center !important;
  }
  
  .intro-box h4:before {
    display: none !important;
  }
  
  /* Centrer les éléments de liste */
  ul, ol {
    padding-left: 0 !important;
    text-align: center !important;
    list-style-position: inside !important;
  }
  
  /* Centrer les about list */
  .about-list li {
    float: none !important;
    width: 100% !important;
    text-align: center !important;
    list-style: none !important;
  }
  
  /* Centrer le footer */
  .footer-widget {
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  
  .footer-widget h4,
  .footer-widget p,
  .footer-widget ul {
    text-align: center !important;
  }
  
  .footer-blog li {
    text-align: center !important;
  }
  
  .footer-blog li img {
    float: none !important;
    margin: 0 auto 15px auto !important;
    display: block !important;
  }
  
  /* Centrer le blog */
  .blog-block {
    text-align: center !important;
  }
  
  .blog-text {
    text-align: center !important;
  }
  
  /* Centrer le formulaire */
  .form-group {
    text-align: center !important;
  }
  
  .form-control {
    text-align: center !important;
  }
  
  /* Centrer les counters */
  .counter-block {
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  
  /* Centrer les témoignages */
  .testimonial-content {
    text-align: center !important;
    padding: 20px !important;
  }
  
  .author-img,
  .author-info,
  .author-text {
    text-align: center !important;
  }
  
  /* Centrer navbar brand */
  .navbar-brand {
    text-align: center !important;
  }
  
  /* Centrer le contenu why-webapp */
  #why-webapp .feature-card {
    text-align: center !important;
  }
  
  #why-webapp .feature-icon {
    margin: 0 auto 15px auto !important;
  }
  
  /* Centrer les cards wrapper */
  .wrapper {
    justify-content: center !important;
    text-align: center !important;
  }
  
  /* Centrer les éléments flex */
  .d-flex {
    justify-content: center !important;
  }
  
  /* Centrer le texte général */
  p, h1, h2, h3, h4, h5, h6, span, a {
    text-align: center !important;
  }
  
  /* Centrer le contenu des sections */
  section {
    text-align: center !important;
  }
  
  /* Centrer les clients */
  .client-img {
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  
  /* Centrer la map */
  #map {
    text-align: center !important;
  }
}

/* Petits écrans - ajustements supplémentaires */
@media (max-width: 575px) {
  /* Titres plus petits mais centrés */
  h1 {
    font-size: 28px !important;
    text-align: center !important;
  }
  
  h2 {
    font-size: 24px !important;
    text-align: center !important;
  }
  
  h3 {
    font-size: 20px !important;
    text-align: center !important;
  }
  
  /* Paragraphes */
  p {
    font-size: 14px !important;
    text-align: center !important;
    padding: 0 10px !important;
  }
  
  /* Boutons */
  .btn {
    width: 100% !important;
    max-width: 250px !important;
    display: block !important;
    margin: 10px auto !important;
  }
  
  /* Images responsives */
  .img-fluid {
    max-width: 100% !important;
    height: auto !important;
  }
}



