/* //small nav */
body{
    background: rgba(255, 255, 255, 0.8) !important;
}

body,h1,h3,h4,h5,.uk-navbar-nav>li>a,.uk-logo .p1{
    font-family: 'Quicksand', sans-serif;
}

#navone .uk-navbar-container:not(.uk-navbar-transparent){
    background-color: #57c46e !important;

}

#navone .uk-button{
    line-height: 38px;
}

#navone .uk-navbar-nav>li>a{
color: #fff;
font-size: 14px;
font-weight: 400;
text-transform: none;
}

#navone .uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle{
    min-height: 50px;
}

#navone .uk-navbar-nav .a {
    background: #31a74f;
    color: #fff;
    border: 1px solid #31a74f;
    border-radius: 50px;
    padding: 0px 20px; /* Corrected padding syntax */
    font-weight: 600;
    position: relative; /* Needed for shimmer */
    overflow: hidden; /* Ensures shimmer stays within button bounds */
    z-index: 1;
    /* Maintain fixed width and height if necessary */
    width: auto; /* Adjust if you want a specific width */
    height: auto; /* Adjust if you want a specific height */
}

/* Shimmer effect */
.shimmer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 70%);
    transform: skewX(-20deg);
    z-index: 2;
    animation: shimmer 2s infinite; /* Loops infinitely */
    pointer-events: none; /* Prevent interaction with the shimmer */
}

/* Keyframes for shimmering effect */
@keyframes shimmer {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

#navone .uk-navbar-nav .b{
    border: 1px solid #31a74f;
    background: transparent;
    border-radius: 50px;
    padding: 10px, 30px, 10px, 30px;
    font-weight: 600;
}

/* //big nav */
.uk-logo img{
    width: 50px;
}

.uk-logo .p2 {
    color: #31a74f;
    font-size: 14px;
    margin: 0;
}

.uk-logo .p1 {
    color: #31a74f;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.uk-navbar-container:not(.uk-navbar-transparent){
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(6px) !important;
}

#navtwo{
    box-shadow: 0 4px 2px -2px #cecece;
    position: relative;
    z-index: 111;
}

#navtwo .uk-navbar-nav>li.uk-active>a{
    color: rgba(65, 65, 65, 1);
    font-weight: 500;
}

#navtwo .uk-navbar-nav>li>a{
    color: rgba(65, 65, 65, 1);
    font-weight: 600;
    text-transform: none;
    font-size: 16px;
}

#navtwo .uk-dropdown{
    padding: 25px 0px;
}

#navtwo .uk-nav>li>a {
    padding: 5px 15px;
}


.uk-dropdown-nav .uk-nav-divider {
    border-top: 2px dotted #31a74f;
}

/* //banner */

#parttwo .uk-position-center{
    left: calc(27% - var(--uk-position-margin-offset));
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  
}
.uk-overlay {
    padding: 40px 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8) !important;
    /* opacity: 65%; */
}
#parttwo .maintitle{
    font-size: 32px;
    font-weight: 600;
    color: rgba(65, 65, 65, 1);
}
#parttwo .paragraph{
    font-size: 18px;
    font-weight: 500;
    color: rgba(65, 65, 65, 1);
}
.nextbutton{
    background: #31a74f;
    color: #fff;
    border-radius: 50px;
    padding: 3px 30px 3px 30px !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}




/* Button Styles */
.nextbutton2 {
    width: 160px;
    padding: 13px 0px;
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
    background-color: rgb(53, 142, 184);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
   
}
.nextbutton2 a{
    text-decoration: none !important;
}
.nextbutton2 a:hover{
    text-decoration: none !important;
}
.nextbutton2:hover .wave {
    top: -120px;
}

.nextbutton2 span {
    position: relative;
    z-index: 1;
}

.nextbutton2 .wave {
    width: 200px;
    height: 200px;
    background-color: rgb(80, 175, 219);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: -80px;
    transition: 0.4s;
}

.nextbutton2 .wave::before,
.nextbutton2 .wave::after {
    width: 200%;
    height: 200%;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.nextbutton2 .wave::before {
    border-radius: 45%;
    background-color: rgba(96, 176, 212, 0.5);
    animation: wave 5s linear infinite;
}

.nextbutton2 .wave::after {
    border-radius: 40%;
    background-color: #31a74f;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}




/* second part */
#secondpart p{
    text-align: justify;
}
#secondpart .uk-card-default{
    border-radius: 30px;
    position: relative;
    bottom: 17.4%;
}
#secondpart .uk-card-default .uk-card-header{
    background-color: #31a74f;
    color: #fff;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
