/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #fd7e14;
}
.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #000080 !important;
}

.btn.btn-secondary {
    box-shadow: inset 0 0 0 0 #000080;
}

.btn.btn-secondary:hover {
    box-shadow: inset 300px 0 0 0 #000080;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Sub Title Start ***/
.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -110px;
    border: 1px solid var(--bs-secondary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Yantramanav', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
    font-size: 18px !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #000080 !important;
}

.navbar-light .navbar-brand img {
    max-height: 120px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #Fd7e14;
        color: #Fd7e14;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 100px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #Fd7e14;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #fd7e14;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

/* .header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;
   

} */
/* .header-carousel-item img{
    z-index: 1000;
} */
.logoimg {
   
   width: 100px !important;
   height: 50px !important;
   /* margin-left:110px; */

}
/* @media(max-width:768px){
    h1{
        font-size:30px !important;
    }
    .fs-5{
        font-size: 1rem;
    }
} */

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 100%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
	
  background:  url(../img/GSTF-2025\ \(1\).png), no-repeat;
  background-size: contain;
  height:400px;
  padding: 145px 0 50px 0;
  width:100%; 
  background-position: bottom;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 50px;
    }



}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/GSTF-2025\ \(3\).png), no-repeat center center;
    background-size: cover;
  }
/*** Single Page Hero Header End ***/


/*** Counter Facts Start ***/

.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 0.7)), url(../img/gstf09-3.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}


.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: #000080;
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    border-radius: 10px 10px 0 0;
    font-size: 50px;
    line-height: 90px;
    color: #000080 !important;
    display: flex;
    
}

