 

        .hero-bg {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1581056771107-24ca5f033842?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            width: 100%;
            height: calc(100vh - 77px);
            overflow: hidden;
          }

        .hero-bg {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
          
          .hero-bg video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
          }
          
          .hero-bg .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(15, 34, 96, 0.85), rgba(30, 58, 138, 0.65));
            z-index: 2;
          }
          
          .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            text-align: center;
            top: 50%;
            transform: translateY(-50%);
          }

        .doctor-bg {
            background-image: linear-gradient(rgba(12, 15, 91, 0.92), rgba(30, 58, 138, 0.7)), 
                              url('https://images.unsplash.com/photo-1581056771107-24ca5f033842?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
        }
        .country-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .testimonial-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
        }
        .floating-btn {
            animation: float 3s ease-in-out infinite;
        }
        .smooth-scroll {
            scroll-behavior: smooth;
        }
        .gradient-text {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(90deg,rgb(238, 250, 65),rgb(254, 239, 26));
        }
        .stethoscope {
            position: absolute;
            animation: wave 2s linear infinite;
            transform-origin: 70% 70%;
        }
        .pulse-dot {
            animation: pulse-slow 2s infinite;
        }
        .doctor-icon {
            transition: all 0.3s ease;
        }
        .doctor-icon:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 5px 15px rgba(59, 130, 246, 0.5));
        }
        .glow-card {
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
        }
        .glow-card:hover {
            box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
        }
  
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .shorts-container {
            scrollbar-width: none;
            -ms-overflow-style: none;
            scroll-snap-type: x mandatory;
        }
        
        .shorts-container::-webkit-scrollbar {
            display: none;
        }
        
        .shorts-card {
            min-width: 300px;
            scroll-snap-align: start;
            transition: all 0.3s ease;
        }
        
        .shorts-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        .float-animation {
            animation: float 4s ease-in-out infinite;
        }
            .floating-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 50;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
        .gradient-overlay {
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 177.78%; /* 9:16 aspect ratio */
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 12px 12px 0 0;
        }

        
        /* Mobile overflow fix */
@media (max-width: 767px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-bg video {
    left: 0;
    transform: none;
  }
  
  .country-card {
    margin-left: 0;
    margin-right: 0;
  }
}
        
        /* Add these new animations */
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes scalePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .scroll-progress {
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
            transition: width 0.3s ease-out;
        }

        .hover-3d {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-3d:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-5px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .gradient-animate {
            background: linear-gradient(-45deg, #0a192f, #1e3a8a, #3b82f6);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        .country-tag {
  display: inline-block;
  background-size: cover;
   
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  
}

.country-tag a {
  display: inline-block;
 
  
  border-radius: 0.25rem;
  
}

        body {
  overflow-x: hidden;
  width: 100%;
}

        img, video, iframe {
  max-width: 100%;
  height: auto;
}


.alu-marquee-section {
  padding: 2rem 1rem;
  background: #f5f5f5;
  overflow: hidden;
  width: 100%;
}

.alu-section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.alu-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.alu-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
}

.alu-marquee-item {
  flex: 0 0 auto;
  width: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.alu-marquee-item:hover {
  transform: scale(1.05);
}

.alu-marquee-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .alu-marquee-item {
    width: 150px;
  }
  
  .alu-marquee-item img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .alu-marquee-item {
    width: 120px;
  }
  
  .alu-marquee {
    gap: 12px;
  }
}