#secondpart .uk-card-default .uk-card-header h3{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
#secondpart h1,#ssection h1,#historybanner h1,#galleryone h1,#downloadsbanner h1{
    font-size: 30px;
    font-weight: 600;
}
#partthree h1,#partfour h1,#partfive h1{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}
.uk-slideshow-items > li {
    transition: opacity 25s ease-in-out !important; /* Slow down the fade effect (2 seconds) */
}

.uk-slideshow-items > li.uk-active {
    opacity: 1 !important;
}
.preschool1{
    position: relative;
}
.program-backgrounds{
    /* background-color:linear-gradient(0deg, #A8CEE0 0%, #CFE4EE 31.59%, #E1EEF4 63.81%);
; */
    /* background: linear-gradient(0deg, #A8CEE0 0%, #CFE4EE 31.59%, #E1EEF4 63.81%); */
    /* background: linear-gradient(0deg, #57c46e 0%, #4fb364 50%, #31a74f 100%); */
    background: linear-gradient(0deg, #a1d89c 0%, #7fdc85 50%, #57c46e 100%);


    height: 400px;
}
.program-names{
    position: absolute;
   font-weight: 600;
   font-size: 20px;
    bottom: calc(85% - var(--uk-position-margin-offset));
    right: calc(35% - var(--uk-position-margin-offset));
    text-align: center;
    color: #fff;
}
.program-images{
    position: absolute;
    bottom: calc(0% - var(--uk-position-margin-offset));
}


.appbutton{
    position: absolute;
    right: calc(29% - var(--uk-position-margin-offset));
    bottom: calc(10% - var(--uk-position-margin-offset));
}
#partfour p{
    color: rgba(65, 65, 65, 1);
}

#partfour .twoimg img{
    /* position: absolute; */
    z-index: 111;
/* box-shadow: -10px 10px 15px -3px rgba(53,142,184,0.25); */
  /* border-radius: 10px; */
}

#partfour .twoimg img.framed {
    box-shadow:
      -50px -50px 0 -40px #A8CEE0,
      50px 50px 0 -40px #A8CEE0;
      border-radius: none;
  }

/* #partfour .forback{
    background: linear-gradient(0deg, #A8CEE0 0%, #CFE4EE 31.59%, #E1EEF4 63.81%);
    height: 109%;
    position: relative;
    z-index: 1;
    top: 15%;
    width: 70%;
    left: 21%;
    border-radius: 10px;
} */
#partfour .uk-icon{
    color: #000;
}

#partfour .uk-slideshow-items{
aspect-ratio: 27/9 !important;
}

#partfour .uk-dotnav .uk-active a{
    background-color: #31a74f;
}

#partfour .uk-dotnav li a{
    background:rgba(188, 217, 231, 1);
;
}

#partfive .uk-card-body{
    padding: 5px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 20px;
   
}

#partfive .uk-card-default{
    box-shadow: 0 5px 15px rgba(49, 167, 79, 0.5) !important ;

}

#partfive .uk-card-body img{
    border-top-left-radius: 60px;
}

#partfive .uk-card-body h3,#partfive .uk-card-body p{
    padding: 0px 25px;
}
#partfive .uk-card-body h3{
margin-top: 20px;
margin-bottom: 20px;
}

#partfive .uk-card-footer{
    padding: 20px 20px 5px 20px;
}

#partfive .nextbutton{
    padding: 8px 25px 8px 25px !important;
    margin-bottom: 10px;
}

/* Custom styles for footer */

