/* Custom CSS for Template15 - Elegant Professional Theme with Subtle Colors */
.bg-white {
    --bs-bg-opacity: 0; 
    background-color: #ddd !important;
}

.bg-white:hover {
    background-color: #fff !important;
}
	
.text-dark
{
    --bs-text-opacity: 1;
    color: var(--primary) !important;
}

.text-dark:hover
{
    --bs-text-opacity: 1;
    color: #000 !important;
}

.bg-white.p-3.rounded-3.mt-3:hover h3
 {
    color: #000 !important;
}

/* Color Variables */
:root {
  --primary: #2C3E50;      /* Dark Blue-Gray */
  --primary-dark: #1a2634;
  --primary-light: #34495e;
  --secondary: #3498db;    /* Soft Blue */
  --secondary-dark: #2980b9;
  --secondary-light: #5dade2;
  --accent: #e74c3c;       /* Subtle Red */
  --accent-dark: #c0392b;
  --accent-light: #ec7063;
  --white: #ffffff;
  --black: #000000;
  --gray: #95a5a6;        /* Soft Gray */
  --gray-light: #bdc3c7;   /* Light Gray */
  --gray-dark: #34495e;    /* Dark Gray-Blue */
  --text-dark: #2c3e50;    /* Main text color */
  --text-light: #7f8c8d;   /* Secondary text color */
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --hero-overlay: rgba(0, 0, 0, 0.55);
  --hero-text-primary: #0d6efd;
  --hero-text-secondary: #6c757d;
  --hero-bg-size: cover;
  --hero-bg-position: center center;
}


/* Global Rounded Elements */
.btn,
.navbar,
.feature-box,
.why-us-box,
.contact-info-box,
.contact-form,
.testimonial-box,
.accordion-item,
.service-card,
.hero-image img,
.about-image img,
.map-container,
.form-control,
.footer-social a,
.call-btn {
  border-radius: 15px !important;
  overflow: hidden;
}

/* Smaller Rounded Elements */
.feature-icon,
.why-us-icon,
.contact-icon,
.counter-icon,
.section-title h2:after,
.footer-title:after,
.about-feature i,
.navbar-nav .nav-link::after {
  border-radius: 10px !important;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* empêche le scroll horizontal non désiré */
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
/* Conteneur principal (si tu n’as pas de wrapper global) */
.site-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Bouton fixé en bas sur mobile */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none; /* masqué par défaut */
  z-index: 9999;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}

/* Afficher aussi sur desktop (option 1: toujours affiché) */
@media (min-width: 769px) {
  .mobile-cta { display: block; }
}

/* Si tu veux un style différent en desktop, tu peux surcharger ici */
@media (min-width: 769px) {
  .mobile-cta .btn {
    /* ex: légère marge, coin arrondi */
    border-radius: 8px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  }
}


.mobile-cta .btn {
  width: 100%;
  max-width: 100%;
  border-radius: 0; /* coins carrés pour coller au bord */
  border: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  background: #dc3545;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-cta .btn:hover,
.mobile-cta .btn:focus {
  background: #0b5ed7;
  outline: none;
}

/* Button Styles */
.btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding: 12px 24px;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(44, 62, 80, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  box-shadow: 0 6px 18px rgba(231, 76, 60, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-secondary {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Navbar Styles */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow-light);
  border-bottom: 1px solid var(--gray-light);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px var(--shadow);
}

.navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0dcaf0;
  text-transform: uppercase;
}

.navbar-brand span {
  color: var(--secondary);
}

.navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #0dcaf0;
  padding: 10px 15px;
  position: relative;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0dcaf0;
}

.navbar-nav .nav-link.active {
  color: #0dcaf0;
  font-weight: 600;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 10px);
}

/* Section hero */
.hero-section {
  position: relative;
  min-height: 70vh;               /* 70% viewport height sur desktop */
  height: auto;
  background-image: var(--hero-bg);
  background-size: var(--hero-bg-size);
  background-position: var(--hero-bg-position);
  background-repeat: no-repeat;
  background-attachment: fixed;   /* effet parallax léger (optionnel) */
  overflow: hidden;
}

/* Overlay filtre pour lisibilité */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

