/*///////////////////////////////////////////////////////////////////////////////////

	Version: 1.0

	External Resources:
	Bootstrap 4
	Google Fonts 
	Ionic Icons

/////////////////////////////////////////////////////////////////////////////////*/

/* /////////////////////////////

	1. Basic Styles
	2. Navbar
	3. Buttons
	4. Hero
	5. Marketing
	6. Testimonials
	7. Pricing
	8. Call to Action
	9. Footer
	10. Media Queries

   //////////////////////////*/
/*



/*
========================================
   Dark Theme
========================================

*/

/* Dark Mode Styles */
:root {
  --light-bg: #ffffff;
  --light-text: #3a3f52;
  --light-secondary-text: #8da2b5;
  --light-card-bg: #fcfcfc;
  --light-footer-bg: #292c31;
  --light-footer-text: #62656a;
  --light-border: #edf1f2;

  /* Dark mode variables */
  --dark-bg: #1e2227;
  --dark-text: #f1f1f1;
  --dark-secondary-text: #b8c3cf;
  --dark-card-bg: #2c3037;
  --dark-footer-bg: #161a1f;
  --dark-footer-text: #a0a4ad;
  --dark-border: #3c3f45;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--light-text);
  transition: all 0.3s ease;
}

html,
body {
  overflow-x: hidden;
}

/* Theme toggle switch styling */
.theme-toggle {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.nav-logo-dark {
  display: none;
}

.nav-logo-light {
  display: inline-block;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #0095f7;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0095f7;
}

input:checked + .slider:before {
  transform: translateX(32px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Dark mode styles */
.dark-mode {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}

.dark-mode .nav-logo-dark {
  display: inline-block;
}

.dark-mode .nav-logo-light {
  display: none;
}

/* Navbar */
.dark-mode .custom-navbar {
  background-color: var(--dark-card-bg) !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.dark-mode .navbar a {
  color: var(--dark-text) !important;
}

.dark-mode .navbar-collapse {
  background-color: var(--dark-card-bg);
}

/* Hero section */
.dark-mode #hero {
  background-color: var(--dark-bg);
}

.dark-mode #hero p {
  color: var(--dark-secondary-text);
}

/* Marketing section */
.dark-mode #marketing p {
  color: var(--dark-secondary-text);
}

.dark-mode .feature-box {
  background-color: var(--dark-card-bg);
}

.dark-mode .feature-icon {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}

.dark-mode .text-muted {
  color: var(--dark-secondary-text) !important;
}

/* Dark mode per il modulo di contatto */
.dark-mode input,
.dark-mode textarea,
.dark-mode select {
  background-color: var(--dark-bg);
  color: var(--dark-text);
  border: 1px solid var(--dark-border);
}

.dark-mode input::placeholder,
.dark-mode textarea::placeholder {
  color: var(--dark-secondary-text);
}

.dark-mode label {
  color: var(--dark-text);
}

.dark-mode .form-control:focus {
  background-color: var(--dark-bg);
  color: var(--dark-text);
  border-color: #0095f7;
  box-shadow: 0 0 0 0.2rem rgba(0, 149, 247, 0.25);
}

/* Testimonials */
.dark-mode #testimonials {
  background-color: var(--dark-bg);
  border-color: var(--dark-border);
}

.dark-mode .testimonial-box {
  background-color: var(--dark-card-bg);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 16px 0 rgba(0, 0, 0, 0.2);
}

.dark-mode .testimonial-box p {
  color: var(--dark-secondary-text);
}

.dark-mode .personal-info {
  border-bottom-color: var(--dark-border);
}

/* Pricing */
.dark-mode .pricing-box {
  background-color: var(--dark-card-bg);
  border-color: var(--dark-border);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 16px 0 rgba(0, 0, 0, 0.15);
}

.dark-mode .pricing-box h6 {
  color: var(--dark-text);
}

.dark-mode .pricing-box li {
  color: var(--dark-secondary-text);
}

.dark-mode .pricing-box small {
  color: var(--dark-secondary-text);
}