.footerbackground {
    /* background-color: #f8f8f8; Subtle light background color */
    background: linear-gradient(45deg, #f8f8f8 25%, transparent 25%) -50px 0,
                linear-gradient(-45deg, #f8f8f8 25%, transparent 25%) -50px 0,
                linear-gradient(45deg, transparent 75%, #f8f8f8 75%),
                linear-gradient(-45deg, transparent 75%, #f8f8f8 75%);
    padding: 40px 0 0px;
}

/* Quick Links and Contact Sections */
footer h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 0px;
}

footer .uk-list a {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

footer .uk-list a:hover {
    color: #1e87f0; /* Hover color on links */
}

/* Footer Icon Styles */
footer .uk-list.uk-link-text li a {
    display: inline-block;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer .uk-list.uk-link-text li a:hover {
    color: #1e87f0; /* Hover color for social media links */
}

/* App Store Image Styles */
.app-store-img {
    max-width: 180px;
    transition: transform 0.3s ease;
}

.app-store-img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
.uk-link-heading{
    color: #31a74f !important;
}
/* Footer Text Styles */
.smallfooter {
    background-color: #31a74f;
    color: #fff;
    padding: 20px;
    font-size: 0.9em;
    text-align: center;
}

.smallfooter p {
    margin: 0;
    color: #fff;
}

/* Adjusting Grid for Responsiveness */
@media (max-width: 767px) {
    .uk-grid {
        display: block;
    }
    
    .uk-grid > div {
        margin-bottom: 20px;
    }
}

/* For larger screens (tablet and above) */
@media (min-width: 768px) {
    footer .uk-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


/* part two responsive */

/* For small screens (up to 639px) */
@media (max-width: 639px) {
    .a{
        background-color: #57c46e !important;
        color: #666;
        border: 1px solid #31a74f;
        border-radius: 50px;
        padding: 10px, 30px, 10px, 30px;
        font-weight: 600;
    }

    .b{
        border: 1px solid #fff;
        background: transparent;
        border-radius: 50px;
        padding: 10px, 30px, 10px, 30px;
        font-weight: 600;
    }
    /* #navone .uk-navbar-nav .a{
        width: 138px;
    } */
    #secondpart .uk-card-default{
        top: 20%;
    }

    /* Testimonial */
 
    #partfour .uk-slideshow-items{
        height: 700px;
        }
    
    .program-backgrounds{
        height: 350px;
    }
    
    .preschool1{
        margin-top: 20px;
    }

    .footerbackground{
      background-image: none;
      background:linear-gradient(0deg, #A8CEE0 0%, #CFE4EE 31.59%, #E1EEF4 63.81%);
      height: 100%;
      margin-top: 20px;
    }

    .footerbackground .uk-margin-large-top {
        margin-top: 10px !important;
    }

    .smallfooter p {
        margin-bottom: 0px;
        
    }

    .uk-navbar-nav>li>a{
        min-height: 40px;
        text-transform: none;
    }

    #navone .uk-button{
        line-height: 30px;
    }
    
    #navone .a{
        width: 138px;
        padding: 4px;
    }

    #navone .uk-navbar-nav{
        gap: 0px;
    }

    #parttwo .uk-position-center {
        left: 40%;
        width: 70%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    }

    .uk-overlay {
        padding: 15px 15px; /* Adjust padding for smaller screens */
    }

    #parttwo .maintitle {
        font-size: 18px; /* Adjust font size for smaller screens */
    }

    #parttwo .paragraph {
        font-size: 12px; /* Adjust font size for smaller screens */
        margin-bottom: 10px;
        margin-top: -10px;
    }
    #navone .uk-navbar-nav .a{
        display:none;
    }
      #navone .uk-navbar-nav .b{
        display:none;
    }
    #navone{
        display: none;
    }
 
}

/* For medium screens (640px to 959px) */
@media (min-width: 640px) and (max-width: 959px) {
    #parttwo .uk-position-center {
        left: 50%; /* Center overlay for medium screens */
        width: 80%; /* Adjust width for medium screens */
        box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    }
    #parttwo .uk-slideshow-items img{
        height: 600px !important;   
    }

    .uk-overlay {
        padding: 30px 20px; /* Adjust padding for medium screens */
    }

    #parttwo .maintitle {
        font-size: 20px; /* Adjust font size for medium screens */
    }

    #parttwo .paragraph {
        font-size: 17px; /* Adjust font size for medium screens */
    }

    .nextbutton {
        padding: 10px 25px; /* Adjust padding for medium buttons */
    }
}

/* For large screens (960px and up) */
 @media (min-width: 960px) {
    .uk-form-horizontal .uk-form-label {
        width: auto;
     
    }
}


/* history page */
#historybanner .uk-card-default{
    border-radius: 30px;
    position: relative;
  bottom: 136px;
}

