@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 0;
  margin: 0;
  background: #ffffff;
  color: #0f0a1e;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.text-mauve {
  color: #8b5cf6;
}

.text-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-mauve {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-mauve::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-mauve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
  color: white;
  text-decoration: none;
}
.btn-mauve:hover::before {
  left: 100%;
}
.btn-mauve:active {
  transform: translateY(0);
}

.svg-icon {
  max-width: 25px;
  max-height: 25px;
  transition: transform 0.3s ease;
}

.svg-red {
  fill: #ef4444;
}

.svg-green {
  fill: #10b981;
}

.card-modern {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.float {
  animation: float 3s ease-in-out infinite;
}

#panorama {
  height: 60vh;
  width: 100%;
}

@media (max-width: 1024px) {
  #panorama {
    display: none;
  }
}
.banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.2) 0%, transparent 50%, rgba(30, 27, 75, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.banner img {
  max-height: 80vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  filter: brightness(0.9);
}

.categories {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 50%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}
.categories::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}
.categories::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}
.categories .container {
  position: relative;
  z-index: 1;
}
.categories h2 {
  padding-bottom: 3rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.categories .card {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
  height: 100%;
  position: relative;
}
.categories .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.categories .card:hover {
  transform: translateY(-20px);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}
.categories .card:hover::before {
  opacity: 0.05;
}
.categories .card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.categories .card:hover .card-header {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  transform: translateY(-5px);
}
.categories .card img {
  border-radius: 0;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.categories .card .card-header {
  text-align: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 1.5rem;
  border: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.categories .card .card-body {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.categories .card .card-body p {
  text-align: justify;
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 989px) {
  .categories {
    padding: 3rem 0;
  }
  .categories h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
  .categories .card {
    margin-bottom: 2rem;
  }
  .categories .card:hover {
    transform: translateY(-10px);
  }
  .categories .card img {
    height: 200px;
  }
  .categories .card .card-header {
    font-size: 1.3rem;
    padding: 1.2rem;
  }
  .categories .card .card-body {
    padding: 1.5rem 1rem;
  }
  .categories .card .card-body p {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .categories h2 {
    font-size: 1.5rem;
  }
  .categories .card img {
    height: 180px;
  }
  .categories .card .card-header {
    font-size: 1.1rem;
  }
}
.contactus {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f5f3ff 100%);
  position: relative;
  overflow: hidden;
}
.contactus::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.contactus::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.contactus .container {
  position: relative;
  z-index: 1;
}
.contactus .map iframe {
  padding-top: 20px;
  width: 100%;
  border-radius: 20px;
  min-height: 325px;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
  border: 3px solid white;
}

.hours {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f5f3ff 100%);
  position: relative;
  overflow: hidden;
}
.hours::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hours::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hours .container {
  position: relative;
  z-index: 1;
}
.hours h2 {
  padding-bottom: 3rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hours table {
  text-align: center;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  border: none;
}
.hours table thead {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
.hours table thead tr th {
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  padding: 1.8rem 1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.hours table thead tr th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}
.hours table thead tr th:last-child::after {
  display: none;
}
.hours table tbody tr {
  transition: all 0.3s ease;
  border: none;
}
.hours table tbody tr:hover {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}
.hours table tbody tr th {
  padding: 1.5rem 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}
.hours table tbody tr th:first-child {
  color: #8b5cf6;
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}
.hours table tbody tr th:nth-child(2) {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.3rem;
}
.hours table tbody tr th:nth-child(3) {
  color: #4a5568;
  font-weight: 500;
  font-style: italic;
}
.hours table tbody tr:last-child th {
  border-bottom: none;
}
.hours table tbody .light {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.03) 0%, rgba(99, 102, 241, 0.03) 100%);
}

@media (max-width: 989px) {
  .hours {
    padding: 3rem 0;
  }
  .hours h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
  .hours table {
    font-size: 0.9rem;
  }
  .hours table thead tr th {
    font-size: 1rem;
    padding: 1.2rem 0.5rem;
  }
  .hours table tbody tr th {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .hours table tbody tr th:first-child {
    font-size: 1rem;
  }
  .hours table tbody tr th:nth-child(2) {
    font-size: 1.1rem;
  }
  .hours table tbody tr th:nth-child(3) {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .hours h2 {
    font-size: 1.5rem;
  }
  .hours table thead tr th {
    font-size: 0.85rem;
    padding: 1rem 0.25rem;
  }
  .hours table tbody tr th {
    padding: 0.75rem 0.25rem;
    font-size: 0.8rem;
  }
  .hours table tbody tr th:nth-child(2) {
    font-size: 1rem;
  }
  .hours table tbody tr th:nth-child(3) {
    font-size: 0.75rem;
  }
}
.footer {
  padding: 4rem 0 3rem 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
.footer::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer h5 {
  text-transform: uppercase;
  padding-bottom: 1rem;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.footer p {
  text-align: justify;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.footer p i {
  color: #a78bfa;
  margin-right: 0.5rem;
}
.footer a {
  color: white;
  transition: all 0.3s ease;
  position: relative;
}
.footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  transition: width 0.3s ease;
}
.footer a:hover {
  color: #a78bfa;
  text-decoration: none;
}
.footer a:hover::after {
  width: 100%;
}
.footer .brand {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
}
.footer .brand img {
  filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.3));
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.footer .brand img:hover {
  transform: scale(1.05);
}
.footer .brand h4 {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
  padding: 1.5rem 0;
  background: rgba(15, 10, 30, 0.95);
  color: white;
  text-align: center;
}
.copyright p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.copyright a {
  color: #a78bfa;
  font-weight: 600;
  transition: all 0.3s ease;
}
.copyright a:hover {
  color: #c084fc;
  text-decoration: none;
}

@media (max-width: 989px) {
  .footer {
    padding: 3rem 0 2rem 0;
  }
  .footer h5 {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  .footer h5:first-child {
    margin-top: 0;
  }
  .footer .brand {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .footer iframe {
    max-width: 100%;
  }
}
.home {
  background: green;
  width: 100%;
}

.newsletter {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  color: #0f0a1e;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.newsletter::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}
.newsletter .container {
  position: relative;
  z-index: 1;
}
.newsletter h5 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.newsletter form {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter .input-group {
  background: white;
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.newsletter .input-group:focus-within {
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
.newsletter .input-group .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: transparent;
}
.newsletter .input-group .form-control:focus {
  box-shadow: none;
  outline: none;
}
.newsletter .input-group .form-control::-moz-placeholder {
  color: #a0a0a0;
}
.newsletter .input-group .form-control::placeholder {
  color: #a0a0a0;
}
.newsletter .input-group .input-group-prepend {
  margin-left: 0;
}
.newsletter .input-group .btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.newsletter .input-group .btn-primary:hover {
  transform: translateX(2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.newsletter .input-group .btn-primary:active {
  transform: translateX(0);
}

@media (max-width: 989px) {
  .newsletter {
    padding: 3rem 1rem;
  }
  .newsletter h5 {
    font-size: 1.5rem;
  }
  .newsletter .input-group {
    flex-direction: column;
    border-radius: 20px;
  }
  .newsletter .input-group .form-control {
    border-radius: 15px;
    margin-bottom: 0.5rem;
  }
  .newsletter .input-group .input-group-prepend {
    width: 100%;
  }
  .newsletter .input-group .input-group-prepend .btn-primary {
    width: 100%;
    border-radius: 15px;
  }
}
.promo {
  text-align: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  padding: 2rem 0;
  color: white;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}
.promo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}
.promo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}
.promo p {
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@media (max-width: 989px) {
  .promo {
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 576px) {
  .promo {
    font-size: 1.2rem;
  }
}
.services {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f5f3ff 100%);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.services::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services h2 {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1.4;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
  background-color: white;
}
.services h2::before {
  content: "🚀";
  display: block;
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.slideshow {
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.3) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(30, 27, 75, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}
.slideshow .carousel-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.slideshow img {
  max-height: 90vh;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 8s ease-out;
}
.slideshow .carousel-item.active img {
  animation: kenBurns 8s ease-out;
}
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.slideshow .carousel-control-prev,
.slideshow .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 3;
}
.slideshow .carousel-control-prev:hover,
.slideshow .carousel-control-next:hover {
  opacity: 1;
  background: rgba(139, 92, 246, 0.6);
  transform: translateY(-50%) scale(1.1);
}
.slideshow .carousel-control-prev .carousel-control-prev-icon,
.slideshow .carousel-control-prev .carousel-control-next-icon,
.slideshow .carousel-control-next .carousel-control-prev-icon,
.slideshow .carousel-control-next .carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.slideshow .carousel-control-prev {
  left: 30px;
}
.slideshow .carousel-control-next {
  right: 30px;
}
.slideshow .details {
  padding: 3rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 27, 75, 0.8) 30%, rgba(30, 27, 75, 0.95) 100%);
  backdrop-filter: blur(10px);
  text-align: center;
  position: absolute;
  z-index: 3;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.slideshow .details h4 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}
.slideshow .details h4 span {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
.slideshow .details p {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.95;
}

@media (max-width: 989px) {
  .slideshow img {
    min-height: 400px;
    max-height: 60vh;
  }
  .slideshow .carousel-control-prev,
  .slideshow .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  .slideshow .carousel-control-prev {
    left: 15px;
  }
  .slideshow .carousel-control-next {
    right: 15px;
  }
  .slideshow .details {
    padding: 2rem 1rem;
  }
  .slideshow .details h4 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .slideshow .details p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .slideshow .details h4 {
    font-size: 1.5rem;
  }
}
.subscriptions {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}
.subscriptions h2 {
  padding-bottom: 3rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.subscriptions .table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}
.subscriptions .table thead {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
.subscriptions .table thead th {
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 1.5rem 1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.subscriptions .table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}
.subscriptions .table tbody tr:hover {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}
.subscriptions .table tbody tr:last-child {
  border-bottom: none;
}
.subscriptions .table tbody tr td {
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
  vertical-align: middle;
  border: none;
}
.subscriptions .table tbody tr td:first-child {
  font-weight: 700;
  color: #8b5cf6;
  font-size: 1.2rem;
}
.subscriptions .table tbody tr td:nth-child(2) {
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subscriptions .card {
  margin-bottom: 2rem;
  border: none;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.subscriptions .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.25);
}
.subscriptions .card .card-header {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 0;
  padding: 2rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.subscriptions .card .econo {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}
.subscriptions .card .card-body {
  padding: 2.5rem;
}
.subscriptions .card .card-body h3 {
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 2.5rem;
}
.subscriptions .card .card-body p {
  text-align: center;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 989px) {
  .subscriptions {
    padding: 3rem 0;
  }
  .subscriptions h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
  .subscriptions .table {
    font-size: 0.9rem;
  }
  .subscriptions .table thead th {
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
  .subscriptions .table tbody tr td {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .subscriptions .table tbody tr td:first-child {
    font-size: 1rem;
  }
  .subscriptions .table tbody tr td:nth-child(2) {
    font-size: 1.2rem;
  }
  .subscriptions .card .card-header {
    font-size: 1.4rem;
    padding: 1.5rem;
  }
  .subscriptions .card .card-body {
    padding: 2rem;
  }
  .subscriptions .card .card-body h3 {
    font-size: 2rem;
  }
  .subscriptions .card .card-body p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .subscriptions h2 {
    font-size: 1.5rem;
  }
  .subscriptions .table thead th {
    font-size: 0.85rem;
    padding: 0.75rem 0.25rem;
  }
  .subscriptions .table tbody tr td {
    padding: 0.75rem 0.25rem;
    font-size: 0.85rem;
  }
  .subscriptions .table tbody tr td:nth-child(2) {
    font-size: 1.1rem;
  }
}
.whyus {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #f5f3ff 100%);
  position: relative;
  overflow: hidden;
}
.whyus::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.whyus::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
.whyus .container {
  position: relative;
  z-index: 1;
}
.whyus > .container > p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 4rem;
  padding: 0 1rem;
}
.whyus > .container > p b {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.whyus .row {
  margin-top: 2rem;
}
.whyus .reason {
  padding: 2rem 1rem;
  margin: 1rem 0;
  border-radius: 20px;
  background: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
}
.whyus .reason::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.whyus .reason:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
}
.whyus .reason:hover::before {
  opacity: 1;
}
.whyus .reason:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 10px 20px rgba(139, 92, 246, 0.4));
}
.whyus .reason:hover h4 {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.whyus .reason img {
  padding-bottom: 1rem;
  max-width: 80px;
  height: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}
.whyus .reason h4 {
  color: #8b5cf6;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  line-height: 1.4;
}

@media (max-width: 989px) {
  .whyus {
    padding: 3rem 0;
  }
  .whyus > .container > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .whyus .reason {
    padding: 1.5rem 0.5rem;
    margin: 0.5rem 0;
  }
  .whyus .reason:hover {
    transform: translateY(-10px) scale(1.02);
  }
  .whyus .reason img {
    max-width: 60px;
  }
  .whyus .reason h4 {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}
@media (max-width: 576px) {
  .whyus .reason img {
    max-width: 50px;
  }
  .whyus .reason h4 {
    font-size: 0.9rem;
  }
}
.top {
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.top.scrolled {
  background: rgba(30, 27, 75, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.top .navbar {
  padding: 1rem 0;
}
.top .navbar-brand {
  transition: transform 0.3s ease;
}
.top .navbar-brand:hover {
  transform: scale(1.05);
}
.top .navbar-brand img {
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
  transition: filter 0.3s ease;
}
.top a {
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.top a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.top a:hover {
  color: #a78bfa;
  text-decoration: none;
}
.top a:hover::before {
  width: 80%;
}
.top .active {
  color: #a78bfa;
}
.top .active::before {
  width: 80%;
}
.top ul li {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  position: relative;
}
.top .navbar-toggler {
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 10px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.top .navbar-toggler:hover {
  border-color: #a78bfa;
  background: rgba(139, 92, 246, 0.1);
}
.top .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}
.top .navbar-toggler img {
  filter: brightness(0) invert(1);
  width: 24px;
  height: 24px;
}

@media (max-width: 989px) {
  .top {
    position: sticky;
  }
  .top .navbar-collapse {
    background: rgba(30, 27, 75, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
  }
  .top .nav-item {
    margin: 0.5rem 0;
    text-align: center;
  }
  .top .nav-item a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }
  .top .nav-item a:hover {
    background: rgba(139, 92, 246, 0.2);
  }
}
