:root {
  --brand-teal: #13bfc7;
  --brand-dark: #0e8a92;
  --brand-mid: #1ca6b3;
  --dark: #222;
  --light: #fff;
  --gray: #f4f4f4;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --rounded: 14px;
}

/* Body and basic styles moved to global.css */

/* Navigation styles moved to global.css */

/* Hero Section Redesign */
.hero {
  background: linear-gradient(135deg, #0A2342 0%, #102A43 50%, #1a3a5c 100%);
  color: var(--light);
  text-align: center;
  padding: 6rem 1rem 5rem 1rem;
  position: relative;
  overflow: hidden;
  margin-top: 75px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: left;
  z-index: 2;
  position: relative;
}

.hero-logo {
  width: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) brightness(1.1);
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  font-weight: 500;
  color: #b8d4e3;
}

.hero-subtext {
  font-size: 1.1rem !important;
  margin-bottom: 2.5rem !important;
  opacity: 0.85 !important;
  color: #a8c8d8 !important;
  line-height: 1.6;
}

.cta-btn {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(19, 191, 199, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0a6b73 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(19, 191, 199, 0.4);
  color: #fff;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  transition: width 0.3s ease;
}

.trust-item:hover::before {
  width: 8px;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 191, 199, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.9rem;
  color: #b8d4e3;
  opacity: 0.9;
}

/* Enhanced Hero Decorations */
.hero-decor {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19, 191, 199, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: floatGlow 6s ease-in-out infinite;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: floatGlow 8s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .trust-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 3rem 1rem;
    min-height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-subtext {
    font-size: 1rem !important;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-item {
    min-width: 100%;
  }
  
  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .trust-item {
    padding: 1rem;
  }
  
  .trust-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}


/* Clean up - old badge styles removed */

/* ===== NEW ENGAGEMENT SECTIONS ===== */

/* Statistics Section */
.stats-section {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.stat-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  color: #e8f4f8;
}

/* Industries Section */
.industries-section {
  background: #f8f9fa;
  padding: 5rem 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 1;
  transform: none;
}

/* Service icons in service summary section */
.service-item .service-icon {
  font-size: 1.5rem;
  opacity: 1;
  transform: none;
  transition: all 0.3s ease;
}

.industry-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.industry-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 5rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--brand-teal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.quote-icon {
  font-size: 4rem;
  color: var(--brand-teal);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: serif;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.rating {
  color: #ffc107;
  font-size: 1.2rem;
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 1rem;
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-teal);
  margin-right: 2rem;
  min-width: 80px;
  text-align: center;
}

.step-content {
  flex: 1;
  margin-right: 2rem;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.step-icon {
  font-size: 3rem;
  opacity: 0.7;
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 5rem 1rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--brand-teal);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2rem;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .step-content {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .industry-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

/* Contact CTA Section */
.index-contact-cta {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.index-contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.index-contact-cta .container {
  position: relative;
  z-index: 2;
}

.index-contact-cta .section-title {
  color: white !important;
  margin-bottom: 1rem;
}

.index-contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.index-contact-cta .cta-btn {
  background: white;
  color: var(--brand-dark);
  border: 2px solid white;
}

.index-contact-cta .cta-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* CTA button styles moved to global.css */

/* Decorative glowing circle */
.hero-decor {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 0;
}

/* Floating logo animation */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0;
  }
}

/* Section title styles moved to global.css */

.service-summary {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-dark));
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.summary-intro {
  text-align: center;
}

.business-types {
  text-align: center;
}

.business-types h3 {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.type-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.type-tag {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(19, 191, 199, 0.2);
}

.type-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19, 191, 199, 0.3);
}

.services-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.core-services,
.seasonal-services {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.core-services:hover,
.seasonal-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.core-services h3,
.seasonal-services h3 {
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-item:hover {
  background: linear-gradient(135deg, rgba(19, 191, 199, 0.1), rgba(14, 138, 146, 0.1));
  transform: translateX(5px);
  border-color: var(--brand-teal);
}

.service-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-item span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.supply-service {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.supply-service h3 {
  font-size: 1.3rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.supply-service p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(19, 191, 199, 0.05), rgba(14, 138, 146, 0.05));
  border-radius: 16px;
  border: 2px dashed var(--brand-teal);
}

.cta-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.modern-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(19, 191, 199, 0.3);
  position: relative;
  overflow: hidden;
}

.modern-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.modern-link:hover::before {
  left: 100%;
}

.modern-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(19, 191, 199, 0.4);
  color: white;
}

.link-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.modern-link:hover .link-icon {
  transform: translateX(5px);
}

.trust-summary {
  text-align: center;
  padding: 1.5rem;
  background: rgba(19, 191, 199, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--brand-teal);
}

.trust-summary p {
  font-style: italic;
  color: #555;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design for Service Summary */
@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .type-tags {
    justify-content: center;
  }
  
  .service-summary {
    padding: 2rem 1rem;
  }
  
  .summary-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .type-tags {
    flex-direction: column;
    align-items: center;
  }
  
  .type-tag {
    width: fit-content;
  }
  
  .modern-link {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.service-summary .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-mid)!important;
}

.service-summary p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.animation-caption {
  font-style: italic;
  margin-top: 0.5rem;
  color: #777;
  font-size: 0.95rem;
}


.sparkle-wrap {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  animation: floatUp 2.5s ease-in-out infinite alternate;
}

.sparkle-icon {
  width: 60px;
  opacity: 0.8;
  filter: drop-shadow(0 0 12px rgba(19, 191, 199, 0.5)) 
          drop-shadow(0 0 24px rgba(14, 138, 146, 0.3));
  animation: fadeInSparkle 2s ease-in-out;
  z-index: 2;
  position: relative;
}

/* Glowing soft background circle */
.sparkle-wrap::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(19,191,199,0.4) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
}