.dark-mode .divider-light {
  border-top-color: var(--dark-border);
}

/* Call to action */
.dark-mode #call-to-action {
  background-color: #0095f7;
  background-image: none;
}

/* Footer */
.dark-mode footer {
  background-color: var(--dark-footer-bg);
  color: var(--dark-footer-text);
}

.dark-mode footer h5 {
  color: #d1d5db;
}

.dark-mode footer p,
.dark-mode footer li,
.dark-mode footer a,
.dark-mode footer i,
.dark-mode footer small {
  color: var(--dark-footer-text);
}

.dark-mode footer a:hover,
.dark-mode footer i:hover {
  color: #0095f7;
}

.dark-mode .divider {
  border-top-color: var(--dark-border);
}

/* Buttons */
.dark-mode .btn-regular {
  background-color: #0095f7;
  color: #ffffff;
}

.dark-mode .btn-demo {
  background-color: #6772e5;
  color: #ffffff;
}

.dark-mode .btn-buy {
  background-color: #0095f7;
  color: #ffffff;
}

@media (max-width: 991px) {
  .dark-mode .btn-demo-small {
    background-color: transparent;
  }

  .dark-mode .btn-demo-small a {
    color: var(--dark-text) !important;
  }

  .dark-mode .nav-custom-link {
    border-bottom-color: var(--dark-border);
  }

  .dark-mode .navbar-collapse {
    border-bottom-color: var(--dark-border);
  }
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--light-text);
}

h2 {
  font-size: 44px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}

h5 {
  font-size: 16px;
}

p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #53627c;
}

ul {
  list-style-type: none;
  padding-left: 0px;
}

b {
  font-weight: 700;
}

section {
  padding: 100px 0px;
}

.title-block {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  text-align: center;
}

.title-block p {
  font-size: 20px;
  font-weight: 300;
  color: var(--dark-secondary-text);
  margin-bottom: 0px;
}

.divider {
  padding: 2rem 0 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--dark-border);
}

.divider-light {
  padding: 2rem 0 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--dark-border);
}

.dark-mode .contact-box {
  background-color: var(--dark-card-bg);
  padding: 40px 20px;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 16px 0 rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

.dark-mode .contact-box h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #0095f7;
}

.dark-mode .contact-box h6 {
  font-size: 60px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0px;
}

.dark-mode .contact-box p {
  font-size: 17px;
  margin-top: 15px;
  padding: 0px;
}

.dark-mode .contact-box ul {
  padding-left: 10px;
}

.dark-mode .contact-box li {
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-secondary-text);
  letter-spacing: 0.1em;
}

.dark-mode .contact-box span {
  font-weight: 500;
  color: #0095f7;
}

.dark-mode .contact-box small {
  color: var(--dark-secondary-text);
  letter-spacing: 0.2em;
}

.dark-mode .contact-box i {
  font-size: 20px;
  color: #0095f7;
  margin-right: 10px;
}

/*
============================================
   0.CUSTOM CSS
============================================
*/

