/* Navbar background and links hover effect */
.custom-navbar {
  background: linear-gradient(45deg, #1f4037, #99f2c8);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: sticky; /* Makes the navbar sticky */
  top: 0; /* Sticks the navbar to the top */
  z-index: 1000; /* Ensures the navbar stays on top of other content */
}

/* Nav link styling */
.custom-navbar .nav-link {
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

/* Hover effect for nav links */
.custom-navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  color: #f2f2f2;
  transform: scale(1.05);
}

/* Active link effect */
.custom-navbar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Search button styling */
.custom-btn {
  color: white;
  border-color: #28a745;
  transition: all 0.3s ease;
}

/* Search button hover effect */
.custom-btn:hover {
  background-color: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
  color: white;
}

/* Search input styling */
.form-control {
  border-radius: 20px;
  border: 2px solid #28a745;
  box-shadow: inset 0 0 10px rgba(40, 167, 69, 0.3);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
}

/* Navbar Brand Logo */
.navbar-brand img {
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Logo hover effect */
.navbar-brand img:hover {
  transform: rotate(360deg);
}

/* Navbar background shine effect */
.custom-navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
  opacity: 0;
}

.custom-navbar:hover::after {
  left: 150%;
  opacity: 1;
}
/* navbar end */
  

  /* carousel start */
/* General Carousel Styling */
.carousel-inner img {
  width: 100%;
  height: 80vh;
  object-fit: contain; /* Changed to 'contain' to avoid cutting images */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background-color: #09aa74;
}

.carousel {
  margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
  background-color: #7c4dff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #ffd700;
  width: 12px;
  height: 12px;
}

/* Controls Styling */
.carousel-control-prev, 
.carousel-control-next {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
}

/* Media Queries for Mobile */
@media only screen and (max-width: 768px) {
  .carousel-inner img {
      height: 60vh; /* Slightly reduce height on tablets */
  }
}

@media only screen and (max-width: 480px) {
  .carousel-inner img {
      height: 50vh; /* Further reduce height on mobile phones */
  }
}
/* carsoule end */
/* section start */
.custom-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.custom-image-hover img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.custom-image-hover:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Custom Text Section */
.custom-text-section .custom-card-body {
  padding: 20px;
}

.custom-title {
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.custom-subtitle {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.custom-description {
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Shine Effect on Heading */
.custom-title:hover {
  color: #007bff;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}

/* Responsive Padding for Small Devices */
@media (max-width: 768px) {
  .custom-title {
    font-size: 2rem;
  }

  .custom-description {
    font-size: 1rem;
  }
}
/* section end */


/* Blink Section End */

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

/* Yellow label styling */
.yellow-label {
  background-color: #FFD700; /* Yellow background */
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  animation: blink 0.5s infinite; /* Faster blinking effect */

  
}

/* Project image styling */
.project-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  
}

.blink-text {
  color: yellow;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Payment plan styling */
.pay-plan {
  background-color: black;
  color: white;
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  animation: blink 0.5s infinite; /* Faster blinking effect */

}

/* Payment now styling */
.pay-now {
  color: #FFD700; /* Yellow text */
  font-size: 36px;
  font-weight: bold; /* Make text bold */
  animation: blink 0.5s infinite; /* Faster blinking effect */
}

/* Possession styling */
.pay-possession {
  color: #FFD700; /* Yellow text */
  font-size: 36px;
  font-weight: bold; /* Make text bold */
  animation: blink 0.5s infinite; /* Faster blinking effect */
}

/* Project highlights styling */
.project-highlights {
  background-color: white;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

/* Highlights list styling */
.project-highlights ul {
  list-style-type: none;
  padding: 0;
}

/* Highlights list item styling */
.project-highlights li {
  margin: 10px 0;
}

/* Price styling */
.price {
  background-color: orange;
  color: white;
  margin-top: 20px;
  padding: 15px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  position: relative; /* Position relative for pop-up */
  overflow: hidden; /* Hide overflow for the pop-up effect */
  animation: blink 0.5s infinite; /* Faster blinking effect */

}
/* Fast Blinking animation */
@keyframes blink {
  0%, 50%, 100% {
      opacity: 1;
  }
  25%, 75% {
      opacity: 0;
  }
}

/* Pop-up animation */
@keyframes pop-up {
  0% {
      transform: translateX(-50%) translateY(20px);
      opacity: 0;
  }
  100% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pay-now, .pay-possession {
      font-size: 24px; /* Smaller text on mobile */
  }
  
  .price {
      font-size: 20px; /* Adjust price font size on mobile */
  }
}

/* Blink Section End */




/* Card Start */

/* Main text styling */
h2 {
  color: #333;
  font-size: 2.5rem;
}

.text-highlight {
  color: #f39c12;
}

/* Image container for the shining effect */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Increased shadow for depth */
  transition: transform 0.3s ease; /* Smooth scaling effect */
}

.image-container img {
  width: 100%;
  height: 60vh; /* Reduced height for better visuals */
  border-radius: 10px;
  transition: transform 0.3s ease;
  object-fit: cover; /* Ensure proper image scaling */
}

/* Hover effect for the image */
.image-container:hover {
  transform: scale(1.03); /* Slight scaling for emphasis */
}

/* Rotate the image slightly on hover */
.image-container:hover img {
  transform: scale(1.05) rotate(5deg); /* Subtle rotation */
}

/* Shining effect */
.image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(25deg);
  transition: 0.5s;
  opacity: 0;
}

.image-container:hover::before {
  left: 150%;
  opacity: 1;
}

/* Dark overlay for visual enhancement */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Darker overlay for more contrast */
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s;
}

.image-container:hover .overlay {
  opacity: 0.5; /* Increase opacity on hover for more visibility */
}

/* Text inside the image container */
.text-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.image-container:hover .text-container {
  transform: translateY(-10px); /* Slightly lift text on hover */
  color: #f39c12; /* Change text color on hover */
}

/* Mobile responsive text */
@media (max-width: 768px) {
  h2 {
      font-size: 2rem;
  }

  p {
      font-size: 1rem;
  }

  .image-container img {
      height: 50vh; /* Further reduce height on smaller screens */
  }

  .image-container {
      border-radius: 8px; /* Adjust rounding for smaller screens */
  }

  .text-container {
      bottom: 15px;
      left: 15px;
  }
}

@media (max-width: 480px) {
  h2 {
      font-size: 1.8rem;
  }

  p {
      font-size: 0.9rem;
  }

  .image-container img {
      height: 40vh; /* Reduced height for smaller devices */
      object-fit: cover;
  }

  .text-container {
      bottom: 10px;
      left: 10px;
  }
}

/* Card End */



.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col-md-6 {
  flex-basis: 50%;
  margin-bottom: 20px;
  text-align: center; /* Center text within the column */
}

.img-fluid {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.5s ease; /* Smooth transition for hover effect */
}

/* Image hover effect */
.img-fluid:hover {
  transform: rotateY(20deg); /* Slight rotation effect on hover */
}

/* Adding a rotation effect on the other side */
.col-md-6:hover .img-fluid {
  transform: rotateY(-15deg); /* Rotate in the opposite direction when hovered */
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333; /* Optional: Change text color */
}

/* Additional styling for paragraphs, if needed */
p {
  color: #555; /* Change paragraph text color */
  margin: 0; /* Remove default margin */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .col-md-6 {
    flex-basis: 100%; /* Stacks columns on small screens */
  }

  h2 {
    font-size: 20px; /* Slightly smaller font size on mobile */
  }

  p {
    font-size: 14px; /* Adjust paragraph font size on mobile */
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 18px; /* Further reduce heading size on smaller devices */
  }

  p {
    font-size: 12px; /* Further reduce paragraph size on smaller devices */
  }
}


/* Unique Testimonial Section Styling */
.nexus-testimonial-section {
  background: url('real-estate-bg.jpg') no-repeat center center/cover, linear-gradient(135deg, #24d39e 0%, #0bc9a9 100%);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Add subtle glowing animation to the background */
.nexus-testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(136, 209, 17, 0.2), rgba(201, 223, 9, 0) 70%);
  animation: backgroundGlow 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes backgroundGlow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.nexus-testimonial-section h2 {
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

/* Style for the client image with shine effect */
.nexus-client-img {
  width: 120px;
  height: 120px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(156, 149, 149, 0.3), 0 0 15px rgba(255, 255, 255, 0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.15); /* Subtle background on hover */
  overflow: hidden;
}

.nexus-client-img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(104, 223, 157, 0.5), 0 0 30px rgba(8, 194, 123, 0.8);
  filter: brightness(1.2);
}

/* Testimonial Text Styling with limited box width */
.nexus-testimonial-text {
  font-size: 1.1rem;
  margin-top: 15px;
  padding: 15px 25px;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-shadow: 0 0 10px rgba(21, 189, 124, 0.5);
  box-shadow: 0 0 10px rgba(7, 175, 105, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.nexus-testimonial-text:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

/* Shine effect on client names */
h5 {
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(17, 212, 147, 0.7);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

h5:hover {
  color: #ffdd57;
  text-shadow: 0 0 30px rgba(255, 221, 87, 0.9);
}

/* Auto Scroll for Carousel */
#nexusTestimonialCarousel {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
}

#nexusTestimonialCarousel .carousel-inner {
  transition: transform 0.5s ease-in-out;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .nexus-client-img {
    width: 90px;
    height: 90px;
  }

  .nexus-testimonial-section h2 {
    font-size: 2rem;
  }

  .nexus-testimonial-text {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* Optional Sparkling Effect */
.nexus-testimonial-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(41, 241, 158, 0.2), transparent 70%);
  transform: rotate(45deg);
  animation: sparkle 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes sparkle {
  0% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.2); }
  100% { transform: rotate(45deg) scale(1); }
}



/* Fact Section Styling */
.fact-section {
  padding: 60px 0;
  background-color: #f5f5f5; /* Light grey background */
}

.fact-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: white; /* White background for the boxes */
}

.fact-box:hover {
  transform: translateY(-10px); /* Lift effect on hover */
}

.fact-box .icon {
  font-size: 3rem;
  color: #f39c12; /* Icon color */
}

h2.counter {
  font-size: 2.5rem;
  color: #333;
  margin: 10px 0;
  transition: color 0.3s ease;
}

h2.counter:hover {
  color: #f39c12; /* Color change on hover */
}

.title {
  font-size: 1.2rem;
  color: #777;
}

/* Responsive Styling */
@media (max-width: 768px) {
  h2.counter {
      font-size: 2rem;
  }

  .fact-box {
      padding: 15px;
  }
}
/* Fact Section Styling end */

/* enquery section start*/

body {
  /* background-color: #16222A; */
  font-family: 'Arial', sans-serif;
}

/* Image Hover Effect */
.image-container1 {
  overflow: hidden;
  border-radius: 15px;
  
}

.hover-zoom {
  transition: transform 0.5s ease;
}

.hover-zoom:hover {
  transform: scale(1.1); /* Zoom effect on hover */
}

/* Paragraph Hover Effect */
.paragraph-hover {
  padding: 15px;
  transition: all 0.3s ease;
}

.paragraph-hover:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Light background on hover */
  color: #FFD700; /* Change text color on hover */
  border-radius: 10px;
  transform: scale(1.02);
}

/* Word-by-Word Text Animation */
.word {
  opacity: 0;
  display: inline-block;
  animation: fadeInWord 0.5s forwards;
}

.word:nth-child(1) {
  animation-delay: 0.1s;
}

.word:nth-child(2) {
  animation-delay: 0.2s;
}

.word:nth-child(3) {
  animation-delay: 0.3s;
}

.word:nth-child(4) {
  animation-delay: 0.4s;
}

.word:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInWord {
  0% {
      opacity: 0;
      transform: translateY(10px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Paragraph Display Animation */
.paragraph {
  opacity: 0;
  animation: fadeInParagraph 0.5s forwards;
  margin-bottom: 20px; /* Add some spacing between paragraphs */
}

.paragraph:nth-child(1) {
  animation-delay: 1s; /* Delay for the first paragraph */
}

.paragraph:nth-child(2) {
  animation-delay: 1.5s; /* Delay for the second paragraph */
}

.paragraph:nth-child(3) {
  animation-delay: 2s; /* Delay for the third paragraph */
}

.paragraph:nth-child(4) {
  animation-delay: 2.5s; /* Delay for the fourth paragraph */
}

@keyframes fadeInParagraph {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Call Now Button */
.call-btn {
  background-color: #FF0000;
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.4s;
  animation: blink 1.5s infinite; /* Blinking effect */
  z-index: 10;
}

.call-btn i {
  font-size: 1.5rem; /* Icon size */
}

/* Hover effect for Call Now button */
.call-btn:hover {
  background-color: #FF4500;
  box-shadow: 0 10px 20px rgba(255, 69, 0, 0.7);
  transform: scale(1.1);
  color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.4s;
  animation: blink 1.5s infinite; /* Blinking effect */
  z-index: 10;
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

/* Hover effect for WhatsApp button */
.whatsapp-btn:hover {
  background-color: #20c157; /* Darker green on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
  color: white;
}

/* Responsive layout for buttons */
@media (max-width: 767px) {
  .call-btn, .whatsapp-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Blink effect */
@keyframes blink {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7), 0 0 30px rgba(37, 211, 102, 0.5);
  }
}

/* Styling for the container of buttons */
.mt-4 {
  margin-top: 2rem;
}

.d-flex {
  display: flex;
}

.gap-3 {
  gap: 1rem;
}

.justify-content-center {
  justify-content: center;
}

/* enquery section end */






/* slider start */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  animation: slide 15s linear infinite;
}

.slider img {
  width: 100%; /* Full width of the card */
  height: 100%; /* Full height of the card */
  object-fit: cover; /* Ensures the image covers the entire card without stretching */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect to enlarge and shine the image */
.slider img:hover {
  transform: scale(1.1); /* Slightly enlarges the image on hover */
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.5); /* Glowing gold effect */
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* To handle smoother sliding and duplication */
.slider .slide-item {
  min-width: 100%; /* Each slide takes the full width */
  display: flex;
}

/* Add shining glow effect to the entire slider when hovered */
.slider-container:hover .slider {
  animation-play-state: paused; /* Pauses sliding when hovering */
}

.slider-container:hover .slider img:hover {
  animation: shine 1s forwards; /* Adds shine effect on hover */
}

@keyframes shine {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 223, 0, 0.8), 0 0 60px rgba(255, 223, 0, 0.6);
  }
}

/* Card section styles */
.card {
  height: 200px; /* Set a fixed height for the card section */
  width: 100%; /* Full width for responsiveness */
  display: flex;
  align-items: center; /* Center the content vertically */
  justify-content: center; /* Center the content horizontally */
  border-radius: 10px; /* Optional: Add some rounded corners */
  overflow: hidden; /* Ensure overflow is hidden for better appearance */
  box-shadow: 0 0 10px rgba(241, 235, 235, 0.1); /* Optional: Add a subtle shadow */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .card {
    height: 150px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 576px) {
  .card {
    height: 120px; /* Further adjust height for extra small screens */
  }
}

/* slider end */


/* footer start */
/* Make footer full-width and add a shine effect */
.container-fluid.p-0 {
  width: 100%;
  padding: 0;
}

footer {
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  transition: all 1.5s ease;
  opacity: 0;
}

footer:hover::before {
  left: 150%;
  opacity: 1;
}

/* Footer content styling */
footer h6 {
  font-size: 16px;
  font-weight: bold;
}

footer p, footer a {
  font-size: 14px;
  color: #333;
}

footer a:hover {
  color: #7c4dff;
  text-decoration: none;
}

footer .fab {
  font-size: 20px;
  animation: blink 1.5s infinite; /* Blink animation for social icons */
}

footer .fab:hover {
  color: #7c4dff;
}

/* Blink animation */
@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5; /* Make icons semi-transparent */
  }
}

footer .btn {
  animation: blink-button 1.5s infinite; /* Blink animation for subscribe button */
}

footer .btn:hover {
  color: #7c4dff; /* Change color on hover */
}

/* Blink button animation */
@keyframes blink-button {
  0%, 100% {
      background-color: #007bff; /* Original background color */
      color: white; /* Original text color */
  }
  50% {
      background-color: #0056b3; /* Change background color on blink */
      color: #e0e0e0; /* Change text color on blink */
  }
}

/* Adjust padding for footer sections */
footer .container {
  max-width: 100%;
  padding: 30px;
}

.blog-post {
  margin-bottom: 20px; /* Space between blog posts */
}

.blog-post img {
  max-width: 100%; /* Responsive blog image */
  height: auto; /* Maintain aspect ratio */
}

.blog-post p {
  margin: 5px 0; /* Space between title and date */
}

.footer-logo {
  max-width: 150px; /* Adjust logo size */
}

.blog-post {
  margin-bottom: 20px; /* Space between blog posts */
}

.blog-post img {
  max-width: 100%; /* Responsive blog image */
  height: auto; /* Maintain aspect ratio */
}

.blog-post p {
  margin: 5px 0; /* Space between title and date */
}





@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

.slider1 {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider1 .slide-track {
  display: flex;
  width: calc(250px * 14); /* 7 images + 7 duplicates for smooth scrolling */
  animation: scroll 40s linear infinite; /* Adjust animation speed here */
}

.slider1 .slide {
  width: 250px;
  height: 100px;
  flex-shrink: 0;
  margin-right: 10px; /* Optional: Add spacing between slides */
}

.slider1 .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the images are properly scaled */
  border-radius: 10px; /* Optional: Add rounded corners */
}









body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.review-section {
  padding: 100px 20px;
  box-shadow: inset 0 0 100px rgba(0, 123, 255, 0.1);
  border-top: 2px solid #007bff33;
  border-bottom: 2px solid #007bff33;
}

.review-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 60px;
  color: #00bfff;
  text-shadow: 0 0 12px #00bfff, 0 0 20px #0099cc;
  font-weight: 800;
  letter-spacing: 2px;
  animation: glowTitle 2s infinite alternate;
}

@keyframes glowTitle {
  from {
    text-shadow: 0 0 8px #00bfff, 0 0 16px #0099cc;
  }
  to {
    text-shadow: 0 0 22px #00ccff, 0 0 35px #00bfff;
  }
}

.review-card {
  background: rgba(0, 123, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(0, 123, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.15), 0 0 10px rgba(0, 123, 255, 0.1) inset;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #0099cc33, #007bff66, #0099cc33);
  animation: rotate 6s linear infinite;
  z-index: 0;
  filter: blur(25px);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.review-card > * {
  position: relative;
  z-index: 2;
}

.review-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(0, 153, 255, 0.6), 0 0 20px rgba(0, 153, 255, 0.2) inset;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.2);
  border: 2px solid #007bff33;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.client-name {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 20px;
  color: #00bfff;
  text-shadow: 0 0 8px #00bfff99;
  letter-spacing: 1px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease forwards;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.3s;
}
.fade-in-up:nth-child(3) {
  animation-delay: 0.6s;
}
.fade-in-up:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .review-title {
    font-size: 2.2rem;
  }
}