.counter-facts .counter h3 {
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    display: flex;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** Training Start ***/
.training-carousel .owl-stage-outer {
    margin-top: 30px;
}

.training-carousel .owl-nav .owl-prev,
.training-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.training-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.training-carousel .owl-nav .owl-next {
    right: 0;
}

.training-carousel .owl-nav .owl-prev:hover,
.training-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.training .training-item .training-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.training .training-item .training-img img {
    transition: 0.5s;
}

.training .training-item:hover .training-img img {
    transform: scale(1.2);
}
/*** Training End ***/



/*** Dance Class Start ***/
.class-carousel .owl-stage-outer {
    margin-top: 30px;
}

.class-carousel .owl-nav .owl-prev,
.class-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.class-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.class-carousel .owl-nav .owl-next {
    right: 0;
}

.class-carousel .owl-nav .owl-prev:hover,
.class-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.class .class-item .class-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.class .class-item .class-img img {
    transition: 0.5s;
}

.class .class-item:hover .class-img img {
    transform: scale(1.3);
}
/*** Dance Class End ***/


/*** Blog Start ***/
.blog-carousel .owl-stage-outer {
    margin-top: 30px;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.blog-carousel .owl-nav .owl-next {
    right: 0;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}
/*** Blog End ***/

/*** Team Start ***/
.team-carousel .owl-stage-outer {
    margin-top: 30px;
}
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid #fd7e14;
    color: var(--bs-white);
    background: #fd7e14;
    border-radius: 50px;
    transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.team-carousel .owl-nav .owl-next {
    right: 0;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.team .team-carousel .team-item .team-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.team .team-carousel .team-item .team-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    transition: 0.5s;
    z-index: 2;
}

.team .team-carousel .team-item .team-img .team-icon {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px;
    display: flex;
    opacity: 0;
    transition: 0.5s;
    z-index: 3;
}

.team .team-carousel .team-item:hover .team-img .team-icon {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.team .team-carousel .team-item .team-content {
    position: relative;
    background: var(--bs-secondary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
    transition: 0.5s;
}

.team .team-carousel .team-item .team-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bs-primary) !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-carousel .team-item:hover .team-content a,
.team .team-carousel .team-item:hover .team-content p {
    color: var(--bs-white) !important;
}

.team .team-carousel .team-item:hover .team-content::after {
    height: 100% !important;
}

.team .team-carousel .team-item .team-img img {
    transition: 0.5s;
}

.team .team-carousel .team-item:hover .team-img img {
    transform: scale(1.1);
}
/*** Team End ***/


/*** Vidie Gallery Start ***/
/*** Youtube Video start ***/
.gallery .tab-class {
    text-align: start !important;
}

.gallery .nav-item {
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.gallery .nav-item a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .nav-item a.active span {
    color: var(--bs-white) !important;
}


.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 23px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 70px;
    height: 70px;
    background: var(--bs-white);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 23px solid var(--bs-primary);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/

/*** Vidieo Gallery End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 30px;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact button.btn.btn-primary.w-100:hover {
    box-shadow: inset 700px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item .footer-link {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item .footer-link:hover {
    letter-spacing: 1px;
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* flex: 1; */
    flex: 1 1 calc(50% - 100px);
}

.card h2 {
    color: #333;
    margin-bottom: 15px;
}

.card ul {
    list-style-position: inside;
    padding-left: 20px;
}

.card li {
    margin-bottom: 10px;
    color: #666;
}
.card li:hover {
    margin-bottom: 10px;
    color: #666;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
    }
    
    .card {
        min-width: 100%;
    }
}

.pdf-container {
    width:100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.pdf-viewer {
    width: 100%;
    height: 900px;
    border: none;
}

@media (max-width: 768px) {
    .pdf-viewer {
        height: 400px;
    }
}


.accomodation {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;

}

.accomodation-card {
    flex: 1 1 calc(50% - 100px);
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.6), 0 8px 8px rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    background-color: #02245B;
    box-sizing: border-box;
    color: #fff;
    margin-bottom: 40px;
}

.accomodation-card h3 {
    color: #Fd7e14;
}





.circle-image-container {
    display: flex;
    justify-content: center;
    gap: 30px;  /* Increased gap between circles */
    margin: 30px 0;  /* Increased margin top and bottom */
    padding: 0 15px;  /* Added padding for smaller screens */
}

.circle-image {
    width: 200px;  /* Increased from 150px */
    height: 200px;  /* Increased from 150px */
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #6c757d;  /* Increased border width */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* Added subtle shadow */
    transition: transform 0.3s ease; 
}

.circle-image:hover {
    transform: scale(1.05);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .circle-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 991px) {
    .circle-image {
        width: 180px;
        height: 180px;
    }
    .circle-image-container {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .circle-image {
        width: 150px;
        height: 150px;
    }
    .circle-image-container {
        gap: 15px;
    }
}


@media(max-width:768px){
    .display-1 , .display-3{
        font-size:30px;
    }
}
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  @media (min-width: 640px) {
    .brochure-grid {
      grid-template-columns: 1fr;
      justify-content: center;
    }
  }
  .brochure-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    justify-self: center;
    max-width: 400px;
    width: 100%;
  }
  
  .brochure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }
  .brochure-image {
    transform: scale(1);
    transition: transform 0.5s ease;
    width: 100%;
    /* height: 423px;  */
    object-fit: cover;
    display: block;
    background-position: top;
  }

  .brochure-content {
    padding: 20px;
  }

  .brochure-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .brochure-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }


  .brochure-download {
    display: inline-block;
    padding: 15px 40px;
    background:linear-gradient(135deg, #FF6600, #2563EB);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: fit-content;
}

.brochure-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
   
    transition: left 0.5s ease;
}

.brochure-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    background: linear-gradient(135deg,#2563EB, #FF6600);
    color: white;
}

.brochure-download:hover::before {
    left: 100%;
}