/* Contenu */
.hero-section > .container-md {
	margin-top:100px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card centrale */
.hero-card {
  background: #00000010;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 48px);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 900px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* Titre principal */
.hero-title {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.15;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 800;
}

/* Texte highlight */
.text-highlight {
  color: #fff;
  text-shadow: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  text-transform:uppercase;
}

/* Sous-titre */
.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;            /* un peu plus petit sur mobile */
    background-attachment: scroll; /* désactive le fixed sur mobile */
  }
  .hero-card {
    padding: 20px;
  }
  .hero-badge {
    font-size: 16px;
    padding: 6px 12px;
  }
  .hero-title {
    font-size: clamp(22px, 5.2vw, 36px);
  }
  .hero-subtitle {
    font-size: clamp(18px, 3.2vw, 24px);
  }
}

/* Accessibilité : réduit le blur si préféré */
@media (prefers-reduced-motion: reduce) {
  .hero-section {
    background-attachment: scroll;
  }
  .hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


/* Feature Box */
.feature-box {
  background-color: var(--white);
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--white);
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.feature-box p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: translateX(-50%);
}

/* About Section */
.about-section {
  background-color: var(--gray-light);
}

.about-image {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.about-shape {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--secondary);
  z-index: -1;
  border-radius: 15px;
}

.about-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.about-feature i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 18px;
}

/* Why Us Box */
.why-us-box {
  background-color: var(--white);
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.why-us-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-us-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.why-us-box:hover::before {
  transform: scaleX(1);
}

.why-us-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--white);
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.why-us-box:hover .why-us-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scale(1.1);
}

.why-us-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.why-us-box p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact Info Box */
.contact-info-box {
  background-color: var(--white);
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-info-box:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--white);
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.contact-info-box:hover .contact-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scale(1.1);
}

.contact-info-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.cta-section .card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
}

.cta-section .card h2 {
  color: var(--white);
}

.cta-section .btn {
  background: var(--secondary);
  border: none;
  color: var(--white);
}

.cta-section .btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* Counter Section */
.counter-section {
  background: var(--white);
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
}

.counter-box {
  text-align: center;
  color: var(--text-dark);
}

.counter-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.2);
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.counter-label {
  font-size: 16px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Footer */
.footer-section {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 60px 0 30px;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
}

.footer-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.footer-about h3 {
  color: var(--white);
  font-weight: 700;
}

.footer-about p {
  color: var(--gray-light);
  line-height: 1.6;
}

.footer-contact .contact-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--secondary);
}

.footer-contact .contact-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.footer-links .footer-link {
  color: #000;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 14px;
}

.footer-links .footer-link:hover {
  color: #000;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  text-decoration: none;
  border-radius: 4px;
  padding: 2px 6px;
}

/* Call Button */
.call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
}

.call-btn:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.call-btn i {
  animation: pulse 2s infinite;
}

.call-btn-text {
  position: fixed;
  bottom: 30px;
  right: 100px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.call-btn-text:hover {
  background: var(--secondary);
  transform: translateX(-5px);
}

/* Service Cards */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.service-card .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card .icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: var(--primary);
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.service-card .title.red {
  color: var(--accent);
}

.service-card .title.green {
  color: var(--primary);
}

.service-card .title.yellow {
  color: var(--secondary);
}

/* Jumbotron */
.jumbotron {
  background-color: var(--gray-light);
  padding: 3rem 0;
  border-radius: 0 0 15px 15px;
  margin-bottom: 30px;
}

.jumbotron h1 {
  color: var(--primary);
  font-weight: 800;
}

/* Form Elements */
.form-control {
  height: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--text-dark);
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  border-color: var(--secondary);
  background-color: var(--white);
  color: var(--text-dark);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  height: 150px;
  padding: 15px 20px;
  background-color: var(--white);
  color: var(--text-dark);
}

.form-floating > label {
  color: var(--text-light);
}

.form-floating > .form-control:focus ~ label {
  color: var(--secondary);
  font-size: 0.875rem;
  opacity: 1;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--gray-light);
  margin-bottom: 15px;
  box-shadow: 0 2px 10px var(--shadow-light);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--white);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background-color: var(--gray-light);
  color: var(--primary);
}

.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--primary);
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  border-color: var(--secondary);
}

.accordion-body {
  background-color: var(--white);
  color: var(--text-dark);
  border-top: 1px solid var(--gray-light);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--shadow);
    margin-top: 15px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 80px 0;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 28px;
  }
  
  .call-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}