.theme-background{
    background: linear-gradient(to right, #3A6073, #2f4350); 
}
.theme-background2 {
  background: linear-gradient(to right, #7fbcda, #5189ae); 
}
.text-background{
    color: linear-gradient(to right, #3A6073, #2f4350); 
  }

.icon-col{
  color: #2f4350;
}
.hover-button {
    background-color: #487594; /* Initial button color */
    color: white; /* Text color */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition */
    
}



  .hover-button:hover {
    background-color: #000000; /* Color when hovering */
}
  
#background-dia{
    margin: 0px;
    padding: 0px;
    background-image: linear-gradient(to bottom left, rgb(255, 255, 255) 50% ,rgb(248, 248, 248) 50% );
    font-family: 'Roboto', sans-serif;
}
  #text-rotator {
    background: linear-gradient(to right, rgb(18, 194, 233), rgb(196, 113, 237), rgb(246, 79, 89));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  .btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white; /* Text color */
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 30px; /* Rounded edges */
    cursor: pointer;
    background-color: #008080; /* Initial background color */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
  }
  
  .btn1:hover {
    background-color: #20B2AA; /* Change background color on hover */
    transform: scale(1.1); 
  }
  
  
 
  .line-container {
    background-color: rgb(255, 255, 255);
    width: 100%; 
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gradient-line {
    width: 65%;
    height: 2px; 
    background: linear-gradient(to right, #00c6ff, #3a50f3, #be0eff, #ff0099);
    border-radius: 2px; 
}


.card:hover {
    background-color: #f0f8ff; /* Light blue background on hover */
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Stronger shadow */
  }




.container-right{ 
    background: linear-gradient(to right, #00c6ff, #3a50f3, #be0eff, #ff0099);
    border-radius: 2px;
    width: 100%; 

}

.grd-line{
    width: 35%;
    height: 2px; 
    background-color: rgb(255, 255, 255);
    
}


.crousel-img{
    width: 90%;
    max-height: 80rem;
}
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
      display: none; /* Hides the buttons */
    }
  }
  .shadow-image {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    border-radius: 30px;
  }
  .a{text-decoration: none;}

  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .moving-background {
    background: linear-gradient(45deg, #4f7588, #2f4350,#2f4350); /* Teal shades */
    background-size: 200% 200%; /* Enlarged gradient for movement */
    animation: gradient-move 6s ease infinite; /* Smooth animation */
    height: 60vh; /* Full viewport height */
    width: 100%; /* Full width */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Text color for contrast */
    font-size: 24px;
  }

  .card-text {
    color: #555;
    font-size: 1rem;
  }
  
  .card-image img {
    max-width: 80%;
    border-radius: 10px; /* Rounded edges for images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }
  
  /* Responsive Styling */
  @media (max-width: 576px) {
    .card-title {
      font-size: 1.25rem;
    }
    .card-text {
      font-size: 0.9rem;
    }
  }





  .glowing-logo {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
  }



  
  /* Wave Section */
  .wave-section {
    position: relative;
    height: 45vh;
    background: linear-gradient(to right, #3A6073, #2f4350); /* Gradient background */
    overflow: hidden;
    color: white;
    
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Wave Section */
 
  


.section-bg {
    background-color: #e8e8e8;
    padding: 50px 0;
}
.milestone {
    text-align: center;
    padding: 20px;
}
.milestone h5 {
    font-size: 62px;
    line-height: 62px;
    color: white;
    margin: 0;
}

.milestone .subject {
    font-size: 18px;
    font-weight: bold;
    color:#dadada;
    margin-top: 10px;
}




#loader {
  width: 100vw;
  height: 100vh;
  background-color: #2f4350;
  position: fixed; 
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; 
}


#loader div {
  width: 9vmax;
  height: 9vmax;
  border-right: 4px solid #ffffff;
  border-radius: 100%;
  animation: spinRight 800ms linear infinite;
  position: relative;
}


#loader div:before, #loader div:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #ffffff;
  border-radius: 100%;
  animation: spinLeft 800ms linear infinite;
}

#loader div:after {
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #ffffff;
  animation: none;
}

/* Keyframes for spinning */
@keyframes spinLeft {
  from { transform: rotate(0deg); }
  to { transform: rotate(720deg); }
}

@keyframes spinRight {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}


body.loaded #loader {
  display: none;
}



.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.menu-item {
  background: none;
  border: none;
  color: #0f0e0e;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.menu-item:hover,
.menu-item.active {
  color: rgb(255, 255, 255);
  border-bottom: 2px solid teal;
  border: 1px solid;
  border-radius: 10px;
  background-color: #3A6073;
}


.content-section {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Service Box Styling */
.service-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f8f9fa;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

/* Icon Styling */
.service-box i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #007bff; /* Bootstrap primary color */
}

/* Link Styling */
.service-box a {
  color: green;
  text-decoration: none;
  font-weight: bold;
}

.service-box a:hover {
  text-decoration: underline;
}

.thm-font{
  font-family: "Roboto", serif;
}

#hide-content{
  display: none !important;
}

.text-size {
  font-size: 3rem; /* Default for large screens */
}

@media (max-width: 768px) {
  .text-size {
    font-size: 2rem; /* Medium screens */
    line-height: 1.4; /* Adjust line height for better readability */
  }
}

@media (max-width: 576px) {
  .text-size {
    font-size: 1.25rem; /* Small screens (e.g., phones) */
    line-height: 1.3; /* Further adjust line height for tight spacing */
    
  }
}


.profile-img {
  width: 100px;  /* Adjust as needed */
  height: 100px; /* Ensure it's equal to width */
  border-radius: 50%; /* Makes it a perfect circle */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  display: block;
}

.hero-section {
  background: linear-gradient(to right, #3A6073, #2f4350);  /* Dark theme background */
   color: white;
   text-align: center;
   padding: 80px 20px;
   border-bottom-left-radius: 50% 50px;
   border-bottom-right-radius: 50% 50px;
}