.hr-hero * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hr-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1c1c2b);
  background-size: 400% 400%;
  animation: hr-gradientBG 15s ease infinite;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hr-hero .hr-overlay {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 80%);
  animation: hr-move-bg 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.hr-hero .hr-hero-content {
  max-width: 800px;
  padding: 0 1rem;
  z-index: 2;
}

.hr-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.hr-hero p {
  font-size: 1.4rem;
  margin-top: 1rem;
  color: #ccc;
  font-weight: bolder;
}

.hr-hero .hr-buttons {
  margin-top: 2rem;
}

.hr-hero .hr-btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hr-hero .hr-btn.hr-primary {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

.hr-hero .hr-btn.hr-primary:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
  transform: scale(1.05);
}

.hr-hero .hr-btn.hr-secondary {
  background: transparent;
  border: 2px solid #00c6ff;
  color: #00c6ff;
}

.hr-hero .hr-btn.hr-secondary:hover {
  background: #00c6ff;
  color: #fff;
  transform: scale(1.05);
}

.hr-hero .hr-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: hr-fadeInUp 1s forwards;
}

.hr-hero .hr-fade-in.hr-delay-1 {
  animation-delay: 0.5s;
}

.hr-hero .hr-fade-in.hr-delay-2 {
  animation-delay: 1s;
}

.hr-hero .hr-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hr-hero .hr-hex {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(0, 198, 255, 0.15);
  clip-path: polygon(
    25% 0%, 75% 0%,
    100% 50%, 75% 100%,
    25% 100%, 0% 50%
  );
  animation: hr-floatHex 20s linear infinite;
}

.hr-hero .hr-hex1 { top: 10%; left: 15%; animation-delay: 0s; }
.hr-hero .hr-hex2 { top: 60%; left: 25%; animation-delay: 5s; }
.hr-hero .hr-hex3 { top: 30%; left: 80%; animation-delay: 10s; }
.hr-hero .hr-hex4 { top: 80%; left: 60%; animation-delay: 15s; }
.hr-hero .hr-hex5 { top: 50%; left: 40%; animation-delay: 2s; }

@keyframes hr-gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hr-move-bg {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hr-floatHex {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-200px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes hr-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hr-hero h1 {
    font-size: 2.25rem;
  }

  .hr-hero p {
    font-size: 1rem;
  }

  .hr-hero .hr-btn {
    margin: 0.5rem 0.25rem;
    padding: 0.65rem 1.25rem;
  }
}


/* Scoped About Section Styles */
#about {
  position: relative;
  background-color: #f7f7f7;
  color: #333;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin-top: 0;
}

#about .content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 10px; /* Adjust this to control vertical space */
  z-index: 3;
  position: relative;
}

#about .main-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #00bcd4, #ff4081);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#about .main-title:hover {
  transform: scale(1.05);
}

#about .subtext {
  font-size: 1.3rem;
  color: #555;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.85;
}

#about .button-container {
  margin-top: 20px;
}

#about .redirect-link {
  padding: 12px 30px;
  background-color: transparent;
  color: #00bcd4;
  font-size: 1.1rem;
  font-weight: 500;
  border: 2px solid #00bcd4;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

#about .redirect-link:hover {
  background-color: #00bcd4;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

#about .hexagon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0l50 25v50l-50 25-50-25v-50z" fill="%23dce2e9" fill-opacity="0.3"/></svg>');
  background-size: 80px 80px;
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  #about .main-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
    max-width: 350px;
    margin: 0 auto 10px;
  }

  #about .subtext {
    font-size: 1.2rem;
    max-width: 350px;
  }

  #about .redirect-link {
    padding: 12px 20px;
  }

  #about .content-wrapper {
    padding: 60px 15px; /* slightly more vertical padding on small screens */
  }
}





/* Scoped to .sr-services-section only */
.sr-services-section {
  background: linear-gradient(135deg, #eeeeee, #dcdcdc);

  padding: 30px 0 60px; /* Reduced top padding from 60px to 30px */
}

.sr-services-section .sr-container {
  width: 85%;
  margin: 0 auto;
  max-width: 1100px;
}

.sr-services-section .sr-section-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-top: 0;          /* Remove any unintended top margin */
  margin-bottom: 15px;
}

