* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

a {
    color: #000 !important;
    text-decoration: none !important;
}

p {
    font-family: 'poppins', sans-serif;
    font-weight: 400;
}

.amlogo{
    justify-content: center !important;
    border-bottom: 2px solid #fff;
    background-color: rgb(30, 85, 157);
}

.loginsection{
    /* background-color: darkslateblue; */
    background: url('/images/amrutpic2.jpg');
    background-repeat: no-repeat;
    /* background-size: cover; */
    text-align: center;
    color: #fff;
    width: 100%;
    height: 75vh;
}

.loginhead{
    background-color: cornflowerblue;
    padding: 80px;
    border-radius: 15px;
}

.mtitle{
    font-size: 12px;
}



.hero {
  position: relative;
  width: 100%;
  height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
   background: url('/images/morning_visit.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #79f557b9 75%, #4facfe 100%);
  background-size: 400% 400%;
  animation: gradientShift 30s ease infinite;
  opacity: 0.8;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}


.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  top: 30%;
  right: 20%;
  animation: floatShape 12s ease-in-out infinite;
}

.shape-4 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: 30%;
  left: 20%;
  animation: floatShape 7s ease-in-out infinite;
}

.shape-5 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  right: 30%;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation: floatShape 9s ease-in-out infinite reverse;
}

.shape-6 {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  top: 70%;
  left: 70%;
  animation: floatShape 11s ease-in-out infinite;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.1);
    opacity: 1;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.title-line {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1s ease-out forwards;
  padding-top: 15px;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.btn {
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 25px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
  background-color: #fff; 
  border-radius: 15px;
}

.central-orb {
  position: relative;
  width: 300px;
  height: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.central-orb:hover {
  transform: scale(1.05);
}

.orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff, #667eea);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.8);
  }
}

.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 150px;
  height: 150px;
  animation: rotate 10s linear infinite;
}

.ring-2 {
  width: 200px;
  height: 200px;
  animation: rotate 15s linear infinite reverse;
}

.ring-3 {
  width: 250px;
  height: 250px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  margin-bottom: 0.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .central-orb {
    width: 200px;
    height: 200px;
  }

  .orb-core {
    width: 70px;
    height: 70px;
  }

  .ring-1 {
    width: 100px;
    height: 100px;
  }
  .ring-2 {
    width: 130px;
    height: 130px;
  }
  .ring-3 {
    width: 160px;
    height: 160px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }
}






.card-img-top {
    height: 200px;
    object-fit: cover;
}





@media only screen and (max-width: 600px) {

   

}


@media only screen and (max-width: 991px) and (min-width: 601px) {

  


}