* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f7f9fc;
}

.header {
  /* background: linear-gradient(135deg, var(--primary-color, #7080b7) 20%, #E61A5A 80%); */

  /* background: white; */
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);

  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.header.hidden {
  top: -85px; /* Adjust this value based on your header's height */
}

.logo img {
  width: 185px;
}

.nav-menu {
  display: flex;
  list-style-type: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: #ff6e05;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 900;
  letter-spacing: 0.5px;
  position: relative;
  font-size: 18px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: rgb(187, 7, 7);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu.active {
  background: linear-gradient(135deg, #f0f4f8, #e5edf4);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: black;
}

 
.banner {
  color: white;
  padding: 8rem 1rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  object-fit: cover;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 50, 0.1) 0%,
    rgba(50, 50, 50, 0.1) 100%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

 

.banner h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  color: #fab2bf;
}

.banner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience {
  margin-top: 3rem;
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 1rem;
  }
  .logo img {
    width: 190px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #6c757d 0%, #343a40 100%);
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .hamburger {
    display: block;
  }

  .banner {
    padding-top: 6rem;
  }

  .banner h1 {
    font-size: 2.5rem;
  }

  .banner p {
    font-size: 1.1rem;
  }

  .service-item {
    font-size: 0.9rem;
  }

   
}
 
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInStagger {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowingBorder {
  0%, 100% { box-shadow: 0 0 5px rgba(58, 77, 140, 0.1), 0 0 10px rgba(58, 77, 140, 0.1), 0 0 15px rgba(58, 77, 140, 0.1); }
  50% { box-shadow: 0 0 10px rgba(58, 77, 140, 0.3), 0 0 20px rgba(58, 77, 140, 0.3), 0 0 30px rgba(58, 77, 140, 0.3); }
}

.about-us-section {
  background: linear-gradient(135deg, #f2f5fc 0%, #ffecf1 100%);
  background-size: 200% 200%;
  animation: gradientFlow 15s ease infinite;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(42, 61, 124, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230, 26, 90, 0.05) 0%, transparent 50%);
  opacity: 0.7;
  z-index: 1;
}

.about-us-header, .about-us-details {
  position: relative;
  z-index: 2;
}

.about-us-header h2 {
  font-size: 2.8rem;
  color: #3a4d8c;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInStagger 0.8s ease-out forwards;
}

.about-us-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3a4d8c, #ff6e05);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about-us-header p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInStagger 0.8s ease-out 0.2s forwards;
}

.about-us-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.detail {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  text-align: left;
  transition: transform 0.3s ease;
  opacity: 0;
  animation: 
    fadeInStagger 0.8s ease-out forwards,
    glowingBorder 2s ease-in-out infinite;
}

.detail:nth-child(1) {
  animation-delay: 0.4s, 0s;
}

.detail:nth-child(2) {
  animation-delay: 0.6s, 1s;
}

.detail:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #3a4d8c, #ff6e05);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}

.text h3 {
  font-size: 1.6rem;
  color: #3a4d8c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .about-us-details {
    flex-direction: column;
    align-items: center;
  }

  .detail {
    width: 100%;
    max-width: none;
  }
  
  .about-us-header h2 {
    font-size: 2.2rem;
  }
  
  .about-us-header p {
    font-size: 1.1rem;
  }
}
.why-choose-section {
  background: linear-gradient(135deg, #f6f9fc 0%, #e9f2f9 100%);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.why-choose-images {
  flex: 1;
  position: relative;
}

.image-grid {
  position: relative;
  width: 100%;
  height: 400px;
}

.image-main {
  width: 70%;
  height: 90%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  width: 45%;
  height: 55%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  bottom: 0;
  right: 0;
  transition: transform 0.3s ease;
}

.image-grid:hover .image-main {
  transform: scale(1.02);
}

.image-grid:hover .image-overlay {
  transform: translate(-5px, -5px);
}

.why-choose-content {
  flex: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-choose-content h2 {
  font-size: 2.2rem;
  color: #2a3d7c;
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlight {
  color:#ff6e05;
}

.why-choose-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.feature-list i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  color: #007bff;
}

.view-services-button {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  background-color: #2a3d7c;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}

.view-services-button:hover {
  background-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

@media screen and (max-width: 1024px) {
  .why-choose-section {
    flex-direction: column;
    text-align: center;
  }

  .why-choose-content {
    margin-top: 2rem;
  }

  .feature-list li {
    justify-content: center;
  }
}

@keyframes subtle-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.phone-icon {
  background-color: #3c54a5;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.phone-number {
  font-weight: 700;
  color: #3c54a5;
  font-size: 1.3rem;
  display: block;
}

.tagline {
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.enquiry-button {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #ffffff;
  background-color: #3c54a5;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(60, 84, 165, 0.2);
}

.enquiry-button span {
  margin-right: 0.5rem;
}

.enquiry-button i {
  transition: transform 0.3s ease;
}

.enquiry-button:hover {
  background-color: #e61a5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 84, 165, 0.3);
}

.enquiry-button:hover i {
  transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .phone-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.faq-section {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.faq-title {
  text-align: center;
  color: #2a3d7c;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-left,
.faq-right {
  width: 48%;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.faq-question,
.faq-answer {
  padding: 1rem;
}

.faq-question {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #f1f1f1;
}

.faq-icon {
  background-color: #2a3d7c;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.faq-answer {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }
  :root {
    --primary-color: #4153a0;
    --secondary-color: #e61a5a;
  }
}
.full-width-container {
  position: relative;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/images/story.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(3px);
}

.white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

.content-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.content-container h1 {
  color: #4153a0;
  margin: 0;
  font-size: 1.5rem;
}
.content-container h2 {
  color: #ff6e05;
}
.content-container p {
  line-height: 1.6;
  color: #34495e;
}
.quote {
  font-style: italic;
  border-left: 4px solid #ff6e05;
  padding-left: 20px;
  margin: 20px 0;
  color: #4153a0;
}
/* affiliations section */

.affiliations-container {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.affiliations-container h2 {
  color: #4153a0;
  font-size: 2.8em;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-scroll {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.logo-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-10px);
}

.logo-item:hover img {
  filter: drop-shadow(0 0 10px #ff6e05);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-item {
    width: 180px;
    height: 90px;
    margin: 0 30px;
  }
}
.cta-container {
  background-image: url("path-to-your-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(65, 83, 160, 0.9),
    rgba(255, 105, 1, 255)
  );
  pointer-events: none;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-text {
  text-align: left;
  color: #fff;
}

.cta-text h3 {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.phone-number-bottom {
  font-size: 1.3em;
  margin-bottom: 0;
  color: #fff;
}

.phone-number-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-number-bottom a:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

.cta-button {
  text-align: right;
}

.enquiry-button-bottom {
  background-color: #3c101e;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1.1em;

  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(230, 26, 90, 0.7);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.enquiry-button-bottom:hover {
  background-color: #fff;
  color: #2f0411;
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text,
  .cta-button {
    text-align: center;
    margin-bottom: 20px;
  }

  .cta-text h3 {
    font-size: 1.7em;
  }

  .phone-number-bottom {
    font-size: 1.1em;
  }
}

/*footer section*/
.site-footer {
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  color: #4153a0;
  padding: 70px 0 30px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
 
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding: 0 15px;
  position: relative;
}

.footer-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #4153a0, transparent);
}

.footer-section:last-child::after {
  display: none;
}

.footer-section h4 {
  color:#ff6e05;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ff6e05;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color:#4153a0;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-section a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ff6e05;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

.footer-section a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(65, 83, 160, 0.2);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6e05, transparent);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: #4153a0;
}

.footer-bottom a {
  color: #ff6e05;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #4153a0;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }

  .footer-section::after {
    display: none;
  }
}
.social-media {
  text-align: center;
  margin-top: 30px;
  margin-left: 488px;
}

.social-icon {
  display: inline-block;
  margin: 0 15px;
  font-size: 24px;
  color: #4153a0;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #e61a5a;
  transform: translateY(-5px);
}

.social-icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(65, 83, 160, 0.1);
  transition: all 0.3s ease;
}

.social-icon:hover i {
  background-color: #ff6e05;
  color: #fff;
}

/* Contact us Section CSS  */

.service-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  flex: 1;
  padding: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.service-box * {
  position: relative;
  z-index: 2;
}

.service-box h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-box p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.price {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price span {
  font-size: 2rem;
  font-weight: bold;
}

.view-plans,
.enquiry-button {
  width: 57%;
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.view-plans::after,
.enquiry-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(45deg);
  animation: glowEffect 3s infinite;
}
@keyframes glowEffect {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

.view-plans:hover,
.enquiry-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.view-plans:hover::after,
.enquiry-button:hover::after {
  animation: none;
}

.view-plans:hover,
.enquiry-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: none;
}

.contact-info {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-box:hover::before {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .service-section {
    flex-direction: column;
  }

  .service-box {
    min-height: 200px;
  }
}
/* back to top button */

.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(181, 160, 255);
  align-items: center;
}

.button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}