.animated-arrow {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

.vibrate-item {
  animation: bounce 2s ease-in-out infinite;
}

.slideText-animation {
  animation: slideLeftRight 5s linear infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
}

@keyframes slideLeftRight {
  0% {
    transform: translateX(-2%);
  }
  50% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(-2%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated-slow {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.animated-delay-1 {
  animation-delay: 0.2s;
}

.animated-delay-2 {
  animation-delay: 0.4s;
}

.animated-delay-3 {
  animation-delay: 0.6s;
}

.animated-delay-4 {
  animation-delay: 0.8s;
}

.fade-in {
  animation-name: fadeIn;
}

.slide-in-up {
  animation-name: slideInUp;
}

.pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.float {
  animation-name: float;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.shake:hover {
  animation-name: shake;
  animation-duration: 0.8s;
}

.spin {
  animation-name: spin;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.bounce {
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

/* Hover animations */
.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navbar animation */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--bg-color) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Logo animations */
.nav-logo {
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
  height: 50px !important;
}

/* Feature box animations */
.feature-icon i {
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
  transform: scale(1.2);
}

/* Animated arrow */
.animated-arrow {
  animation: bounce 2s infinite;
}

/* Enhanced vibration */
.vibrate-item {
  animation: float 3s infinite ease-in-out;
}

.contact-box {
  background-color: var(--light-card-bg);
  padding: 40px 20px;
  border: 1px solid #f8f9fb;
  border-radius: 6px;
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 16px 0 rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

.contact-box h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #0095f7;
}

.contact-box h6 {
  font-size: 60px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0px;
}

.contact-box p {
  font-size: 17px;
  margin-top: 15px;
  padding: 0px;
}

.contact-box ul {
  padding-left: 10px;
}

.contact-box li {
  font-size: 14px;
  font-weight: 300;
  color: var(--light-secondary-text);
  letter-spacing: 0.1em;
}

.contact-box span {
  font-weight: 500;
  color: #0095f7;
}

.contact-box small {
  color: var(--light-secondary-text);
  letter-spacing: 0.2em;
}

.contact-box i {
  font-size: 20px;
  color: #0095f7;
  margin-right: 10px;
}

/* ==============================================
   2. Navbar 
===============================================*/

.custom-navbar {
  background-color: var(--light-bg) !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.09);
  height: 70px;
  max-height: 70px;
}

.navbar-toggler {
  font-size: 38px;
  background-color: transparent;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
}

.navbar-toggler-icon {
  color: #ffffff;
}

.navbar-collapse {
  background-color: var(--light-bg);
}

.nav-custom-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.navbar a {
  color: #53627c !important;
}

.nav-right {
  float: right;
}

.feature-box {
  background-color: var(--light-card-bg);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ==============================================
   3. Buttons
===============================================*/

.btn {
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px !important;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}

.btn:hover {
  text-decoration: none;
}

.btn-regular {
  background-color: #0095f7;
  color: #ffffff;
  padding: 10px 25px;
  letter-spacing: 0.1em;
  margin-top: 25px;
  display: inline-block;
}

.btn-regular:hover {
  background-color: #0191f0;
  color: #ffffff;
}

.btn-demo {
  color: #ffffff;
  background-color: #6772e5;
  letter-spacing: 0.1em;
  padding: 15px 48px;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

.btn-demo:hover {
  color: #ffffff;
  background-color: #636ee1;
}

.btn-demo-small {
  font-size: 12px;
  background-color: #6772e5;
  padding: 1px 4px;
}

.btn-demo-small:hover {
  background-color: #636ee1;
}

.btn-demo-small a {
  color: #ffffff !important;
}

.btn-buy-small {
  font-size: 12px;
  background-color: #0095f7;
  padding: 1px 4px;
}

.btn-buy-small:hover {
  background-color: #0191f0;
}

.btn-buy-small a {
  color: #ffffff !important;
}

.btn-buy {
  color: #ffffff;
  background-color: #0095f7;
  letter-spacing: 0.1em;
  padding: 15px 48px;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

.btn-buy:hover {
  background-color: #0191f0;
  color: #ffffff;
}

/* ==============================================
   4. Hero
===============================================*/

#hero h1 {
  font-size: 50px;
  font-weight: 300;
}

#hero p {
  font-size: 24px;
  font-weight: 300;
  color: var(--light-secondary-text);
  margin-bottom: 0px;
  padding: 0px;
}

#hero span {
  font-weight: 400;
  color: #0095f7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==============================================
   5. Marketing
===============================================*/

#marketing p {
  font-size: 20px;
  font-weight: 300;
  color: var(--light-secondary-text);
  margin-bottom: 0px;
  padding: 0px;
}

#marketing span {
  font-weight: 400;
  color: #0095f7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-box {
  padding: 60px 20px;
}

/* ==============================================
   6. Testimonials
===============================================*/

#testimonials {
  border-top: 3px solid #f8f9fb;
  border-bottom: 3px solid #f8f9fb;
}

.testimonial-box {
  background-color: var(--light-bg);
  box-shadow: 0 0 1px 0 rgba(0, 12, 32, 0.04),
    0 10px 16px 0 rgba(10, 31, 68, 0.06);
  border-radius: 20px;
  padding: 20px 30px;
  margin-top: 30px;
}

.testimonial-box h6 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-bottom: 0px;
}

.testimonial-box p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 25px;
  line-height: 1.8;
  padding: 0px;
}

.testimonial-box i {
  color: #ffffff;
}

.testimonial-box small {
  color: var(--light-secondary-text);
  display: inline-block;
}

.testimonial-box span {
  font-size: 14px;
  color: #ffffff;
}

.rating {
  background-color: #ffc857;
  padding: 2px 12px;
  border-radius: 50px;
}

.profile-picture {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.review-one {
  background-image: url("images/profile-picture-one.jpg");
}

.personal-info {
  padding: 5px 0 20px 0;
  border-bottom: 1px solid #edf1f2;
}

/* ==============================================
   7. Pricing
===============================================*/

.pricing-box {
  background-color: var(--light-card-bg);
  padding: 40px 20px;
  border: 1px solid #f8f9fb;
  border-radius: 6px;
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 16px 0 rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

.pricing-box h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #0095f7;
}

.pricing-box h6 {
  font-size: 60px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0px;
}

.pricing-box p {
  font-size: 17px;
  margin-top: 15px;
  padding: 0px;
}

.pricing-box ul {
  padding-left: 10px;
}

.pricing-box li {
  font-size: 14px;
  font-weight: 300;
  color: var(--light-secondary-text);
  letter-spacing: 0.1em;
}

.pricing-box span {
  font-weight: 500;
  color: #0095f7;
}

.pricing-box small {
  color: var(--light-secondary-text);
  letter-spacing: 0.2em;
}

.pricing-box i {
  font-size: 20px;
  color: #0095f7;
  margin-right: 10px;
}

.pricing-box .demo {
  color: #6772e5 !important;
}

/* ==============================================
   8. Call to Action
===============================================*/

#call-to-action {
  background-image: url("images/call-to-action.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

#call-to-action h2 {
  color: #ffffff;
}

#call-to-action p {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 40px;
}

#call-to-action .title-block {
  margin-bottom: 0px;
}