/* Sparkle trail (subtle fading sparkle) */
.sparkle-wrap::after {
  content: "✨";
  position: absolute;
  font-size: 18px;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  color: #13bfc7;
  animation: sparkleTrail 2.5s infinite ease-in-out;
}

@keyframes sparkleTrail {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(1);

  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px) scale(1.2);
 
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px) scale(0.9);

  }
}

@keyframes fadeInSparkle {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}


/* Modern Tooltip */
.modern-tooltip {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3rem 0;
  position: relative;
}

.tooltip-content {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(19, 191, 199, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 400px;
  animation: tooltipPulse 2s ease-in-out infinite;
}

.tooltip-content::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: tooltipShimmer 3s ease-in-out infinite;
}

.tooltip-icon {
  font-size: 1.5rem;
  animation: tooltipBounce 1.5s ease-in-out infinite;
}

.tooltip-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tooltip-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.tooltip-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.3;
}

.tooltip-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--brand-dark);
  animation: tooltipArrowBounce 2s ease-in-out infinite;
}

/* Tooltip Animations */
@keyframes tooltipPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(19, 191, 199, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(19, 191, 199, 0.4);
  }
}

@keyframes tooltipShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes tooltipBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes tooltipArrowBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(3px);
  }
}

/* Responsive Tooltip */
@media (max-width: 768px) {
  .modern-tooltip {
    margin: 1.5rem 0 2rem 0;
  }
  
  .tooltip-content {
    padding: 0.875rem 1.25rem;
    max-width: 320px;
  }
  
  .tooltip-title {
    font-size: 0.9rem;
  }
  
  .tooltip-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .tooltip-content {
    padding: 0.75rem 1rem;
    max-width: 280px;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .tooltip-icon {
    font-size: 1.25rem;
  }
}

.carousel-section {
  padding: 3rem 1rem;
  overflow: hidden;
  position: relative;
  background: white;
}

.carousel-wrapper {
  overflow: hidden;
  width: 90%;
  position: relative;
  margin: 5px auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Navigation Controls */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  color: var(--brand-dark);
}

.carousel-nav:hover {
  background: var(--brand-teal);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(19, 191, 199, 0.3);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

/* Progress Indicator */
.carousel-progress {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-dark));
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressAnimation 30s linear infinite;
}