.brochure-card {
    transition: transform 0.3s ease-in-out;
  }

  .brochure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }






  .join-btn {
    background-color: #FF6600;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    justify-content: center;
  }
  
  .join-btn:hover {
    background:linear-gradient(135deg, #ff6600, #1976D2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
  }
  .hero-content1 {
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    
  margin-left: 42%;
  }
  .hero-section1{
    position: relative;
  background: linear-gradient(135deg,  #ff6600 0%, #033c75 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  margin-left: 35%;
  }

  @media(max-width:768px){
    .hero-content1 {
        position: relative;
        z-index: 1;
        justify-content: center;
        align-items: center;
        
      margin-left: 20%;
      }
  }


   
  .minimal-header {
    position: relative;
    text-align: center;
    background:linear-gradient(135deg,#fd7e14 30%,#2a2a72 70%);
    padding: 50px 20px;
    margin-top: 7%;
}

.minimal-header .logo img {
    width: 100px;
    margin-bottom: 20px;
}

.minimal-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.minimal-header p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.floating-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.floating-icons img {
    width: 50px;
    animation: float 4s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
    justify-content: center;
  }

  .section-title:hover {
    transform: translateY(-5px);
  }

  .section-title i {
    font-size: 2rem;
    color: #D2691E;
  }

  .section-title h2 {
    color: #D2691E;
    font-size: 1.8rem;
   
  }

  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
  }

  .cards-container.active {
    max-height: 2000px;
    margin-top: 1rem;
  }

  .card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card h3 {
    color: #D2691E;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .card ul {
    list-style: none;
  }

  .card li {
    color: #4a5568;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .card li::before {
    content: "•";
    color: #D2691E;
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  @keyframes fadeInDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
    
    .header h1 {
      font-size: 2rem;
    }
    
    .section-title h2 {
      font-size: 1.5rem;
    }
  }

  
  @media screen and (max-width: 480px) {
    .container20 {
        padding: 25px 15px;
        margin: 0;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .bank-details{
        max-width: 500px;
    }
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        margin-bottom: 12px;
    }
    .detail-row label {
        margin-bottom: 8px;
        width: 100%;
        display: flex;
        align-items: center;
        color: #007bff;
    }
    .detail-row span {
        width: 100%;
        text-align: left;
        color: #333;
        font-weight: 500;
    }
    .bank-details h2 {
        font-size: 1.3rem;
    }
    #copyButton {
        padding: 12px;
        margin-top: 15px;
    }
}
      

.bank-details {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.1);
    padding: 20px;
    /* width: 50%; */
}
@media(min-width:1024px) and (max-width:2400px)
{
    .bank-details {
        
        width: 50%;
    }
}
.bank-details h2 {
    color: #333;
    border-bottom: 2px solid #fd7e14;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    
}
.detail-row label {
    font-weight: bold;
    color: #555;
    font-size: 20px;
}
.detail-row span {
    color: #333;
    font-size: 20px;
}
#copyButton {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg,#fd7e14 30%,#2a2a72 70%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}
#copyButton:hover {
    background-color: #0056b3;
}
#copyMessage {
    text-align: center;
    color: green;
    margin-top: 10px;
    display: none;
}
      
.container20 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    margin-top: 30px;
} 
        



.join-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #1976D2, #343a40, #1976D2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
    margin-bottom:20px;
}
.join-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 90%;
    overflow: auto;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
}

.exhibition-registration-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
    margin: 0 auto; 
    margin-top: 30px;
}
.section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.stall-section {
    /* background-color: #f9fafb; */
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
}
.delegate-section {
    /* background-color: #f9fafb; */
    border-right: 1px solid #e0e0e0;
}
.section-header {
    margin-bottom: 25px;
    position: relative;
}
.section-header h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff6600;;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 25px;
}