#call-to-action .btn-regular {
  background-color: var(--light-bg) !important;
  color: #0095f7 !important;
  padding: 15px 45px;
}

#call-to-action .title-block {
  margin-bottom: 0px;
}

/* ==============================================
   9. Footer
===============================================*/

footer {
  background-color: #292c31;
  padding: 20px 0;
  color: #62656a;
}

footer h5 {
  color: #aeb3bd;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

footer p {
  font-size: 12px;
  font-weight: 300;
  color: #62656a;
  text-align: justify;
  padding: 0px;
}

footer li {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 10px;
}

footer a {
  color: #62656a;
}

footer a:hover {
  color: #0095f7;
  text-decoration: none;
}

footer i {
  font-size: 25px;
  color: #62656a;
  margin-right: 10px;
}

footer i:hover {
  color: #0095f7;
}

footer small {
  color: #62656a;
  float: right;
}

.external-links {
  color: #0095f7;
}

/* ==============================================
   9. Media Queries
===============================================*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  h2 {
    font-size: 34px !important;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .title-block h2,
  p {
    text-align: left;
    padding: 0px 20px;
  }

  #call-to-action h2,
  p {
    text-align: left !important;
    padding: 0 20px;
  }

  #call-to-action {
    background-image: none;
    background-color: #0095f7;
  }

  footer {
    padding: 60px 25px;
  }
  footer h5 {
    font-size: 18px;
    margin-top: 30px;
  }
  footer li {
    font-size: 16px;
    margin-bottom: 15px;
  }
  footer p {
    font-size: 16px;
  }
  footer i {
    font-size: 30px;
    margin-right: 20px;
  }
  footer small {
    float: left;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 34px !important;
    margin-bottom: 20px;
  }
  #hero p {
    font-size: 20px !important;
  }
}

@media (max-width: 991px) {
  .nav-right {
    float: left;
  }
  .nav-custom-link {
    border-bottom: 1px solid #eee;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: 20px 0;
    text-align: left;
  }

  .btn-demo-small {
    background-color: var(--light-bg);
    border: 0px;
    padding: 0px;
    box-shadow: none;
  }
  .btn-demo-small:hover {
    background-color: var(--light-bg);
    border: 0px;
    padding: 0px;
    box-shadow: none;
  }
  .btn-demo-small a {
    color: #53627c !important;
  }

  .btn-buy-small {
    background-color: var(--light-bg);
    border: 0px;
    padding: 0px;
    box-shadow: none;
  }
  .btn-buy-small:hover {
    background-color: var(--light-bg);
    border: 0px;
    padding: 0px;
    box-shadow: none;
  }
  .btn-buy-small a {
    color: #53627c !important;
  }

  .dark-mode .btn-buy-small {
    background-color: transparent;
    border: 0px;
    padding: 0px;
    box-shadow: none;
  }
  .dark-mode .btn-buy-small:hover {
    background-color: transparent;
    border: 0px;
    padding: 0px;
    box-shadow: none;
  }

  .dark-mode .btn-buy-small a {
    color: #fff !important;
  }

  .dark-mode .ion-md-menu:before {
    color: #fff !important;
  }

  .nav-custom-link {
    font-size: 13px;
  }

  .icon-mobile {
    font-size: 18px;
    float: right;
  }

  .navbar-collapse {
    border-bottom: 1px solid #efefef;
  }

  .nav-logo-mobile {
    margin: auto;
    padding-right: 50px;
  }

  .nav-logo-desktop {
    display: none;
  }

  .hide-mobile {
    display: none !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .icon-mobile {
    display: none;
  }
  .nav-logo-mobile {
    display: none;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content {
    margin-top: 100px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .pricing-box h3 {
    font-size: 17px;
  }
  .pricing-box p {
    font-size: 14px;
  }
  .pricing-box li {
    font-size: 12px;
  }
  .btn-buy {
    font-size: 12px;
    padding: 15px 20px;
  }
  .btn-demo {
    font-size: 12px;
    padding: 15px 20px;
  }
  .profile-picture {
    width: 50px;
    height: 50px;
  }
  .testimonial-box h6 {
    font-size: 14px;
    margin-left: 10px;
  }
  .testimonial-box span {
    font-size: 12px;
  }
  .testimonial-box small {
    font-size: 12px;
    margin-top: 4px;
    margin-left: 10px;
  }
}

/* Mobile text centering - for small devices only */
@media (max-width: 992px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .btn {
    text-align: center;
  }

  .lead {
    text-align: justify !important;
  }

  .feature-box p {
    text-align: center;
  }

  .btn-regular,
  .btn-demo,
  .btn-buy {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .title-block h2,
  .title-block p {
    text-align: center;
    padding: 0px 20px;
  }

  #call-to-action h2,
  #call-to-action p {
    text-align: center;
    padding: 0 20px;
  }

  footer h5,
  footer p,
  footer li,
  footer small {
    text-align: center;
  }

  .social-icons {
    text-align: center;
  }

  .contact-box h4 {
    text-align: left !important;
    padding-left: 0;
  }

  .pricing-box p,
  .pricing-box li {
    text-align: left;
    padding-left: 0;
  }

  .testimonial-box .personal-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content-box {
    text-align: center;
  }

  .feature-icon {
    margin: auto;
  }

  .svg-mobile-right {
    margin-top: 80px;
  }

  .svg-mobile-left {
    margin-bottom: 80px;
  }
}

/*
===============================================
   11. Switcher
=============================================== 
*/
.btn-theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #53627c;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  transition: color 0.3s ease;
}

body.dark-mode .btn-theme-toggle {
  color: #f0f0f0;
}
