@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body{
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

 .breadcrumb {
      position: relative;
      width: 100%;
      height: 350px; 
      background-image: url('/assets/breadcrem.png');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: white;
    }

    .breadcrumb::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(14, 14, 14, 0.655); /* dark overlay */
      z-index: 1;
      opacity: 9;
    }

    .breadcrumb h1 {
      width: 100%;
      text-align: center;
      font-size: 3.2rem;
      text-transform: uppercase;
      font-weight: bold;
      z-index: 2;
      position: relative;
      font-weight: 600;
    font-family: "Poppins", sans-serif;
    }

    /* Responsive text */
  
    @media (max-width: 768px) {
      .breadcrumb {
        height: 30vh;
      }
      .breadcrumb h1 {
        font-size: 2.7rem;
      }
    }

    @media (max-width: 480px) {
      .breadcrumb {
        height: 22vh;
      }
      .breadcrumb h1 {
        text-align: center;
        font-size:1.7rem;
      }
    }























    
/* our services and testimonials both */

.sliderCard-section{
    max-width: 1400px;
  width: 95%;
  margin: 3rem auto;
  border-radius: 10px;
  padding: 1rem;
  background-color: #f0efef;
}
.sliderCard-section h2{
  padding: 1.5rem 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.sliderCard-section p{
  width: 90%;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.4;
  padding-bottom: 1rem;
}
.sliderCard-section span{
  font-size: 1.2rem;
  color: #020202;
  font-weight: 900;
}
.main2{
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

.slider-wrapper {
  overflow: hidden;
  max-width: 1300px;
  margin: 0 50px 40px;
}

.card-slider .card-item {
  -webkit-user-select: none;
  user-select: none;
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  gap: 1rem;
  /* align-items: center; */
  background: #fffefe;
  color: #000;
  padding: 24px;
  border-radius: 8px;

}




.card-item .card-image {

            max-width: 100%;
            width: 100%;
            height: 230px;
            object-position: top;
            object-fit: cover;
            overflow: hidden;

        }




.card-slider .card-item .card-title {
  font-size: 20px;
  margin: 16px 0 8px;
  color: #012a58;
}


.card-slider .card-description{
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  flex-grow: 1;
}
.card-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #000000;
}

.card-slider .slider-button {
  color: #000000;
  margin-top: -40px;
  transition: 0.3s ease;
}

.card-slider .slider-button:hover {
  color: #012a58;
}

@media screen and (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .card-slider .slider-button {
    display: block;
  }
}
@media screen and (max-width:425px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .card-item .card-image{
    height: 200px !important;
    object-fit: cover;
  }
  .sliderCard-section h2{
    padding: 0;
  }
  .sliderCard-section p{
    width: 100%;
    font-size: .9rem;
  }
  .card-slider .card-item{
    height: none;
  }

}


.arrow1 {
  display: inline-block;
  animation: bounce 1s infinite;
}
.arrow1 >span{
  
  color: #000;
}
@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.arrow{
  animation: bounce1 1s infinite;
}
@keyframes bounce1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}























