/* Hero Slider Styles - Professional Centered Design */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(0, 0, 0, 0.5));
}

/* Centered Content Card */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 90%;
  color: #fff;
  z-index: 2;
  opacity: 0;
  padding: 50px 45px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.slide.active .slide-content {
  animation: fadeInScale 0.8s forwards;
}

.slide-content h1,
.slide-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.slide-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.cta-button a {
  color: white;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(0, 0, 0, 0.5));
  z-index: 2;
  pointer-events: none;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.arrow-left {
  left: 40px;
}

.arrow-right {
  right: 40px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.dot.active {
  width: 32px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.15);
}

/* Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .slide-content {
    max-width: 85%;
    padding: 35px 30px;
  }
  
  .slide-content h1,
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
  
  .slider-arrow {
    width: 45px;
    height: 45px;
  }
  
  .arrow-left {
    left: 20px;
  }
  
  .arrow-right {
    right: 20px;
  }

  .slider-dots {
    bottom: 30px;
    padding: 10px 14px;
  }
}

@media screen and (max-width: 480px) {
  .slide-content {
    padding: 30px 25px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .arrow-left {
    left: 15px;
  }
  
  .arrow-right {
    right: 15px;
  }
}

/* Full-screen Video Section Styles */
.fullscreen-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=1920&h=1080');
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(37, 99, 235, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.video-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.video-cta {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.video-cta a {
  color: white;
  text-decoration: none;
}

.video-cta:hover {
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
}

@media screen and (max-width: 768px) {
  .video-content {
    max-width: 85%;
    padding: 35px 30px;
  }

  .video-content h2 {
    font-size: 2rem;
  }
  
  .video-content p {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 5rem 2rem 0;
  margin: 0;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.logo {
  color: #f9fafb;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f9fafb;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
}

.footer-list-title {
  color: #f9fafb;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-list-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 40px;
  background-color: #2563eb;
}

.footer-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #f9fafb;
  transform: translateX(5px);
}

.footer-bottom {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-bottom-link:hover {
  color: #f9fafb;
}

/* Why Choose Us Section Styles */
.why-choose-us {
  padding: 120px 0;
  background-color: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.05));
  z-index: 1;
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.05));
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title .accent {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title-decoration span:first-child {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  border-radius: 3px;
}

.title-decoration span:last-child {
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.advantage-item {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.advantage-item:hover::before {
  transform: scaleX(1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(79, 70, 229, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-icon svg {
  width: 30px;
  height: 30px;
  color: #2563eb;
}

.advantage-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.advantage-item p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px 10px;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
  position: relative;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* CTA Button */
.cta-container {
  text-align: center;
}

.premium-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1d4ed8, #4338ca);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
}

.premium-button:hover::before {
  opacity: 1;
}

.button-text {
  margin-right: 10px;
}

.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.premium-button:hover .button-icon svg {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    padding: 30px 20px;
  }

  .stat-item {
    flex: 1 0 45%;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .stat-item {
    flex: 1 0 100%;
  }
}

/* News Ticker Section Styles */
.news-ticker-section {
  background: linear-gradient(90deg, #1a202c, #2d3748);
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 70px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ticker-container {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.ticker-label {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  color: white;
  font-weight: 700;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  position: relative;
  z-index: 3;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.ticker-label-text {
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #ef4444;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  background-color: rgba(239, 68, 68, 0.5);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.ticker-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: calc(100% - 180px);
}

.ticker-items {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  align-items: center;
  animation: tickerAnimation 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  color: white;
  padding: 0 30px;
  height: 100%;
  font-weight: 500;
  font-size: 1rem;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.ticker-icon {
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-icon svg {
  width: 18px;
  height: 18px;
  color: #2563eb;
}

@keyframes tickerAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-items:hover {
  animation-play-state: paused;
}

.ticker-fade-left, .ticker-fade-right {
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

.ticker-fade-left {
  left: 180px;
  background: linear-gradient(to right, #1a202c, transparent);
}

.ticker-fade-right {
  right: 0;
  background: linear-gradient(to left, #1a202c, transparent);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .ticker-label {
    min-width: 120px;
  }

  .ticker-label-text {
    font-size: 0.9rem;
  }

  .ticker-wrapper {
    width: calc(100% - 120px);
  }



  .ticker-fade-left {
    left: 120px;
  }

  .ticker-item {
    padding: 0 20px;
    font-size: 0.9rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  background-color: whitesmoke;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 8px;
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}