#historybanner .forheight{
    height: 100%;
}
#historybanner p{
    text-align: justify;
}
#historybanner .uk-card-default .uk-card-header{
    background-color: #31a74f;
    color: #fff;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
#historybanner .uk-card-default .uk-card-header h3{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

#historybanner .next{
bottom: 10.8%;
}


/* downloads section */

#downloadsbanner .uk-table{
    width: 65%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid rgba(229, 229, 229, 1);
    padding: 8px; 
    text-align: left; 
}
.uk-table th{
    font-weight: 700;
    color: #000;
}
#downloadsbanner .download{
    background-color: #31a74f;
    color: #fff;
}
#downloadsbanner .view{
    background-color: rgba(24, 103, 141, 1);
    color: #fff;
}
/* breadcrumb */
.image-container {
    position: relative;
    display: inline-block; /* Ensures container wraps around the image */
}
.breadcrumb {
    position: absolute;
    bottom: 30%; /* Adjust to position it over the image */
    left: 20px; /* Adjust for horizontal alignment */
   /* Optional: Background color for contrast */
    color: white; /* Breadcrumb text color */
    padding: 10px;
    border-radius: 5px; /* Rounded corners */
    font-size: 14px;
}

.breadcrumb a {
    color: white; /* Link color */
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline; /* Link hover effect */
}


/* hamburger */
.uk-navbar-toggle {
    color: #31a74f;
    position: relative;
    min-height: 40px;
}

.uk-navbar-toggle:hover {
    color: #fff;
}

.uk-navbar-toggle::before {  
    transform: scaleX(0); /* Initial state with no width */
    transform-origin: center; /* Transform from the center */
    transition: transform 0.5s ease; /* Smooth transition */
}

.uk-navbar-toggle:hover::before {
    transform: scaleX(1); /* Expand fully on hover */
    width: 200%; /* Increase width on both sides */
}

.uk-navbar-toggle::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: -50%; /* Offset to center expansion equally */
    bottom: 0;
    left: -50%; /* Offset to center expansion equally */
    background: #31a74f;
    z-index: -1;
    transition: transform 0.5s ease;
}



/* off canvas mobile view sidebar */
.uk-offcanvas-bar{
    background-color: #31a74f;
    color: #fff;
    scroll-behavior: none;
    overscroll-behavior:contain;
    scrollbar-width: none;
}
.uk-offcanvas-bar .uk-nav-default{
    font-size: 16px;
    line-height: 2.5;
}
.uk-offcanvas-close:first-child+*{
    margin-top: 30px;
}
.uk-offcanvas-close{
    top: 15px;
    right: 15px;
}
.uk-offcanvas-bar .uk-nav-default>li>a{
    color: #fff;
}


/* admission section */
#forform .redone{
color: rgba(218, 95, 95, 1);
font-weight: 500;
}
#forform .uk-input{
border: 1px solid #31a74f;
background-color: rgba(239, 246, 249, 1);
}
#forform .maintitle{
    background-color: #31a74f;
    height: 25px;
    color: #fff;
    text-align: center;
    padding: 5px;
}
.uk-form-label{
    font-weight: 600;
   
}
label{
    margin-inline-end: 20px;
}
/* box-shadow: 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.05);
box-shadow: 0px 41.78px 33.42px 0px rgba(0, 0, 0, 0.03);
box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.02); */

#historybanner .vision,#historybanner .mission{
    border:1px solid #fff;
    box-shadow: 0px 6.65px 5.32px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;

}

#historybanner .vision{
    background-image: url(../images/lightbulb.png);
    background-repeat: no-repeat;
    background-position: center;
}
#historybanner .mission{
    background-image: url(../images/mission.png);
    background-repeat: no-repeat;
    background-position: center;
}
#historybanner .uk-active{
    background-color: #31a74f;
    padding: 8px;
    /* border-radius: 30px; */
   
}
#historybanner .uk-active:last-child{
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
margin-bottom: -40px;
}

.uk-nav-default>li.uk-active>a{
    color: #fff;
}


/* principal section */
#ssection .wrapper{
    display: flex;
    align-items: center;
    justify-content: center;

}
#ssection .box{
    background: url(../images/chairperson.jpg);
   background-size: cover;
   background-position: center center;
   height: 400px;
   width: 400px;
   box-shadow: 0 10px 5px 5px rgba(87, 196, 110, 0.5);

   -webkit-background-size:cover;
   animation: animate 5s ease-in-out infinite;
   transition: all 1s ease-in-out;

}

