/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --light-gold: #f4e4a0;
  --navy-blue: #0a1128;
  --dark-blue: #1e2749;
  --royal-blue: #1d3557;
  --accent-blue: #457b9d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --text-dark: #212529;
  --text-gray: #6c757d;
}

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.logo img {
  height: 85px;
  width: 130px;
  transition: transform 0.3s ease;
   border-radius: 50%; 
}

.logo img:hover {
  transform: scale(1.05);
}
.plus-text::after {
  content: '+';
  font-size: 15px;
  margin-left: 6px;
  color: var(--primary-gold);
}

.mobile-social {
  display: none;
  padding: 15px 25px;
  gap: 20px;
}

.mobile-social a {
  font-size: 18px;
  color: var(--primary-gold);
}

/* ===== NAVIGATION ===== */
.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.nav-menu ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-menu ul li a:hover::before,
.nav-menu ul li a.active::before {
  width: 100%;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: var(--primary-gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--navy-blue) !important;
  padding: 12px 28px !important;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary::before {
  display: none;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-left: 25px;
}

/* DESKTOP SOCIAL ICONS */
.social-icons a {
    text-decoration: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15); /* light gold bg */
  color: var(--primary-gold);
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Hover effect */
.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
  }

  .nav-menu ul li {
    width: 100%;
  }

  .nav-menu ul li a {
    display: block;
    padding: 14px 25px;
    border-bottom: 1px solid #eee;
  }

  .social-icons {
    display: none;
  }
  .mobile-social {
    display: flex;
  }
}


/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: var(--navy-blue);
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.85) 0%, rgba(30, 39, 73, 0.75) 100%);
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.slide-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
}

.slide-title {
  font-size: 62px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: 'Cinzel', serif;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e4a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 650px;
  line-height: 1.7;
}

.slide-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-gold-large {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--navy-blue);
  padding: 18px 45px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  letter-spacing: 0.5px;
}

.btn-gold-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 18px 45px;
  border: 2px solid var(--white);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-blue);
  transform: translateY(-4px);
}

.trust-badges {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.badge-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-gold);
  color: var(--navy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--navy-blue);
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-gold);
  width: 35px;
  border-radius: 10px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  padding: 80px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  /* margin-top: 0px; */
  position: relative;
  z-index: 5;
  border-radius: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(29, 53, 87, 0.05));
}

.stat-icon {
  font-size: 45px;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-info p {
  font-size: 15px;
  color: var(--text-gray);
  font-weight: 600;
}

/* ===== SECTION STYLING ===== */
section {
  /* padding: 100px 0; */
}

.section-header-modern {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(29, 53, 87, 0.1));
  color: var(--primary-gold);
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-header-modern h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  letter-spacing: -1px;
}

.section-header-modern p {
  font-size: 19px;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--light-gray);
}
.services-section .section-label {
  margin-top: 50px;
  background: var(--light-gray);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 35px;
  
}

.service-card-modern {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
  transform: scaleX(1);
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-gold);
}

.service-icon-wrapper {
  margin-bottom: 25px;
}

.service-icon-modern {
  font-size: 55px;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.service-card-modern h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 18px;
  line-height: 1.3;
}

.service-card-modern p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 10px;
  padding-left: 5px;
}

.service-link-modern {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link-modern:hover {
  color: var(--dark-gold);
  gap: 12px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
}

.why-choose-section .section-label-light {
 margin-top: 50px;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.section-label-light {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e4a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-left h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.why-intro {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.why-features {
  margin-bottom: 40px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.why-feature-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.why-feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-gold);
}

.why-feature-content p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-gold-medium {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--navy-blue);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  margin-bottom: 20px;
}

.btn-gold-medium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.why-choose-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.experience-badge,
.certificate-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px 35px;
  text-align: center;
  transition: all 0.3s ease;
}

.experience-badge:hover,
.certificate-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.experience-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.experience-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.certificate-icon {
  font-size: 80px;
  margin-bottom: 15px;
}

.certificate-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.4;
}

/* ===== CASE STUDIES ===== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.case-study-card {
  background: linear-gradient(135deg, var(--dark-blue), var(--royal-blue));
  border-radius: 20px;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.case-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.case-content {
  position: relative;
  z-index: 2;
}

.case-category {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-study-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.case-study-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  line-height: 1.6;
}

.case-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.case-stat {
  text-align: center;
}

.case-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.case-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: var(--primary-gold);
}

.btn-outline-blue {
  background: transparent;
  color: var(--royal-blue);
  padding: 16px 40px;
  border: 2px solid var(--royal-blue);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials-carousel-section {
  background: var(--light-gray);
}

.testimonial-content-modern {
  background: var(--white);
  padding: 60px 50px;
  /* border-radius: 20px; */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 20px;
}
.testimonials-carousel-section .section-label{
  margin-top: 50px;
}
.quote-icon {
  font-size: 80px;
  color: var(--primary-gold);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text-large {
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 35px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--navy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 20px;
  color: var(--navy-blue);
  margin-bottom: 5px;
}

.author-info span {
  display: block;
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.author-rating {
  font-size: 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.cta-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.cta-left p {
  font-size: 19px;
  color: var(--navy-blue);
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-benefits {
  list-style: none;
}

.cta-benefits li {
  font-size: 17px;
  color: var(--navy-blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.cta-right {
  text-align: center;
}

.btn-cta-large {
  background: var(--navy-blue);
  color: var(--white);
  padding: 22px 50px;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.btn-cta-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.cta-note {
  font-size: 14px;
  color: var(--navy-blue);
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-option {
  color: var(--navy-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-option:hover {
  transform: translateX(5px);
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  

  .hero-slider {
    height: 600px;
  }

  .slide-title {
    font-size: 28px;
  }

  .slide-subtitle {
    font-size: 17px;
  }


  .slide-buttons {
    flex-direction: column;
    align-items: stretch;
  }
.trust-badges {
flex-direction: column;
gap: 15px;
}
.stats-grid {
grid-template-columns: 1fr;
}
.section-header-modern h2 {
font-size: 36px;
}
.services-grid-modern {
grid-template-columns: 1fr;
}
.why-choose-wrapper {
grid-template-columns: 1fr;
}
.case-studies-grid {
grid-template-columns: 1fr;
}
.cta-content-wrapper {
grid-template-columns: 1fr;
}
.testimonial-content-modern {
padding: 40px 30px;
}
.testimonial-text-large {
font-size: 18px;
}
}
/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
position: fixed;
width: 65px;
height: 65px;
bottom: 30px;
right: 30px;
background: #25d366;
color: #fff;
border-radius: 50%;
text-align: center;
box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
background: #128c7e;
transform: scale(1.15);
}
.call-float {
position: fixed;
width: 65px;
height: 65px;
bottom: 115px;
right: 30px;
background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
color: var(--navy-blue);
border-radius: 50%;
text-align: center;
box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: pulse-call 2s infinite;
animation-delay: 0.5s;
}
.call-float:hover {
background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
transform: scale(1.15);
}
@keyframes pulse-whatsapp {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}
@keyframes pulse-call {
0% {
box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
}
70% {
box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
}
}
@media (max-width: 768px) {
.whatsapp-float,
.call-float {
width: 55px;
height: 55px;
right: 20px;
}
.whatsapp-float {
bottom: 20px;
}
.call-float {
bottom: 90px;
}
}