.sr-services-section .sr-subheading {
  text-align: center;
  font-size: 22px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sr-services-section .sr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.sr-services-section .sr-service-card {
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sr-services-section .sr-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sr-services-section .sr-service-icon {
  font-size: 40px;
  color: #222;
  margin-bottom: 15px;
}

.sr-services-section .sr-service-title {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.sr-services-section .sr-service-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.sr-services-section .sr-cta-button-container {
  text-align: center;
  margin-top: 50px;
}

.sr-services-section .sr-cta-button {
  background-color: #3498db;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sr-services-section .sr-cta-button:hover {
  background-color: #2980b9;
}

/* Responsive */
@media (max-width: 768px) {
  .sr-services-section .sr-section-title {
    font-size: 25px;
  }

  .sr-services-section .sr-subheading {
    font-size: 18px;
  }

  .sr-services-section .sr-cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}



/* General styles for the section */
.wc-why-choose-us {
  width: 100%;
  background: linear-gradient(135deg, #0f0f1c, #1a1a2e);
  padding: 30px 20px;
  color: #e0e0e0;
  box-sizing: border-box; /* Prevent overflow */
}

/* Container styling */
.wc-why-choose-us .wc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

/* Heading styling */
.wc-why-choose-us h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.wc-why-choose-us h2 span {
  color: #00f6ff;
}

/* Subtitle styling */
.wc-why-choose-us .wc-subtitle {
  color: #a0a0a0;
  font-size: 22px;
  margin-bottom: 50px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid for features */
.wc-why-choose-us .wc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Ensure cards are responsive */
  gap: 30px;
}

/* Feature card styling */
.wc-why-choose-us .wc-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  text-align: center; /* Center content */
}

/* Hover effect */
.wc-why-choose-us .wc-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

/* Icon styling */
.wc-why-choose-us .wc-icon {
  font-size: 2.5rem;
  color: #00f6ff;
  margin-bottom: 20px;
  animation: wc-glow 1.8s infinite ease-in-out;
}

@keyframes wc-glow {
  0% { text-shadow: 0 0 5px #00f6ff; }
  50% { text-shadow: 0 0 15px #00f6ff; }
  100% { text-shadow: 0 0 5px #00f6ff; }
}

/* Card title and text styling */
.wc-why-choose-us .wc-feature-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.wc-why-choose-us .wc-feature-card p {
  color: #cfcfcf;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 600px) {
  .wc-why-choose-us h2 {
    font-size: 2rem;
  }

  .wc-why-choose-us .wc-subtitle {
    font-size: 1rem;
  }

  .wc-why-choose-us .wc-icon {
    font-size: 2rem;
  }

  .wc-why-choose-us .wc-feature-card {
    padding: 20px;
  }
}

/* Ensure there is no horizontal overflow */
body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
}





.testimonials-slideshow {
  width: 100%;
  background: linear-gradient(135deg, #ddd 0%, #f1f1f1 100%);
  padding: 2rem 1.5rem;
  font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonials-slideshow .background-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-slideshow .shape-1 {
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, #2b6cb0 0%, transparent 70%);
  animation: float1 12s ease-in-out infinite;
}

.testimonials-slideshow .shape-2 {
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, #f6ad55 0%, transparent 70%);
  animation: float2 15s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(15px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(-20px); }
}

.testimonials-slideshow h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonials-slideshow .slides-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
  position: relative;
  z-index: 1;
}

.testimonials-slideshow .slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonials-slideshow .testimonial-card {
  background-color: #fff;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.testimonials-slideshow .testimonial-card p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.testimonials-slideshow .testimonial-author .name {
  font-weight: 600;
  color: #1a202c;
}

.testimonials-slideshow .stars {
  color: #f6ad55;
  margin-bottom: 1rem;
}

.testimonials-slideshow .dots {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.testimonials-slideshow .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #cbd5e0;
  border-radius: 50%;
  cursor: pointer;
}

.testimonials-slideshow .dot.active {
  background-color: #2b6cb0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonials-slideshow {
    padding: 3rem 1rem;
  }

  .testimonials-slideshow h2 {
    font-size: 1.5rem;
  }

  .testimonials-slideshow .testimonial-card {
    padding: 1.5rem;
    max-width: 90%;
  }

  .testimonials-slideshow .testimonial-card p {
    font-size: 1rem;
  }

  .testimonials-slideshow .stars {
    font-size: 1.2rem;
  }

  .testimonials-slideshow .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .testimonials-slideshow {
    padding: 2rem 1rem;
  }

  .testimonials-slideshow h2 {
    font-size: 1.25rem;
  }

  .testimonials-slideshow .testimonial-card {
    padding: 1rem;
    max-width: 100%;
  }

  .testimonials-slideshow .testimonial-card p {
    font-size: 0.9rem;
  }

  .testimonials-slideshow .dots {
    display: none;
  }
}