.info-grid2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 25px;
    
}
.info-card2 {
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card2 h3 {
    color: black;
    /* margin-bottom: 8px; */
    font-size: 1.4rem;
    font-weight: bold;
}
.info-card2 p {
    color: #ff6600;
    font-weight: bold;
    font-size: 1.5rem;
}
.info-grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 25px;
    
}
.info-card1 {
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card1 h3 {
    color: black;
    /* margin-bottom: 8px; */
    font-size: 1.4rem;
    font-weight: bold;
}
.info-card1 p {
    color: #ff6600;
    font-weight: bold;
    font-size: 1.5rem;
}
.info-card {
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card h3 {
    color: black;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    align-items: center;
}
.info-card p {
    color: #ff6600;
    font-weight: bold;
    font-size: 1.4rem;
}


@media (max-width: 768px) {
    .info-section {
      grid-template-columns: 1fr;
      padding: 2rem 1rem;
    }

    .info-card {
      padding: 1.5rem;
    }

    .info-card h2 {
      font-size: 1.3rem;
    }
  }

.registration-btn {
    display: inline-block;
    padding: 12px 25px;
    /* background-color: #007bff; */
    background-color: #fd7e14;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.registration-btn:hover {
    background-color: #007bff;
    transform: translateY(-2px);
    color: white;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 90%;
    overflow: auto;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover {
    color: #333;
}
.modal-iframe {
    width: 100%;
    border: none;
}
@media screen and (max-width: 768px) {
    .exhibition-registration-container {
        flex-direction: column;
        max-width: 500px; /* Reduced max-width for mobile */
    }
    .section {
        padding: 30px 15px;
    }
    .stall-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    .info-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (min-width: 769px) {
    .exhibition-registration-container {
        gap: 20px; /* Add gap between sections on larger screens */
    }
}







.kma-support-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
    text-align: center;
}

.kma-support-wrapper {
    background-color: white;
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.kma-support-main-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.kma-support-subtitle {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 1rem;
    font-weight: 500;
}

.kma-support-description {
    font-size: 1.1rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .kma-support-main-title {
        font-size: 2rem;
    }

    .kma-support-subtitle {
        font-size: 1.5rem;
    }

    .kma-support-description {
        font-size: 1rem;
    }
}

/* Hover and Interaction Effects */
.kma-support-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Animated Underline Effect */
.kma-support-subtitle::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #3498db;
    margin: 10px auto;
    transition: width 0.3s ease;
}

.kma-support-wrapper:hover .kma-support-subtitle::after {
    width: 200px;
}

@media (max-width: 768px) {
    .join-btn {
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 12px 25px; /* Reduce padding */
    }
}

@media (max-width: 480px) {
    .join-btn {
        font-size: 14px; /* Further adjust font size */
        padding: 10px 20px; /* Smaller padding for compact devices */
    }
}





.container14 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.section-title14 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title14 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title14 span {
    color: #000080;
    position: relative;
    display: inline-block;
}

.section-title14 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000080;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.section-title14:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    perspective: 1000px;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #000080;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card h2 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #000080;
}

.info-card ul {
    list-style: none;
    padding-left: 1rem;
}

.info-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #000080;
    opacity: 0.7;
    font-size: 0.8rem;
}

.info-card:hover li::before {
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Card-specific colors */
.info-card:nth-child(1) {
    border-top: 4px solid #2563eb;
}

.info-card:nth-child(2) {
    border-top: 4px solid #7c3aed;
}

.info-card:nth-child(3) {
    border-top: 4px solid #db2777;
}

/* Responsive Design */
@media (min-width: 768px) {
    .info-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-card:last-child {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .info-section {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-card:last-child {
        grid-column: auto;
    }

    .info-card {
        padding: 2.5rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}






.counter-section {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); */
}

.container11 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.counter-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* .counter-box:hover::before {
    transform: translateY(0);
} */

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.counter-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.counter-box h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.counter-box:hover h3::after {
    width: 100%;
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.plus-sign {
    color: #60a5fa;
    font-size: 2rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 3rem 0;
    }
    
    .counter-box {
        padding: 2rem 1rem;
    }

    .counter-value {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .counter-section {
      padding: 3rem 1rem;
    }

    .counter-grid {
      gap: 1.5rem;
    }

    .counter-box {
      padding: 1.5rem;
    }

    .counter-icon {
      font-size: 2rem;
    }

    .counter-box h3 {
      font-size: 1.2rem;
    }

    .counter-value {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .counter-grid {
      grid-template-columns: 1fr;
    }

    .counter-box {
      max-width: 100%;
    }
}

  /* Simple divider styles */
  .section-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, #1e3a8a, transparent);
    margin: 2rem auto;
    max-width: 500px;
  }


.slide-bottom{
    
    font-size: 20px;
    border-bottom: 1px solid white;
    background-color: #f28b00;
    margin: 0; margin-top: -3rem;
}
@media(max-width:768px){
    .slide-bottom{
    
    font-size: 20px;
    border-bottom: 1px solid white;
    background-color: #f28b00;
    margin: 0; margin-top: -4rem;
}
}


  


.partners-section {
    padding: 80px 0;
  }
  
  .section-title13 {
    text-align: center;
    margin-bottom: 1.8rem;
    
  }
  .section-title13 h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
  }
  .section-title13 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #3498db;
  }
  .partner-category {
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .partner-category h3 {
    font-size: 2rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  .logo-item {
    width: 180px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
  }
  .logo-item:hover img {
    transform: scale(1.1);
  }
  .logo-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgba(52, 152, 219, 0.7), rgba(52, 152, 219, 0));*/
    transition: all 0.3s ease;
  }
  .logo-item:hover::before {
    top: 0;
  }
  @media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .logo-item {
        width: 150px;
        height: 100px;
    }
  }
  
  .partner h3 {
    font-size: 2rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .partner .logo-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
    /* gap: 30px; */
    justify-items: center;
  }
  .partner1{
    
    background-color: #fff;
    border-radius: 10px;
    
    
  }
  .partner1 h3 {
    font-size: 2rem;
    color: #2c3e50;
    
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  
  .partner1 .logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .partner1 .logo-item {
    margin: 0; /* Removes any space between logo items */
    padding: 0;
    width: 200px;
      height: 150px;
  }
  .partner1 .logo-item img {
    display: block; /* Ensures the images do not have any extra space */
    width: 100%; /* Adjust this value as necessary to control the logo size */
    height: 200px;
  }
   