@keyframes animate{
    0%{
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    50%{
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }
    100%{
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
}

#ssection a{
    color: #31a74f;
    font-size: 14px;

}

/* preloader */

.pre-loader {
    background: #fff;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
  }
  .pre-loader .loading {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
  .pre-loader .loading .loader-icon {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    border: 7px solid #f3f3f3;
    border-radius: 50%;
    border-top: 7px solid #31a74f;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }
  .pre-loader .loading .img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
  }
  .pre-loader .loading .img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 45px;
    margin: 0 auto;
    display: block;
  }
  .pre-loader .loading span {
    transform: translateY(60px);
    display: block;
    font-size: 14px;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  progress {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    width: 100%;
    height: 10px;
    border: none;
    background: transparent;
    z-index: 1000;
  }
  
  progress::-webkit-progress-bar {
    background: transparent;
  }
  
  progress::-webkit-progress-value {
    background: linear-gradient(135deg, #ef646f 0%, #fd979a 100%);
    background-attachment: fixed;
  }
  
  progress::-moz-progress-bar {
    background: linear-gradient(135deg, #ef646f 0%, #fd979a 100%);
    background-attachment: fixed;
  }

  /* wave button */
  /* Login page */
/* #loginform{
    background: url(../images/loginback.png);
    height: 100%;
    width: 500px;
    background-size: cover;
} */


/* countdown */
#countdown svg{
    width: 35px;
}

/* notice */
#noticebanner .notice .uk-button{
color: #31a74f;

}
#noticebanner .notice .uk-card{
    border-radius: 15px;
    margin-bottom: 50px;
    }
    #noticebanner .notice .uk-card img{
        padding-top: 20px;
        padding-bottom: 20px;
        }
        @media (min-width: 1200px) {
            #noticebanner .notice .uk-card-body {
                padding: 20px 40px;
            }
        }
      

        /* teams */
        /* General container styling */
#teams {
    margin-top: 20px;
    text-align: center;
}

/* Styling for the tabs */
.uk-tab {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
}

.uk-tab li a {
    font-weight: bold;
    color: #31a74f;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.uk-tab li.uk-active a {
    background-color: #31a74f;
    color: #fff;
}

.uk-tab li a:hover {
    background-color: #31a74f;
    color: #fff;
}

/* Gallery item styling */
.uk-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
     box-shadow: 0 10px 50px rgba(49, 167, 79, 0.2);

    border-radius: 15px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .uk-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */

/* Image styling */
#teams .uk-inline img {
    width: 85%;
    height: 250px;
    /* object-fit: cover; */
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Text styling for each gallery item */
#teams h4 {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin: 5px 0;
}

#teams p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}
#teams a{
    text-decoration: none;
}

/* popup */
#myOverLay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(111, 126, 140, 0.2);
    backdrop-filter: blur(4px);
    z-index: 9999;
    overflow-y: auto; /* Hide scrollbar but allow inner scroll */
}

#myOverLay .overlay-wrapper {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin: 5% auto;
    background: #fff;
    border-radius: 10px;
    /* padding: 1rem; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* overflow-y: auto; */
    max-height: auto;
}

/* Hide the scrollbar in the overlay wrapper but allow scrolling */
#myOverLay .overlay-wrapper::-webkit-scrollbar {
    display: none;
}
#myOverLay .overlay-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#hide {
  
    color: #fff;
   
    position: absolute; top: 5px; right: 10px;
    font-weight: 800;
    border-radius: 5px;
    background-color: red;
    padding: 5px;  
}

#myOverLay img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

#myOverLay h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    padding: 0px 1rem;
    font-weight: 600;
    margin-top: 25px;
}

#myOverLay p {
    font-size: 12px;
    line-height: 2;
    color: #555;
    margin-bottom: 0.8rem;
    padding: 0px 1rem;
}
.no-scroll {
    overflow: hidden;
}
#secondpart .uk-container, #secondpart .uk-grid ,#ssection .uk-grid,#ssection .uk-container{
    overflow: hidden; /* Prevent any overflow caused by animations */
}




  