@keyframes progressAnimation {
  0% { width: 0%; }
  100% { width: 100%; }
}

.carousel-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-inner {
  display: flex;
  gap: 2rem;
}

.service-card {
  flex: 0 0 auto;
  width: 320px;
  height: 280px;
  padding: 0;
  margin: 1rem 0.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  background-color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  height: 450px;
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 0;
  position: relative;
}

.service-icon {
  font-size: 2.5rem;
  opacity: 0.8;
}

.service-badge {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(19, 191, 199, 0.3);
}

.service-badge.eco {
  background: linear-gradient(135deg, #10b981, #059669);
}

.service-badge.seasonal {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-badge.intensive {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-badge.comprehensive {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-badge.winter {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Card Content */
.service-card h3 {
  margin: 1rem 1.5rem 0.5rem;
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.service-card p {
  flex-grow: 1;
  margin: 0 1.5rem 1rem;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: #666;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 1.5rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
  max-height: 0;
  overflow: hidden;
}

/* Service Icon - Hidden by default in carousel cards only */
.service-card .service-icon {
  font-size: 2.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.feature-tag {
  background: #f8f9fa;
  color: var(--brand-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
  background: linear-gradient(135deg, rgba(19, 191, 199, 0.1), rgba(14, 138, 146, 0.1));
  border-color: var(--brand-teal);
  color: var(--brand-dark);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Adjust darkness */
  z-index: 1;
  border-radius: var(--rounded);
}

.service-card * {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin-top: 0;
  color: var(--brand-mid);
  font-size: 1.3rem;
}

.service-card p {
  flex-grow: 1;
  margin: 1rem 0;
  font-size: 1.05rem;
  color: white;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;   /* This is important */
}

/* Enhanced CTA Button inside card */
.service-card a.cta-link {
  margin: 0 1.5rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s ease 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(19, 191, 199, 0.3);
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  padding: 0 1.25rem;
  margin: 0 1.5rem;
}

.service-card a.cta-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.service-card a.cta-link:hover::before {
  left: 100%;
}

.service-card a.cta-link:hover {
  background: linear-gradient(135deg, var(--brand-dark), #0a6b73);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 191, 199, 0.4);
  color: #fff;
}

.service-card a.cta-link svg {
  transition: transform 0.3s ease;
}

.service-card a.cta-link:hover svg {
  transform: translateX(3px);
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Hover Effects - Reveal hidden elements */
.service-card:hover .service-icon {
  opacity: 0.8;
  transform: scale(1);
}

.service-card:hover p {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
}

.service-card:hover .service-features {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
}

.service-card:hover h3 {
  transform: translateY(-5px);
  color: var(--brand-teal);
}

.service-card:hover a.cta-link {
  opacity: 1;
  transform: translateY(0);
  max-height: 60px;
  padding: 0.875rem 1.25rem;
  margin: 0 1.5rem 1.5rem;
}

/* Unique backgrounds */
.service-card.floor {
  background-image: url('https://kandkservices.ca/assets/floor-care.webp');
  color: white;
}

.service-card.carpet {
  background-image: url('https://kandkservices.ca/assets/carpet.webp');
}

.service-card.window {
  background-image: url('https://kandkservices.ca/assets/window.webp');
}

.service-card.deep {
  background-image: url('https://kandkservices.ca/assets/deep.webp');
}

.service-card.maintenance {
  background-image: url('https://kandkservices.ca/assets/maintenance.webp');
}

.service-card.ice-melt {
  background-image: url('https://kandkservices.ca/assets/ice-melt.webp');
}


@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* --- ABOUT --- */
.about {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.about h2 {
  color: var(--brand-mid);
  margin-bottom: 1.5rem;
}

.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(19,191,199,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.about-intro {
  display: flex;
  justify-content: center;
}

.intro-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  max-width: 500px;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-dark));
}

.intro-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.intro-card h3 {
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.intro-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.highlight {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-content h4 {
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.about-commitment {
  margin-bottom: 3rem;
}

.commitment-card {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(19, 191, 199, 0.3);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
  opacity: 0.3;
}

.commitment-icon {
  font-size: 4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.commitment-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.commitment-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.commitment-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.about-cta {
  text-align: center;
}

.modern-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(19, 191, 199, 0.3);
  position: relative;
  overflow: hidden;
}

.modern-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.modern-cta-btn:hover::before {
  left: 100%;
}

.modern-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(19, 191, 199, 0.4);
  color: white;
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.modern-cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .commitment-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }
  
  .intro-card,
  .commitment-card {
    padding: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .commitment-content h3 {
    font-size: 1.6rem;
  }
  
  .modern-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.about-section .section-title {
  font-size: 2.5rem;
  color: var(--brand-mid);
  margin-bottom: 2rem;
}

.about-section .lead {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: #333;
}

.about-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 800px;
  text-align: left;
}

.about-highlights li {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  color: #444;
}

.about-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand-mid);
  font-weight: bold;
}

.commitment-text {
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto;
  color: #444;
}


/* --- CONTACT --- */
/*.contact {*/
/*  background: var(--gray);*/
/*  padding: 4rem 1rem;*/
/*  text-align: center;*/
/*}*/

/*.contact h2 {*/
/*  color: var(--brand-mid);*/
/*}*/

/*.contact-form {*/
/*  max-width: 400px;*/
/*  margin: 2rem auto 0 auto;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 1rem;*/
/*}*/

/*.contact-form input,*/
/*.contact-form textarea {*/
/*  padding: 0.75rem 1rem;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: var(--rounded);*/
/*  font-size: 1rem;*/
/*}*/

/*.contact-form button {*/
/*  background: var(--brand-mid);*/
/*  color: var(--light);*/
/*  border: none;*/
/*  padding: 0.75rem;*/
/*  border-radius: 30px;*/
/*  font-size: 1.1rem;*/
/*  font-weight: 600;*/
/*  cursor: pointer;*/
/*  transition: background 0.3s;*/
/*}*/

/*.contact-form button:hover {*/
/*  background: var(--brand-dark);*/
/*}*/

/* --- FOOTER --- */
.site-footer {
  background: #0A2342;
  color: #fff;
  padding: 3rem 1rem 1.5rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-nav a:hover {
  color: #13bfc7;
}

.footer-social a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.2s ease-in-out;
}

.footer-social a:hover {
  color: #13bfc7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-contact a:hover {
  color: #13bfc7;
}

.footer-contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #13bfc7;
  color: #0A2342;
  border: none;
  border-radius: 50%;
  padding: 0.75rem 0.85rem;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
  transition: background 0.3s ease;
}

.back-to-top:hover {
  background: #0faab1;
}

.floating-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #13bfc7;
  color: white;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.3s ease;
}

.floating-contact-btn:hover {
  background-color: #0e8a92;
  text-decoration: none;
}

html, body {
  overflow-x: hidden;
}

.nav-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    margin-top: 1rem;
  }
}

[data-aos] {
  will-change: transform, opacity;
}

@media (max-width: 800px) {
  .service-list {
    flex-direction: column;
  }

  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  
  .cta-button{
      padding: 5px;
  }
  
  a.cta-button{
      font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    max-width: 90%;
  }
  
  .carousel-wrapper {
      width: 100%;
    }
    
  .service-sub{
      margin-left: 4rem;
  }

    .badges{
        margin-top: 4.4rem;
    }

}

@media screen and (min-width: 1600px) {
  .carousel-track {
    animation-duration: 60s; /* Slows down scroll to feel continuous */
  }

  .service-card {
    min-width: 280px;
  }
}
