:root {
  --primary: #131173;
  --secondary: #de208a;
  --accent: #6b7280;
}

/* Custom animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(19, 17, 115, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(19, 17, 115, 0.6);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-animation {
  animation: float 6s ease-in-out infinite;
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.project-chic {
  background-color: #ffe5f3;
  color: #de208a;
  padding: 3px 12px;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.project-chic:hover {
  transform: scale(1.05);
  background-color: #de208a;
  color: white;
}

/* Carousel Styles */
.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  flex: 0 0 90%;
  max-width: 90%;
  transition: all 0.4s ease;
  opacity: 0.7;
  transform: scale(0.85);
  margin: 0 auto;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.carousel-slide.active .testi-card {
  background-color: #eef2ff;
  border: 1px solid var(--primary);
}
.carousel-slide.active .testi-quote{
  color: #111827;
}
@media (min-width: 640px) {
  .carousel-slide {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background-color: #131173;
  width: 12px;
  height: 12px;
  transform: scale(1.2);
}

.carousel-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 5px;
}

.carousel-button:hover {
  transform: scale(1.1);
}

/* Counter Animation */
.counter {
  font-weight: bold;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .counter {
    font-size: 2rem;
  }
}

/* Loading animation */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.about-image, .about-us-item {
  transition: all 1s ease-in;
}

.about-us-item:hover .about-image {
  transform: scale(1.1);
}

.about-us-item {
  background-color: #ffffff; /* base */
  border: 1px solid transparent;
  transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  border-radius: 0.75rem;
  padding-bottom: 1rem;
}

.about-us-item:hover {
  background-color: #eef2ff;
  border-color: #eef2ff;
}

.service-item {
  transition: all 0.3s ease-in;
}

.service-item:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.why-choose-point {
  transition: all 0.15s ease-in;
  font-family: "Inter", sans-serif !important;
}

.why-choose-point:hover {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.why-choose-point > div {
  height: 100%;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.contact-left {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
              url('/assets/home/contact-us.webp') center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}

.contact-left h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-text {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-left {
    background: #F4F4FF;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
  }
  

  .contact-left {
    order: 2;  
  }

  .contact-right {
    order: 1; 
  }
  .contact-text {
    font-size: 0.9rem; 
  }
}

@media (max-width: 480px) {
 
  .contact-info {
    gap: 20px;
  }

  .contact-item {
    gap: 12px;
  }
  .contact-text {
    font-size: 0.8rem; 
  }
  .contact-left {
    background: #F4F4FF;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
