.img-slide-m{
    height: 449px;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 600px) {
    .img-slide-m {
        height: 357px;
        object-fit: cover;
        object-position: center;
    }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
    .img-slide-m {
        height: 601px;
        object-fit: cover;
        object-position: center;
    }
}
@media screen and (min-width: 1025px) {
    .img-slide-m {
        height: 504px;
        object-fit: cover;
        object-position: center;
    }
}

.img-slide-n{
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 600px) {
  .img-slide-n {
      height: 100px;
      object-fit: cover;
      object-position: center;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .img-slide-n {
      height: 180px;
      object-fit: cover;
      object-position: center;
  }
}
@media screen and (min-width: 1025px) {
  .img-slide-n {
      height: 180px;
      object-fit: cover;
      object-position: center;
  }
  .drop-start{
    margin-left: -100px;
  }
}



.image-size {
    width:100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}
@media screen and (max-width: 600px) {
    .img-size {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
    .img-size {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}
@media screen and (min-width: 1025px) {
    .img-size {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}

/* course offered */
.course-card {
    width:100%;
    height: 350px;
    text-align: center;
    padding: 20px;
    background-color: #e0d6e0;
    /* Light purple background for cards */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .course-hover{
    transition: transform 0.3s ease-in-out;
  }

  .course-hover:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }

  .course-icon {
    font-size: 2rem;
    color: #6c757d;
    /* Icon color */
    mix-blend-mode: multiply;
  }

  .course {
    margin-bottom: 100px;
  }
  .course2{
    padding: 50px 0 240px 0 !important;
  }

  .enroll-btn{
    border-radius: 8px !important;
    font-size: 0.9rem;
  }

  .enroll-btn:hover{
    border-color: #6363f1 !important;
  }
  .enroll-btn:focus{
     background-color:rgba(8, 172, 209);
     border-color: #69c3f7 !important;
     box-shadow: none !important;
  }
  .icon-icon{
     color: var(--default-color);
  }

  .course-img-list {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
  }

  @media screen and (max-width: 600px) {
    .course-img-list {
      height: 190px;
    }
    .course-card{
      height: 190px;
    }
    .fa-baby{
      font-size: 3rem;
    }
  }
  @media screen and (min-width: 601px) and (max-width: 1024px) {
    .course-card {
      height: 250px;
    }
    .fa-baby{
      font-size: 4rem;
    }
  }
  @media screen and (min-width: 1025px) {
    .course-card {
      height: 300px;
    }
  }
  .btn-second:focus{
    background-color:rgba(8, 172, 209);
    border-color: #69c3f7 !important;
    box-shadow: none !important;

  }
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.img-slide-m{
  height: 180px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 600px) {
  .img-slide-m {
      height: 357px;
      object-fit: cover;
      object-position: center;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .img-slide-m {
      height: 601px;
      object-fit: cover;
      object-position: center;
  }
}
@media screen and (min-width: 1025px) {
  .img-slide-m {
      height: 504px;
      object-fit: cover;
      object-position: center;
  }
}
.card-hover:hover{
  transform: scale(1.1);
}
.card-hover{
  transition: transform 0.3s ease-in-out;
  border-radius: 8px;
}
.card-img-top{
  border-radius: 8px 8px 0 0 ;
}



.body-form {
  font-family: 'Courier New', Courier, monospace;
  font-size: 17px;
  margin: 0;/*  centering I used display: flex; justify-content: center; align-items: center; min-height: 100vh; on the <body> to center the form both vertically and horizontally on the page.*/
  padding: 0;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-form {
  width: 100%;
  max-width: 98%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h1.body-form {
  font-size: 24px;
  margin-bottom: 10px;
}

.body-form label {
  display: block;
  margin-bottom: 5px;
}

.body-form input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.body-form input[type="submit"] {
  background-color: #0d6efd;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;

}

.body-form input[type="submit"]:hover {
  background-color: #419aee;
  color: #fff;
}
.Bread-Title{
  color:white;
  font-size:40px;
  text-align: center;


}
.text-b{
font-size: 20px;
}


.cardfirst {
  margin-top: 100px;
  margin-bottom: 100px;
  /* animation: appear linear;
  animation-timeline:view();
  animation-range: entry 0% cover 40%; */

}


.name {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 600;

}

.des {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 600;
  color: var(--primary);
}

.mesg {
  font-size: 15px;
  font-family: "Montserrat";
  font-weight: 400;
  line-height: 18px;
}

.card {
  padding: 20px 0px;
  border: 2px solid var(--primary);
  border-radius: 35px;
  transition: transform 0.3s ease-in-out
}

.card:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out
}

/* activity */
.Text {
  font-size: 44px;
  font-family: "Montserrat";
  font-weight: 600;
  color: var(--primary);
}
.c-pp{
  width: 100px !important;
   height: 100px !important;
   object-fit: cover !important;
   object-position: center !important;

}

/* social link  */
.social-icon {
    color: var(--primary);
    background-color: var(--bs-white);
}

.social-icon:hover[data-name="facebook"],.social-icon:hover[data-name="Facebook"] {
    color: var(--bs-white);
    background-color: #1877F2 !important;
}

.social-icon:hover[data-name="twitter"], .social-icon:hover[data-name="Twitter"] {
    color: var(--bs-white);
    background-color: #000 !important;
}

.social-icon:hover[data-name="instagram"], .social-icon:hover[data-name="Instagram"] {
    color: var(--bs-white);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.social-icon:hover[data-name="linkedin"], .social-icon:hover[data-name="Linkedin"] {
    color: var(--bs-white);
    background-color: #0077b5 !important;
}

.text-justify {
    text-align: justify !important;
}


.no-space p {
  margin: 0;
  padding: 0;
}

.custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

.custom-modal-content {
    padding: 20px;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.custom-modal-title {
    font-size: 18px;
    font-weight: bold;
}

.custom-btn-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.custom-modal-body {
    padding: 15px;
    text-align: center;
}

.custom-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.custom-text {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.notice-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.notice-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.google-form-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; 
    margin-bottom: 1.5rem;
}

.google-form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