/* book section  */


        .section-book {
            max-width: 1400px;
            margin: 2rem auto;
            width: 90%;
            padding: 2rem 1rem;
        }

        .section-book h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .section-book > p {
            padding-top: 1rem;
            letter-spacing: 0.5px;
            line-height: 1.6;
            font-weight: 450;
            width: 100%;
            text-align: justify;
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #333;
        }

     

        /* Mobile landscape and small tablets */
        @media (max-width: 768px) {
            .section-book {
                width: 95%;
                margin: 1.5rem auto;
                padding: 1.5rem 0.5rem;
            }

            .section-book h2 {
                margin-bottom: 0.8rem;
            }

            .section-book > p {
                text-align: left;
                padding-top: 0.8rem;
            }

       

            .bookBtn {
                padding: 2rem 0 1.5rem;
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {
            .section-book {
                width: 100%;
                padding: 1rem 0.5rem;
            }

            .section-book h2 {
                margin-bottom: 0.5rem;
            }

            .bookData {
                gap: 0.3rem;
            }

            .bookBtn {
                padding: 1.5rem 0 1rem;
            }

            
        }



    











    /* .about-section start */


.about-section{

    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
    padding-bottom: 3rem;
}

.globalH1 {
    width: fit-content;
    text-transform: uppercase;
    padding-top:1rem ;
  font-size: 1.7rem;
  position: relative;
  font-weight: 600;
  color: #012a58;
  margin-bottom: .7rem;
}

.globalH1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 150px;
  height: 3px;
  background-color: #012a58;
  border-radius: 2px;
}

.globalH4 {
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    font-size: 1.1rem;
}
.globalList{
    padding-top: 1rem;
    padding-left: 1rem;
    font-weight: 300;
    line-height: 1.6;
}
.globalList strong{
    font-weight: 500;
}

.globalH4 strong{
  font-weight: 800;
}




/* .Objective-section start  */


.Objective-section{

    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
    padding-bottom: 3rem;
}



@media (max-width:425px){
    .globalH1 {
        font-size: 1.5rem;
    }
    .globalH1 ::after{
        width: 100px;
    }
}













/* book section start */


.book-section{
    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
}
       .containerC {
            padding: 1rem 0;
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

       .slide-box {
        width: 25vw;
            cursor: grab;
            background-color: #dddddd;
            text-align: center;
            font-size: 18px;
            display: flex;
            gap: 1.5rem;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: auto;
            min-height: 500px;
        }

        .slide-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .slide-box img {
            border: 2px solid #245f69;
            display: block;
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
        }

        .slide-box img:hover {
            transform: scale(1.05);
        }

        

        .bookData1 {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.5rem;
        }

        .bookData1 h2 {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: #245f69;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .bookData1 p {
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .bookData1 a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .bookData1 a:hover {
            color: #245f69;
        }




        

        /* Tablet - 2 slides */
        @media (max-width: 1024px) {
            .section-book {
                width: 92%;
                padding: 2rem 0.5rem;
            }

             .slide-box {
                width: 28vw;
                min-height: 480px;
                gap: 1.2rem;
                padding: 1.2rem;
            }

          .slide-box img {
                height: 280px;
            }
        }

        /* Mobile landscape and small tablets */
        @media (max-width: 768px) {
            .section-book {
                width: 95%;
                margin: 1.5rem auto;
                padding: 1.5rem 0.5rem;
            }

            

            .containerC {
                padding: 2rem 0;
            }

            .slide-box {
                min-height: 400px;
                gap: 1rem;
                padding: 1rem;
                width: 40vw;
            }

       .slide-box img {
                height: 260px;
            }

            .bookBtn {
                padding: 2rem 0 1.5rem;
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {
            .section-book {
                width: 100%;
                padding: 1rem 0.5rem;
                
            }

            

            .containerC {
                padding: 1.5rem 0;

            }

           .slide-box {
            width: 100%;
                min-height: 380px;
                gap: 1rem;
                padding: 1rem;
            }

             .slide-box img {
                height: 240px;
            }

            .bookData1 {
                gap: 0.3rem;
            }

            .bookBtn {
                padding: 1.5rem 0 1rem;
            }

            
        }

        /* Extra small devices */
        @media (max-width: 360px) {
             .slide-box {
                min-height: 350px;
            }

              .slide-box img {
                height: 200px;
            }
        }












/* .cancellation-section  */

        .cancellation-section {
  max-width: 1400px;
  width: 90%;
  margin: 2rem auto;
  background: #fff;
}





/* .Compliance-section */

.Compliance-section{

    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
    padding-bottom: 3rem;
}

/* .conference-section  */


.conference-section {
  max-width: 1400px;
  width: 90%;
  margin: 2rem auto;
  background: #fff;
}


/* editorial section  */


.Editorial-section{
    max-width: 1400px;
    width: 95%;
    margin: 1rem auto;
}
.Editorial-section h1 {
    width: fit-content;
    text-transform: uppercase;
    padding-top:1rem ;
  font-size: 2rem;
  position: relative;
  font-weight: 600;
  color: #012a58;
}

.Editorial-section h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 150px;
  height: 3px;
background-color: #f6c628;
  border-radius: 2px;
}
.editorCard{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0 ;
}
.memberCard{
    width: 20vw;
    min-height: 50vh;
    height: 100%;
    padding: 1.5rem;
    border: 2px solid #012a58;  
    border-radius:7px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 0 20px #012a58;
    transition: all .2s ease-in-out;
}

.mcard1{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.mcard1 img{
    width: 100px;
    height: 100px;
    border-radius: 50%;

    object-fit: cover;
}
.mcard1 h2{
    font-weight: 500;
    font-size: 1.3rem;
  color: #012a58;
}
.mcard2 p{
    font-weight: 400;
    font-size: .9rem;
}
.mcard2 strong{
    font-size: .95rem;
    font-weight: 600;
}

.mcard2 span{
  font-size: 14px;
    color: #012a58;
}

.memberCard:hover{
    transform: translateY(-10px);
}

@media (max-width:768px) {
    
.memberCard{
    width: 32vw;
    height: 80%;
}

}

@media (max-width:430px) {
    
.memberCard{
    width: 92vw;
    height: 80%;
}

}


/* .journalSelection  */



.journalSelection {
  max-width: 1400px;
  width: 90%;
  margin: 2rem auto;
  background: #fff;
}


/* .payment-section */


.payment-section{
    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
}

.bank-details {
  max-width: 1400px;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.bank-details table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.bank-details th {
  background: #f7f7f7;
  text-align: left;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #012a58;
}

.bank-details td {
  padding: 12px 14px;
  border-top: 1px solid #eee;
}

.bank-details tr:nth-child(even) {
  background: #f9f9f9;
}

/* 🔹 Responsive Style */
@media (max-width: 600px) {
  .bank-details table,
  .bank-details tbody,
  .bank-details tr,
  .bank-details td {
    display: block;
    width: 100%;
  }

  .bank-details tr {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
  }

  .bank-details td {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .bank-details td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #012a58;
  }

  .bank-details thead {
    display: none;
  }
}

/* .PrivacyPolicy-section */


.PrivacyPolicy-section{

    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
    padding-bottom: 3rem;
}


/* terms &condition -section */
.terms-section{
    max-width: 1400px;
    width: 95%;
    margin: 2rem auto;
    padding-bottom: 3rem;
}



















.Gallery-section {
            max-width: 1400px;
            width: 95%;
            margin: 2rem auto;
        }

     
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            aspect-ratio: 1;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(255,255,255,0.1);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            cursor: pointer;
            z-index: 1001;
            transition: transform 0.2s ease;
            background: rgba(255,255,255,0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            transform: rotate(90deg);
            background: rgba(255,255,255,0.2);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            color: white;
            border: none;
            padding: 20px;
            font-size: 30px;
            cursor: pointer;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 1001;
        }

        .nav-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        .prev-btn {
            left: 30px;
        }

        .next-btn {
            right: 30px;
        }

        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background: rgba(0,0,0,0.5);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .Gallery-section h2 {
              margin-left: 1rem;
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
                padding: 10px;
            }

            .close-btn {
                top: 10px;
                right: 10px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }

            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
                padding: 15px;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 10px;
            }
        }