@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&display=swap');

html{
    scroll-behavior: smooth;
}

/* Flip Cards Section */
.flip-cards-sec {
    background-color: #f8f9fa;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background-color: #fff;
    color: #333;
}

.flip-card-front img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.flip-card-front h3 {
    color: #0d47a1;
    font-size: 1.5rem;
    margin-top: 15px;
}

.flip-card-back {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 30px 20px;
    border-radius: 15px;
}

.flip-card-back h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.flip-card-back ul {
    list-style-type: disc;
    padding: 20px;
    margin: 0;
    font-size: 15px;
}

.flip-card-back .btn-primary {
    background-color: #ff6d00;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.flip-card-back .btn-primary:hover {
    background-color: #ff8f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Call for Papers Section */
.call-for-papers-sec {
   background-color: #f8f9fa;
   position: relative;
   overflow: hidden;
}

.cfp-content {

   border-radius: 15px;
   position: relative;
   z-index: 1;
}

.cfp-content h2 {
   color: #0d47a1;
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 20px;
   position: relative;
   display: inline-block;
}

.divider {
   width: 80px;
   height: 4px;
   background: linear-gradient(90deg, #0d47a1, #42a5f5);
   margin-bottom: 25px;
   border-radius: 2px;
}

.book-cover-container {
   position: relative;
   border-radius: 15px;
   transition: transform 0.3s ease;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.book-cover-container:hover {
   transform: translateY(-5px);
}

.book-cover-container img {
   max-height: 370px;
   width: auto;
   max-width: 100%;
   border-radius: 5px;
}

.cta-buttons .btn {
   padding: 10px 30px;
   border-radius: 30px;
   font-weight: 600;
   text-transform: uppercase;
   font-size: 0.9rem;
   letter-spacing: 0.5px;
   transition: all 0.3s ease;
   margin: 5px 0;
}

.btn-primary {
   background: linear-gradient(135deg, #0d47a1, #1976d2);
   border: none;
   color: white;
}

.btn-outline-primary {
   border: 2px solid #0d47a1;
   color: #0d47a1;
   background: transparent;
}

.btn-outline-primary:hover {
   background: #0d47a1;
   color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
   .book-cover-container {
      margin-bottom: 40px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
   }
   
   .cfp-content {
      text-align: center;
   }
   
   .divider {
      margin-left: auto;
      margin-right: auto;
   }
}

@media (max-width: 767px) {
   .cfp-content h2 {
      font-size: 1.8rem;
   }
   
   .book-cover-container {
      padding: 20px;
   }
   
   .book-cover-container img {
      max-height: 280px;
   }
   
   .cta-buttons .btn {
      display: block;
      width: 100%;
      margin-bottom: 10px;
   }
   
   .cta-buttons .btn:not(:last-child) {
      margin-right: 0;
   }
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .flip-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .flip-card {
        height: 320px;
    }
    
    .flip-card-front img {
        height: 160px;
    }
}

@media (max-width: 575px) {
    .flip-card {
        height: 300px;
    }
    
    .flip-card-front img {
        height: 140px;
    }
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 600;
}

/* Modern Committee Dropdown Card Styles */
.committee-dropdown-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    overflow: hidden;
}

.committee-dropdown-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.committee-dropdown-btn {
    background: transparent;
    border: none;
    padding: 25px 30px;
    text-align: left;
    color: #333;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.committee-dropdown-btn:hover {
    background: linear-gradient(135deg, #FF8800 0%, #ff6f00 100%);
    color: white;
    transform: scale(1.02);
}

.committee-dropdown-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.3);
}

.committee-dropdown-btn h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.committee-dropdown-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #FF8800;
}

.committee-dropdown-btn:hover i {
    color: white;
    transform: scale(1.2);
}

.committee-dropdown-card [id$="-content"] {
    padding: 50px;
    background: #ffffff;
    border-radius: 0 0 15px 15px;
    border-top: 2px solid #FF8800;
}

/* Member Cards within Dropdowns */
.committee-dropdown-card .speaker-con {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px 20px;
    margin: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.committee-dropdown-card .speaker-con::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8800, #ff6f00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.committee-dropdown-card .speaker-con:hover::before {
    transform: scaleX(1);
}

.committee-dropdown-card .speaker-con:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FF8800;
}

.committee-dropdown-card .speaker-con figure {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.committee-dropdown-card .speaker-con img {
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.committee-dropdown-card .speaker-con:hover img {
    border-color: #FF8800;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 136, 0, 0.3);
}

.committee-dropdown-card .speaker-status h6 {
    color: #333;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.3;
}

.committee-dropdown-card .speaker-status p {
    color: #666;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.committee-dropdown-card .speaker-con:hover .speaker-status h6 {
    color: #FF8800;
}

/* Enhanced Slider Navigation for Cards */
.committee-dropdown-card .slider-nav {
    background: linear-gradient(135deg, #FF8800 0%, #ff6f00 100%);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
}

.committee-dropdown-card .slider-nav:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 136, 0, 0.4);
}

/* Responsive Enhancements for Cards */
@media (max-width: 767px) {
    .committee-dropdown-card {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .committee-dropdown-btn {
        padding: 20px 25px;
    }
    
    .committee-dropdown-btn h4 {
        font-size: 18px;
    }
    
    .committee-dropdown-card [id$="-content"] {
        padding: 25px 20px;
    }
    
    .committee-dropdown-card .speaker-con {
        padding: 20px 15px;
        margin: 10px 0;
        border-radius: 15px;
    }
    .committee-dropdown-card ul {
        padding-left: 40px;
}
}

/* Call of Paper Accordion Styles */
.call-paper-accordion {
    margin-top: 20px;
}

.accordion-item {
    background: transparent;
    border-radius: 30px;
    margin-bottom: 15px;
    border: none;
    overflow: visible;
    transition: all 0.4s ease-in-out;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

.accordion-header {
    background: var(--button-color);
    border-radius: 30px;
    cursor: pointer;
    border: none;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 18px;
    font-weight: 600;
    padding: 7px 7px 7px 25px;
    transition: .4s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    margin-bottom: 0;
    max-width: 190px;
    text-transform: uppercase;
}

.accordion-header:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.3);
}

.accordion-header span {
    font-weight: 600;
    font-size: 17px;
    line-height: 18px;
    color: var(--primary-color);
}

.accordion-arrow {
    color: var(--primary-color);
    padding: 9px 15px;
    border-radius: 20px;
    background: var(--primary-color);
    color: var(--button-color);
    /* margin-left: 8px; */
    transition: .4s ease-in-out;
    font-size: 14px;
    width: 50px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header:hover .accordion-arrow {
    transform: scale(1.1);
}

.accordion-content {
    transition: all 0.3s ease;
}

.accordion-content.show {
    display: block !important;
    animation: slideDown 0.3s ease;
}

.accordion-body {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin-top: 10px;
    border: 1px solid rgba(255, 136, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-body p {
    margin: 0;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    font-size: 16px;
}

.accordion-body strong {
    color: var(--button-color);
    font-weight: 700;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

/* Responsive Accordion Styles */
@media (max-width: 767px) {
    .accordion-header {
        padding: 10px 12px 10px 20px;
        font-size: 16px;
    }
    
    .accordion-header span {
        font-size: 16px;
    }
    
    .accordion-arrow {
        width: 32px;
        height: 32px;
        padding: 8px 12px;
    }
    
    .accordion-body {
        padding: 18px 20px;
    }
    
    .accordion-body p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 9px 10px 9px 18px;
        font-size: 15px;
    }
    
    .accordion-header span {
        font-size: 15px;
    }
    
    .accordion-arrow {
        width: 30px;
        height: 30px;
        padding: 7px 10px;
        margin-left: 6px;
    }
    
    .accordion-body {
        padding: 15px 18px;
    }
    
    .accordion-body p {
        font-size: 14px;
    }
}
body{
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 300;
    font-family: 'Barlow', sans-serif;
}

/****************navbar****************/

.header-con {
    position: absolute;
    padding-top: 35px;
    top: 0;
    z-index: 1;
}
.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 40px 18px !important;
    position: relative;
}
.navbar-light .navbar-nav .nav-item .nav-link::before{
    content: '';
    background: var(--secondary-color);
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .4s ease-in-out;
}
.navbar-light .navbar-nav .nav-item .nav-link:hover::before{
    width: 100%;
}
.navbar-light .navbar-nav .nav-item {
    margin-right: 18px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    left: -20px;
    top: 35px;
}
.navbar-btn a {
    background: rgb(255 255 255 / 15%);
    border-radius: 30px;
    cursor: pointer;
    border: none;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 18px;
    font-weight: 600;
    padding: 9px 9px 9px 23px;
    transition: .4s ease-in-out;
    display: inline-block;
    text-decoration: none;
}
.navbar-btn a:focus{
    outline: none;
}
.navbar-btn a i {
    color: var(--button-color);
    padding: 9px 23px;
    border-radius: 20px;
    background: var(--primary-color);
    margin-left: 8px;
    transition: .4s ease-in-out;
}
.navbar-btn{
    margin-left: 70px;
}
a.dropdown-item{
    display: inline-block;
}
.navbar-light .dropdown-menu ul li{
    margin-bottom: 5px;
    width: 100%;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: var(--button-color);
}
@media (max-width: 767px) {
    .navbar{
        display: flex;
        /* flex-direction: column;
        align-items: center; */
    }
}
/****************navbar****************/

/****************banner****************/
.banner-social-icons {
    position: absolute;
    top: 36%;
    left: 47px;
}
.banner-social-icons ul li a{
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    height: 38px;
    width: 38px;
    margin-bottom: 19px;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 16px;
    padding: 10px;
    transition: .4s ease-in-out;
}
.banner-social-icons ul li a:hover,
.footer-social-sec ul li a:hover{
    color: var(--button-color);
    background: var(--primary-color);
    transform: translateY(-8px);
}
.banner-main-sec{
    background: url(../image/bg.svg) no-repeat center bottom;
    background-size: cover;
    height: 912px;
}
.banner-inner-sec ul li{
    font-size: 16px;
    line-height: 16px;
}
.banner-inner-sec ul li i {
    padding-right: 6px;
    font-size: 14px;
}
.banner-inner-sec ul li:last-child{
    padding-left: 11px;
}
.banner-inner-sec span {
    font-size: 24px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: 6px;
}
.banner-inner-sec h1{
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 54px;
    line-height: 67px;
    font-weight: 700;
}
.banner-inner-sec h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    height: 160px;
    width: 3px;
    background: var(--primary-color);
}
.banner-inner-sec p{
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 24px;
}
/****************banner****************/
/****************conference section****************/
.confernce-text-sec h2{
    margin-bottom: 24px;
    font-size: 40px;
}
.confernce-text-sec h4{
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 14px;
    color: var(--accent);
}
.confernce-text-sec p{
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    text-align: justify;
}
.confernce-text-sec p:nth-child(3){
    margin-bottom: 32px;
}

.confernce-static-sec ul li {
    width: 50%;
    float: left;
    padding: 0 15px;
}
.confernce-static-sec img{
    height: 70vh;
}
.static-con {
    background: var(--primary-color);
    box-shadow: 6px 0 38px #e0f2fd;
    padding: 26px 19px;
    margin-bottom: 30px;
    position: relative;
}
.static-con figure{
    margin-bottom: 25px;
}
.value {
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
    color: var(--secondary-color);
}
.static-con span{
    font-size: 19px;
}
.confernce-static-sec ul{
    margin: 0 -15px;
}
/****************conference section****************/
/****************speaker section****************/
.speakers-sec{
    background: #eef8fe;
}
.speaker-con{
    margin-bottom: 30px;
}
.speaker-status h6{
    font-size: 25px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #000000;
}
.speaker-status p{
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}
.speaker-status span{
    font-size: 18px;
}
.speaker-btn i {
    color: var(--primary-color);
    background: var(--accent);
    padding: 8px 22px;
    border-radius: 20px;
    transition: .4s ease-in-out;
}
.speaker-btn i:hover{
    background: var(--button-color);
    transform: translateY(-8px);
}
.speaker-con figure{
    overflow: hidden;
}
.speaker-con figure img{
    transition: .4s ease-in-out;
}
.speaker-con:hover img{
    transform: scale(1.1);
}
.speaker-detail {
    position: absolute;
    bottom: 26px;
    padding: 0 29px;
}
.generic-title h2{
    margin-bottom: 16px;
}
.generic-title p{
    margin-bottom: 36px;
    font-weight: 600;
    font-size: 20px;
}
.speakers-sec::before,
.blog-main-sec::before,
.members-main-sec::before {
    background: url(../images/red-circle.png) no-repeat top left;
    top: 140px;
    left: 0;
    animation: move 1s infinite alternate;
}
.speakers-sec::before,
.speakers-sec::after,
.blog-main-sec::before,
.blog-main-sec::after,
.members-main-sec::before,
.members-main-sec::after{
    content: "";
    position: absolute;
    width: 149px;
    height: 383px;
    animation: move 1s infinite alternate;
}
.speakers-sec::after,
.blog-main-sec::after,
.members-main-sec::after {
    background: url(../images/yellow-circle.png) no-repeat bottom right;
    bottom: 120px;
    right: 0px;
    animation: move 1s infinite alternate;
}
@keyframes move{
    0% { transform: translatex(0); }
    100% { transform: translatey(-10px); }
}
/****************speaker section****************/

/****************call section****************/
.call-sec{
    background: #eef8fe;
}
.call-con{
    margin-bottom: 30px;
}
.call-status h6{
    font-size: 25px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 2px;
}
.call-status p{
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}
.call-status span{
    font-size: 18px;
}
.call-btn i {
    color: var(--primary-color);
    background: var(--accent);
    padding: 8px 22px;
    border-radius: 20px;
    transition: .4s ease-in-out;
}
.call-btn i:hover{
    background: var(--button-color);
    transform: translateY(-8px);
}
.call-con figure{
    overflow: hidden;
}
.call-con figure img{
    transition: .4s ease-in-out;
}
.call-con:hover img{
    transform: scale(1.1);
}
.call-detail {
    position: absolute;
    bottom: 26px;
    padding: 0 29px;
}
.generic-title h2{
    margin-bottom: 16px;
}
.generic-title h4{
    margin-bottom: 16px;
}
.generic-title p{
    margin-bottom: 36px;
    font-weight: 600;
    font-size: 20px;
}
.call-sec::before,
.call-sec::after,
.blog-main-sec::before,
.blog-main-sec::after,
.members-main-sec::before,
.members-main-sec::after{
    content: "";
    position: absolute;
    width: 149px;
    height: 383px;
    animation: move 1s infinite alternate;
}
.call-sec::after,
.blog-main-sec::after,
.members-main-sec::after {
    background: url(../images/yellow-circle.png) no-repeat bottom right;
    bottom: 120px;
    right: 0px;
    animation: move 1s infinite alternate;
}
@keyframes move{
    0% { transform: translatex(0); }
    100% { transform: translatey(-10px); }
}
/****************call section****************/

/****************registration section****************/
.registration-sec {
    background: linear-gradient(90deg,rgba(3, 28, 48, 0) 0%, rgba(8, 86, 150, 1) 100%), url(../images/registration-background-img.jpg) no-repeat center;
    background-size: cover;
}
.registration-inner-sec .generic-title h2{
    font-size: 60px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 26px;
}
.registration-inner-sec .generic-title p{
    margin-bottom: 31px;
}
/****************registration section****************/
/****************tabs-section****************/
#tsum-tabs h1 {
    padding: 50px 0;
    font-weight: 400;
    text-align: center;
  }
  #tsum-tabs p {
    margin: 0 0 5px;
    padding-right: 58px;
  }
  .tab-description p:last-child{
      padding-right: 75px !important;
      border-left: 2px solid var(--accent);
      padding-left: 15px;
  }
  .tab-sec-img{
      margin-left: -7px;
  }  
  #tsum-tabs section {
    display: none;
    padding: 47px 0 0;
    text-align: left;
} 
  #tsum-tabs input {
    display: none;
  }  
  #tsum-tabs label {
    display: inline-block;
    width: 28.5%;
    text-align: center;
    margin: 0 7px 0 6px;
    min-height: 150px; 
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  #tsum-tabs label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px;
  }  
  #tsum-tabs label:hover {
    color: #888;
    cursor: pointer;
  }   
  #tsum-tabs #tab1:checked ~ #content1,
  #tsum-tabs #tab2:checked ~ #content2,
  #tsum-tabs #tab3:checked ~ #content3,
  #tsum-tabs #tab4:checked ~ #content4 {
    display: block;
  }
  #tsum-tabs .Effective-sec-item {
    position: relative;
    padding: 23px 27px 19px;
    transition: .6s all ease-in-out;
    background: var(--accent);
    color: var(--primary-color);
    border-radius: 5px;
}

  #tsum-tabs .Effective-sec-item:hover{
      border-color: transparent;
      color: var(--primary-color);
      background: var(--accent);
  }
  #tsum-tabs [id^="tab"]:checked + label img{
    filter:  brightness(0) invert(1);
  }
  /* #tsum-tabs .Effective-sec-item-title h4,
  #tsum-tabs .Effective-sec-item-title span
  {
      padding: 0 39px;
      color: var(--primary-color);
  } */

  #tsum-tabs [id^="tab"]:checked + label{
    background: var(--accent);
    color: var(--primary-color);
}
#tsum-tabs [id^="tab"]:checked + label:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    border-style: solid;
    border-width: 12px 10px 0 10px;
    border-color: var(--accent) transparent transparent transparent;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}
  #tsum-tabs .Effective-sec-item-title span{
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
  }
  #tsum-tabs .Effective-sec-item-title small{
    font-size: 18px;
    line-height: 20px;
    color: var(--primary-color);
  }
  .admin-con span{
    font-size: 16px;
    font-weight: 400;
  }
  .admin-con h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
}
.admin-con {
    margin-right: 34px;
}
  .admin-con ul li i {
    font-size: 14px;
    color: var(--button-color);
    margin-right: 5px;
}
.admin-con ul li {
    margin-right: 20px;
}
  .detail-sec .generic-button i {
    padding: 8px 22px;
    margin-left: 6px;
  }
  .detail-sec .generic-button a {
    padding: 8px 9px 9px 26px;
    font-size: 17px;
}
  .value-sec{
    margin-right: 60px;
  }
  .value-sec .count{
    font-size: 70px;
    line-height: 54px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 23px;
    transition: .4s ease-in-out;
  }
  .value-sec .date-con span{
    font-weight: 600;
    font-size: 26px;
    line-height: 28px;
    color: var(--secondary-color);
  }
  .value-sec .date-con small{
    font-size: 18px;
  }
  .tabs-content {
    padding: 27px 34px;
    background: var(--primary-color);
    box-shadow: 6px 0 38px #e0f2fd;
    border-left: 3px solid var(--button-color);
    margin-bottom: 35px;
    transition: .4s ease-in-out;
    position: relative;
    }
.tabs-content::before {
    content: "";
    background: var(--accent);
    width: 0;
    height: 0;
    position: absolute;
    left: -3px;
    bottom: 0;
    transition: .4s ease-in-out;
}
.tabs-content:hover::before{
    width: 3px;
    height: 100%;
}
.tabs-content:hover .count{
    color: var(--accent);
}
.tabs-content:hover ul li i{
    color: var(--accent);
}
.tabs-content:hover {
transform: scale(1.04);
}
  .detail-sec figure {
    margin-right: 25px;
  }
/****************tabs-section****************/
/****************price-section****************/
.price-plan-sec{
    background: linear-gradient(90deg,rgba(3, 28, 48, 0) 0%, rgba(8, 86, 150, 1) 100%),url(../images/price-background-img.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}
.price-con {
    background: var(--primary-color);
    padding: 20px 0 53px 0;
    transition: .4s ease-in-out;
    border-radius: 10px;
}
.price-con:hover{
    transform: translateY(-8px);
}
.price-con h5 {
    font-size: 23px;
    line-height: 25px;
    font-weight: 600;
    padding: 0 0 18px 0;
    border-bottom: 1px solid #e2e2e2;
    position: relative;
}
.price-con:hover h5::after{
    width: 100%;
    height: 1px;
}
.price-con h5::after{
    content: "";
    background: var(--button-color);
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .4s ease-in-out;
}
.price-con .price {
    font-size: 76px;
    line-height: 54px;
    color: var(--button-color);
    font-weight: 500;
    margin-bottom: 35px;
}
.price-con .price-label {
    color: var(--button-color);
    font-weight: 500;
    padding: 6px 24px 5px;
    background: #fef2f6;
    margin-bottom: 20px;
    font-size: 22px;
}
.price-con ul li {
    margin-bottom: 8px;
}
.price-con ul{
    margin-bottom: 31px;
}
.price-con .generic-button a {
    font-size: 17px;
    line-height: 17px;
    padding: 9px 9px 9px 28px;
}
.price-con .generic-button i {
    padding: 9px 22px 8px;
    margin-left: 11px;
    font-size: 18px;
}
.price-special-con{
    margin-top: 40px;
}
.bronze-price-con .price{
    font-weight: 700;
}
.bronze-price-con h5{
    margin-bottom: 36px;
}
.bronze-price-con ul{
    margin-bottom: 27px
}
.bronze-price-con {
    padding: 20px 0 45px 0;
}
.price-plan-sec::before{
    background: url(../images/white-left-circle.png) no-repeat left bottom;
    left: -244px;
    bottom: 50px;
}
.price-plan-sec::after {
    background: url(../images/white-right-cirecle.png) no-repeat top right;
    right: -240px;
    top: 106px;
}
.price-plan-sec::before,
.price-plan-sec::after{
    content: "";
    width: 387px;
    height: 383px;
    position: absolute;
    animation: move 1s infinite alternate;
}
/****************price-section****************/
/****************service-section****************/
.service-box {
    margin-bottom: 50px;
}
.service-box figure img{
    transition: .4s ease-in-out;
}
.service-box:hover img{
    transform: translateY(8px);
}
.service-box:hover h4{
    color: var(--button-color);
}
.service-box h4{
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}
/****************service-section****************/
/****************blog-section****************/
.blog-main-sec{
    background: #ebf8ff;
    padding-bottom: 212px;
}
.blog-inner-con .admin-con ul li {
    margin-right: 7px;
}
.blog-inner-con .admin-con ul{
    margin-bottom: 11px;
}
.blog-inner-con .admin-con span{
    font-size: 15px;
    line-height: 16px;
}
.blog-inner-con .admin-con{
    margin-right: 0;
}
.blog-inner-con {
    padding: 20px 29px 30px;
    background: var(--primary-color);
    border-bottom: 3px solid var(--button-color);
}
.blog-inner-con h5{
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}
.blog-inner-con p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.blog-arrow a{
    color: var(--primary-color);
    background: var(--button-color);
    padding: 3px 22px 2px;
    border-radius: 20px;
    transition: .4s ease-in-out;
}
.blog-arrow a:hover{
    background: var(--accent);
    transform: translateY(-8px);
}
.blog-inner-con > a:hover{
    color: var(--button-color);
}
.blog-inner-con > a {
    text-decoration: none;
    color: var(--secondary-color);
}
.blog-img .date span{
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
}
.blog-img .date small{
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}
.blog-img .date {
    height: 77px;
    width: 77px;
    position: absolute;
    top: 16px;
    left: 15px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.blog-con::after{
    content: "";
    background: var(--accent);
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .4s ease-in-out;
}
.blog-con:hover::after{
    width: 100%;
}
.blog-con{
    position: relative;
    width: 25vw; 
    height: 114px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto;
    background: white;
}
.blog-con:hover .blog-img img{
    transform: scale(1.1);
} 
.blog-img figure{
    overflow: hidden;
    width: 306px;
}
.blog-img figure img{
    transition: .4s ease-in-out;
    width: 100%;
    background-color: #fff ;
}
.blog-con:hover .admin-con i{
    color: var(--accent);
}
/****************blog-section****************/
/****************form-section****************/
.form-sec {
    background: var(--primary-color);
    padding: 42px 56px 42px 54px;
    position: absolute;
    top: -85px;
}
.form-sec h3 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 38px;
    font-family: 'Barlow', sans-serif;
}
.form-btn button{
    border: none;
    cursor: pointer;
    padding: 10px 14px 9px 32px;
}
.form-btn button i {
    margin-left: 20px;
}
.form-btn button:focus{
    outline: none;
}
.form-sec input {
    font-size: 18px;
    background: #ebf8ff;
    padding: 17px 32px 16px 32px;
    border: none;
    border-radius: 30px;
    margin-right: 24px;
    width: 449px;
    color: #696767;
}
.form-sec input::placeholder{
    font-size: 18px;
    color: #696767;
}
.form-sec input:focus{
    outline: none;
}
/****************form-section****************/
/****************footer-section****************/
.footer-main-sec {
    background: linear-gradient(90deg,rgba(255, 122, 0, 1) 0%, rgba(8, 86, 150, 1) 100%);
 /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f48723+0,f3004c+100 */
/* background: #f48723;
background: -moz-linear-gradient(left,  #f48723 0%, #f3004c 100%); 
background: -webkit-linear-gradient(left,  #f48723 0%,#f3004c 100%); 
background: linear-gradient(to right,  #f48723 0%,#f3004c 100%);  */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f48723', endColorstr='#f3004c',GradientType=1 ); /* IE6-9 */

    padding-top: 100px;
    padding-bottom: 35px;
}
.footer-inner-sec ul li a {
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 0 0 5px;
}
.footer-social-sec ul li a::after{
    display: none;
}
.footer-inner-sec ul li a:hover::after{
    width: 100%;
}
.footer-inner-sec ul li a::after{
    content: "";
    background: var(--primary-color);
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .4s ease-in-out;
}
.footer-inner-sec ul li {
    padding: 0 21px;
    font-size: 18px;
    line-height: 20px;
}
.footer-inner-sec ul {
    padding-bottom: 53px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--primary-color);
}
.footer-social-sec ul {
    border: none;
    margin-bottom: 25px;
}
.footer-social-sec ul li a {
    padding: 15px 15px;
    border: 1px solid var(--primary-color);
    width: 52px;
    height: 52px;
    color: var(--primary-color);
    transition: .4s ease-in-out;
}
.footer-social-sec ul li{
    padding: 0;
    margin: 0 7px;
}
.footer-social-sec figure{
    margin-bottom: 0;
}
.footer-social-sec > a{
    margin-bottom: 30px;
    display: inline-block;
}
.footer-social-sec span{
    font-size: 16px;
    line-height: 18px;
}

.footer-inner-sec figure{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

/****************footer-section****************/
/***********************speaker page***********************/
/****************sub-banner-section****************/
.sub-banner-sec {
    background: url(../images/sub-banner-img.png) no-repeat center;
    background-size: cover;
    height: 561px;
}
.sub-banner-sec h1 {
    font-size: 75px;
    line-height: 95px;
    font-weight: 700;
    margin-bottom: 25px;
}
.banner-inner-con .breadcrumb {
    background: rgb(255 255 255 / 15%);
    margin: 0 auto;
    border-radius: 30px;
    padding: 10px 26px 13px;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-color);
    padding: 0 12px;
}
/****************sub-banner-section****************/
/****************speaker-section****************/
.speakers-main-sec{
    background: transparent;
}
.speakers-main-sec::before,
.speakers-main-sec::after{
    display: none;
}
/****************speaker-section****************/
/****************members-section****************/
.members-main-sec {
    background: #ebf8ff;
    padding-bottom: 217px;
    overflow: hidden;
}
.member-detail{
    margin-bottom: 60px;
}
.member-detail ul li a {
    color: var(--primary-color);
    background: var(--button-color);
    font-size: 15px;
    border-radius: 100%;
    height: 34px;
    width: 34px;
    line-height: 34px;
    transition: .4s ease-in-out;
}
.member-detail ul li a:hover{
    transform: translateY(-8px);
    background: var(--accent);
}
.member-detail ul li:nth-child(2){
    margin: 0 8px;
}
.member-detail h6{
    color: var(--secondary-color);
}
.member-detail span{
    margin-bottom: 13px;
}
.member-detail figure{
    margin-bottom: 24px;
}
.member-detail figure img{
    transition: .4s ease-in-out;
}
.member-detail:hover figure img{
    transform: translateY(8px);
}
.member-detail:hover h6{
    color: var(--button-color);
}
/****************members-section****************/
/***********************speaker page***********************/

/***********************event detail page***********************/
/***********************sub banner page***********************/
.breadcrumb-item.active{
    color: var(--primary-color);
}
.breadcrumb-item a{
    text-decoration: none;
}
/***********************sub banner page***********************/
/***********************event detail sec***********************/
.event-details {
    background: var(--primary-color);
    padding: 49px 45px 50px 40px;
    border-right: 3px solid var(--button-color);
}
.event-details-main-con{
    margin-bottom: 55px;
}
.event-details h2{
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 10px;
}
.event-details .admin-con ul li i{
    font-size: 18px;
}
.event-details .admin-con ul li {
    margin-right: 13px;
}
.event-details .admin-con ul{
    margin-bottom: 14px;
}
.event-details .admin-con span {
    font-size: 18px;
}
.event-detail-sec{
    background: #ebf8ff;
}
.event-details :nth-child(3){
    margin-bottom: 10px;
}
.event-details p{
    margin-bottom: 25px;
}
.event-detail-sec .blog-img .date{
    height: 105px;
    width: 105px;
    top: 28px;
    left: 29px;
}
.event-detail-sec .blog-img .date span{
    font-size: 50px;
    line-height: 45px;
}
.event-detail-sec .blog-img .date small{
    font-size: 22px;
    line-height: 25px;
}
.sponsers-images ul li figure img{
    transition: .4s ease-in-out;
}
.sponsers-images ul li figure img:hover{
    transform: translateY(-8px);
    filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(1%) hue-rotate(33deg) brightness(101%) contrast(91%);
}
/***********************event detail sec***********************/
/******************event speaker sec*****************/
.generic-banner{
    background: url(../images/sub-banner-img.png) #ebf8ff no-repeat center;
    background-size: cover;
}
.event-speakers .member-detail{
    margin-bottom: 0;
}
.event-text-con ul li {
    color: #696767;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 26px;
}
.event-text-con ul {
    width: 32%;
    margin-right: 22px;
}
.event-text-con ul:last-child{
    margin-right: 0;
    padding-left: 3px;
}
.event-text-con ul li i {
    color: var(--button-color);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 6px;
}
.event-text-con ul li:last-child{
    margin-bottom: 0;
}
.event-speakers .generic-title p {
    margin-bottom: 41px;
}
/*****************event speaker sec******************/
/***********************event detail page***********************/

.info-text-con {
    padding: 0px 360px 24px 66px;
}
.about-text-con {
    padding: 0 58px 11px 390px;
}
.sponsers-images ul li {
    padding: 0 56px;
}
.sponsers-sec .generic-title p{
    margin-bottom: 32px;
}
.info-text-con p:nth-child(3),
.about-text-con p:nth-child(3){
    margin-bottom: 32px;
}
.info-main-sec,
.about-us-main-sec{
    background: #eef8fe;
}
.info-text-con h2,
.about-text-con h2{
    margin-bottom: 18px;
}
.info-img-sec {
    background: url(../images/info-img.png) no-repeat center;
    background-size: cover;
    width: 50%;
    height: 699px;
    float: left;
}
.about-us-image-sec{
    background: url(../images/conference-img.png) no-repeat center;
    background-size: cover;
    width: 50%;
    height: 699px;
    float: right;
}
.about-text-con,
.info-text-con{
    width: 50%;
    float: left;
}

.video-play-icon{
    position: absolute;
    top: 43%;
    left: 42%;
}
#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
  }
  
  #light {
    display: none;
    position: absolute;
    top: 54%;
    left: 50%;
    max-width: 600px;
    max-height: 360px;
    margin-left: -300px;
    margin-top: -180px;
    z-index: 1002;
    overflow: visible;
  }
  
  #boxclose {
    float: right;
    cursor: pointer;
    border-radius: 100%;
    color: var(--button-color);
    background: var(--primary-color);
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 13px 8px 16px;
    position: absolute;
    right: -7px;
    top: -10px;
    z-index: 1002;
}
  
  .boxclose:before {
    content: "×";
  }
  
  #fade:hover ~ #boxclose {
    display:none;
  }
  
  .test:hover ~ .test2 {
    display: none;
  }

  /************************************************************************/
  .countdown-sec{
    background: url(../images/countdown-background-img.jpg) no-repeat center;
    background-size: cover;
  }
  .countdown-sec h2{
    font-size: 45px;
    line-height: 52px;
    font-weight: 600;
    margin-bottom: 34px;
  }
  #countdown ul li {
    display: inline-block;
    font-size: 23px;
    line-height: 34px;
    list-style-type: none;
    padding: 45px 40px;
    height: 169px;
    width: 169px;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 35px;
  }
  #countdown ul li::after {
    content: "";
    background: url(../images/countdown-circles.png) no-repeat center;
    height: 20px;
    width: 6px;
    position: absolute;
    top: 43%;
    right: -22px;
}
  #countdown ul li:last-child{
    margin-right: 0;
  }
  #countdown ul li:last-child::after{
    display: none;
  }
  #countdown ul li span {
    display: block;
    font-size: 55px;
    line-height: 34px;
    color: var(--button-color);
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  #countdown .emoji {
    display: none;
    padding: 1rem;
  }
  
  #countdown .emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
  }
  
  @media all and (max-width: 768px) {
    h1 {
      font-size: calc(1.5rem * var(--smaller));
    }
    
    li {
      font-size: calc(1.125rem * var(--smaller));
    }
    
    li span {
      font-size: calc(3.375rem * var(--smaller));
    }
}
/************************************************************************/
/************************************************************************/
/************************************************************************/
.contact-main-sec{
    background: #ebf8ff;
}
.contact-details {
    margin-left: 24px;
    margin-top: -8px;
}
.contact-main-sec .row .col-lg-4 ul {
    background: #fff;
    padding: 40px 29px 22px;
}
.contact-main-sec ul li{
    margin-bottom: 30px;
}
.contact-details h5{
    font-size: 22px;
    line-height: 38px;
    font-weight: 600;
}
.contact-details span{
    font-size: 18px;
    line-height: 27px;
    display: inline-block;
}
.contact-details span a{
    text-decoration: none;
    color: var(--text-color);
}
.contact-btn a {
    background: rgb(255 255 255 / 15%);
    border-radius: 30px;
    padding: 9px 9px 9px 24px;
    font-size: 17px;
}
.contact-btn a i{
    padding: 8px 22px 7px;
    margin-left: 10px;
}
.contact-main-sec ul li:last-child {
    background: linear-gradient(to right, #f48723 0%,#f3004c 100%);
    padding: 10px 16px 30px;
}
.contact-main-sec ul li h4{
    font-size: 27px;
    line-height: 54px;
    font-weight: 700;
}
.contact-form {
    background: var(--primary-color);
    padding: 37px 30px 42px;
}
.contact-form form ul li {
    width: 49.2%;
    margin-right: 10px;
    margin-bottom: 18px;
}
.contact-form form ul li:nth-child(2),
.contact-form form ul li:nth-child(4){
    margin-right: 0;
}
.contact-form form ul li:nth-child(5){
    margin-bottom: 25px;
}
.contact-form form ul li:last-child{
    background: none;
    margin: 0;
    padding: 0;
}
.contact-form form ul li::placeholder, .contact-form form ul li input, .contact-form form ul li textarea {
    font-size: 18px;
    line-height: 30px;
    border: none;
    background: #ebf8ff;
    padding: 16px 27px 17px;
}
.contact-form form ul li input{
    border-radius: 50px;
}
.contact-form form ul li input:focus,
.contact-form form ul li textarea:focus{
    outline: none;
}
.contact-form form ul li textarea{
    height: 229px;
    border-radius: 25px;
}
.contact-form form ul li textarea{
    resize: none;
}
.contact-form form .form-btn button{
    padding: 10px 10px 9px 32px;
}
.contact-form form .form-btn button i {
    margin-left: 15px;
}

/****************************************************************************/

.confernce-static-sec .static-con::before,
.confernce-static-sec .static-con::after,
.static-con span::before,
.static-con span::after {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	background: transparent;
	transition: .7s ease-in-out;
    opacity: 0;
}

.confernce-static-sec .static-con::before {
	top: 0;
	left: 0;
	border-top: solid var(--button-color);
	border-left: solid var(--button-color);
}
.confernce-static-sec .static-con::after {
	top: 0;
	right: 0;
	border-top: solid var(--button-color);
	border-right: solid var(--button-color);
}

.static-con span::before {
	bottom: 0;
	left: 0;
	border-bottom: solid var(--button-color);
	border-left: solid var(--button-color);
}
.static-con span::after {
	bottom: 0;
	right: 0;
	border-bottom: solid var(--button-color);
	border-right: solid var(--button-color);
}
.static-con:hover::before,
.static-con:hover::after,
.static-con:hover span::before,
.static-con:hover span::after{
	width: 100%;
	height: 100%;
    opacity: 1;
}
.static-con:hover .value{
    color: var(--button-color);
}
.static-con figure{
    transition: .4s ease-in-out;
}
.static-con:hover figure{
    transform: translateY(10px);
}
.navbar-btn a:hover{
    background: var(--primary-color);
    color: var(--button-color);
    transform: translateY(-8px);
}
.navbar-btn a:hover i{
    color: var(--primary-color);
    background: var(--button-color);
}
.white-btn a:hover{
    background: var(--button-color);
    color: var(--primary-color);
    transform: translateY(-8px);
}
.white-btn a:hover i{
    background: var(--primary-color);
    color: var(--button-color);
}
.red-btn a:hover, .red-btn button:hover{
    color: var(--primary-color);
    background: var(--accent);
    transform: translateY(-8px);
}
.red-btn a:hover i, .red-btn button:hover i{
    color: var(--button-color);
}
.facility-con figure img{
    transition: .6s ease-in-out;
}
.facility-con:hover img{
    transform: translateY(8px);
}
.facility-con:hover h3{
    color: var(--button-color);
}
/********************************************************************/
.masonry-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    pointer-events: none;
  }
.masonry {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(14, 1fr);
    column-gap: 20px;
    margin-bottom: 50px;
  }
  .cell-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 8;
    margin-bottom: 20px;
}
.cell-2 {
    grid-column: 6 /10;
    grid-row: 1 / 15;
    position: relative;
}
/* .cell-2::before {
    content: "";
    background: url(../images/Plus-icon.png) no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 43%;
    left: 40%;
} */
  .cell-3 {
    grid-column: 10 / 15;
    grid-row: 1 / 8;
    margin-bottom: 20px;
}
.cell-4 {
    grid-column: 10 / 15;
    grid-row: 15 / 8;
}
.cell-5 {
    grid-column: 1 / 6;
    grid-row: 15 / 8;
}
.masonry-item{
    overflow: hidden;
    position: relative;
}
.masonry-item img{
    transition: .4s ease-in-out;
}
.masonry-item:hover img{
    transform: scale(1.1);
}
.gallery-sec .masonry-item a::before {
    content: "";
    background: url(../images/Plus-icon.png) no-repeat center;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 44%;
    top: 41%;
    z-index: 2;
    display: none;
}
.gallery-sec .masonry-item:hover a::before{
    display: block;
}


/*****************************************************************/

/*Body of the Panel when it expands*/
.panel .panel-body {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    height: auto;
}

/*Image size and transition*/
.panel .panel-body a img {
    display: block;
    margin: 0;
    width: 100%;
    height: 150px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

/*Transform scale effect when you hover over*/
.panel .panel-body a.zoom:hover img {
    transform: scale(1.3);
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -moz-transform: scale(1.3);
}

/*Zoom Button*/
.panel .panel-body a.zoom span.overlay {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
    transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -webkit-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
}

/*Zoom Button and Tint Overlay*/
.panel .panel-body a.zoom:hover span.overlay {
    display: block;
    visibility: visible;
    opacity: 0.55;
    -moz-opacity: 0.55;
    -webkit-opacity: 0.55;
    filter: alpha(opacity=65);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
}

/*Zoom Button*/
.panel .panel-body a.zoom:hover span.overlay i {
    position: absolute;
    top: 45%;
    left: 0%;
    width: 100%;
    font-size: 2.25em;
    color: #fff !important;
    text-align: center;
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
}
#lightbox .modal-content {
    display: inline-block;
    text-align: center;
    background: none;
    border: none;
}
.modal-header{
    border: none;
}
button.close:focus{
    outline: none;
    border: none;
}
button.close {
    border: 0;
    position: fixed;
    right: -5px;
    top: -14px;
    color: #fff;
    background: var(--button-color);
    opacity: 1;
    padding: 11px 16px 14px !important;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    z-index: 2;
}
button.close span i{
    font-size: 20px;
}
button.close:hover{
    background: var(--accent);
    color: var(--primary-color);
    opacity: 1;
}
.modal-dialog {
    max-width: fit-content;
    top: 10%;
    width: 55%;
}
.modal-content{
    height: 100vh;
    overflow: inherit;
}
.map-sec iframe{
    width: 100%;
}
.model-list li i {
    color: var(--button-color);
    margin-right: 10px;
}
.modal-body {
    padding: 0;
}
.modal-body .admin-con{
    margin: 0;
}
.modal-open .modal{
    padding: 0;
}
.modal-body .contact-form {
    padding: 20px 30px 30px 37px;
}
.modal-body > ul li {
    margin-bottom: 5px;
}
.team-text-con span{
    color: var(--button-color);
    font-weight: 500;
}
.team-dteails{
    background: #ebf8ff;
}
.team-image-con figure img{
    width: 100%;
}
#blog1 .modal-content, #blog2 .modal-content, #blog3 .modal-content{
    height: 100vh;
    overflow: auto;
    padding: 0 15px;
}
/*****skills section*****/
.left-sec h5 {
    margin-bottom: 15px;
}
.left-sec h2{
    margin-bottom: 12px;
}
.left-sec :last-child{
    margin-bottom: 0;
    line-height: 33px;
}
.skills span {
    float: right;
    margin-top: -41px;
    border-radius: 6px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 22px;
}  
.skillbar{
    background-color:var(--button-color);
    width:0px;
    height:11px;
    border-radius: 8px;
}
.title-bar h5 {
    position: relative;
    top: -36px;
    color: var(--primary--color);
    line-height: 20px;
    font-size: 20px;
    color: var(--secondary-color);
}
.skills {
    background-color: #f7f7f7;
    width: 100%;
    height: 11px;
    position: relative;
    margin: 63px 0;
    border-radius: 8px;
}
.title-bar{
    position:absolute;
    top: 0;
}
.percentage{
    position: absolute;
    top: -41px;
    right: -16px;
    font-size: 20px;
}
.left-sec{
    padding: 0 50px;
}
.left-sec ul li i{
    font-size: 18px;
    color: var(--button-color);
    margin-right: 8px;
}
.team-professional-lft h3,
.left-sec h5{
    color: var(--secondary-color);
}
/*****skills section*****/

.call-paper-content h4{
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 14px;
    color: var(--accent);
}

/* Slider Responsive Styles */
@media (max-width: 991px) and (min-width: 768px) {
    [id$="-content"] .speaker-con img {
        width: 180px;
        height: 180px;
    }
}
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0px;
    margin: 0 -20px;
    background: transparent;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    align-items: stretch;
}

.slider-item {
    min-width: 100%;
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.slider-item .col-lg-3,
.slider-item .col-md-6,
.slider-item .col-sm-6 {
    padding: 15px;
    flex: 1;
    min-width: 0;
}

/* Speaker Card Improvements */
[id$="-content"] .speaker-con {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

[id$="-content"] .speaker-con:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Speaker Status Improvements */
.speaker-status {
    padding: 15px 0 0 0;
    text-align: center;
}

.speaker-status h6 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.service-main-sec .speaker-status h6 {
    color: #0d47a1;
}

/* .speaker-detail .speaker-status h6 {
    color: #fff !important;
} */

.service-main-sec .speaker-status {
    margin-top: 20px !important;
}

.service-main-sec .speaker-status p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Navigation Button Improvements */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FF8800;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

.slider-nav:hover {
    background: #e67700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 136, 0, 0.4);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Section Padding Improvements */
.banner-main-sec {
    padding: 0;
}

.conference-sec {
    padding: 80px 0;
}

.speakers-sec {
    padding: 80px 0;
}

.registration-sec {
    padding: 80px 0;
}

.schedule-sec {
    padding: 80px 0;
}

.call-sec {
    padding: 80px 0;
}

.price-plan-sec {
    padding: 80px 0;
}

.blog-main-sec {
    padding: 80px 0;
}

.call-of-paper-sec {
    padding: 80px 0;
}

.footer-main-sec {
    padding: 60px 0 40px 0;
}

/* Container Padding */
.container {
    padding-left: 20px;
    padding-right: 20px;
    /* padding-top: 100px; */
}

/* Generic Title Improvements */
.generic-title {
    margin-bottom: 40px;
}

.generic-title h2 {
    margin-bottom: 20px;
}

.generic-title h4 {
    margin-bottom: 15px;
}

.generic-title p {
    margin-bottom: 0;
}

/* Row and Column Spacing */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Button Spacing */
/* .generic-button {
    margin-top: 30px;
} */

/* Blog Section Improvements */
.blog-main-sec .row {
    justify-content: center;
}

.blog-main-sec .col-lg-3 {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

/* Footer Improvements */
.footer-inner-sec {
    padding: 0 20px;
}

.footer-inner-sec ul {
    margin: 30px 0;
}

.footer-social-sec {
    margin-top: 40px;
}

/* Conference Section Content Spacing */
.confernce-text-sec {
    padding: 40px 0;
}

.confernce-text-sec h4 {
    margin-bottom: 20px;
}

.confernce-text-sec h2 {
    margin-bottom: 25px;
}

.confernce-text-sec p {
    margin-bottom: 30px;
}

/* Call of Paper Section */
.call-paper-content {
    padding: 40px 0;
}

.call-paper-content h4 {
    margin-bottom: 20px;
}

.call-paper-content h2 {
    margin-bottom: 25px;
}

.call-paper-content p {
    margin-bottom: 20px;
}

.call-paper-img {
    padding: 20px;
}

/* Committee Section Padding Improvements */
.service-main-sec {
    padding: 80px 0;
}

.service-main-sec .container {
    padding: 0 20px;
}

.service-main-sec .generic-title {
    margin-bottom: 50px;
}

/* Dropdown Button Improvements */
.service-main-sec .btn {
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-main-sec .btn:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.service-main-sec .btn h4 {
    margin: 0;
    font-weight: 600;
}

/* Dropdown Content Padding */
[id$="-content"] {
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    margin-top: 0 !important;
    border: 1px solid #e9ecef;
    border-top: none;
}

/* Slider Container Improvements */
.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
    margin: 0 -20px;
    background: transparent;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    align-items: stretch;
}

.slider-item {
    min-width: 100%;
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.slider-item .col-lg-3,
.slider-item .col-md-6,
.slider-item .col-sm-6 {
    padding: 15px;
    flex: 1;
    min-width: 0;
}

/* Speaker Card Improvements */
[id$="-content"] .speaker-con {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

[id$="-content"] .speaker-con:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Speaker Status Improvements */
.speaker-status {
    padding: 15px 0 0 0;
    text-align: center;
}

.speaker-status h6 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.service-main-sec .speaker-status h6 {
    color: #0d47a1;
}

/* .speaker-con .speaker-status h6 {
    color: #fff !important;
} */

.speaker-status p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Navigation Button Improvements */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FF8800;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

.slider-nav:hover {
    background: #e67700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 136, 0, 0.4);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Section Padding Improvements */
.banner-main-sec {
    padding: 0;
}

.conference-sec {
    padding: 80px 0;
}

.speakers-sec {
    padding: 80px 0;
}

.registration-sec {
    padding: 80px 0;
}

.schedule-sec {
    padding: 80px 0;
}

.call-sec {
    padding: 80px 0;
}

.price-plan-sec {
    padding: 80px 0;
}

.blog-main-sec {
    padding: 80px 0;
}

.call-of-paper-sec {
    padding: 80px 0;
}

.footer-main-sec {
    padding: 60px 0 40px 0;
}

/* Container Padding */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

.container1 {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}


/* Generic Title Improvements */
.generic-title {
    margin-bottom: 40px;
}

.generic-title h2 {
    margin-bottom: 20px;
}

.generic-title h4 {
    margin-bottom: 15px;
}

.generic-title p {
    margin-bottom: 0;
}

/* Row and Column Spacing */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Button Spacing */
/* .generic-button {
    margin-top: 30px;
} */

/* Blog Section Improvements */
.blog-main-sec .row {
    justify-content: center;
}

.blog-main-sec .col-lg-3 {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

/* Footer Improvements */
.footer-inner-sec {
    padding: 0 20px;
}

.footer-inner-sec ul {
    margin: 30px 0;
}

.footer-social-sec {
    margin-top: 40px;
}

/* Conference Section Content Spacing */
.confernce-text-sec {
    padding: 40px 0;
}

.confernce-text-sec h4 {
    margin-bottom: 20px;
}

.confernce-text-sec h2 {
    margin-bottom: 25px;
}

.confernce-text-sec p {
    margin-bottom: 30px;
}

/* Call of Paper Section */
.call-paper-content {
    padding: 40px 0;
}

.call-paper-content h4 {
    margin-bottom: 20px;
}

.call-paper-content h2 {
    margin-bottom: 25px;
}

.call-paper-content p {
    margin-bottom: 20px;
}

.call-paper-img {
    padding: 20px;
}

/* Enhanced Committee Section Styling */
.service-main-sec {
    background: #f8f9fa;
    padding: 90px 0;
}

.service-main-sec .container {
    max-width: 1200px;
    padding: 0 25px;
}

.service-main-sec .generic-title {
    margin-bottom: 60px;
}

/* Enhanced Dropdown Buttons */
.service-main-sec .btn {
    border: 1px solid #e9ecef;
    font-weight: 500;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.service-main-sec .btn:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.service-main-sec .btn h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Enhanced Dropdown Content */
[id$="-content"] {
    background: white;
    padding: 35px 25px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    border-top: none;
}

/* Enhanced Slider Container */
.slider-container {
    padding: 25px 70px;
    margin: 0 -25px;
}

.slider-item {
    gap: 25px;
    padding: 0 15px;
}

.slider-item .col-lg-3,
.slider-item .col-md-6,
.slider-item .col-sm-6 {
    padding: 18px;
}

/* Enhanced Speaker Cards */
[id$="-content"] .speaker-con {
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 25px 20px 20px 20px;
    background: #fafafa;
    transition: all 0.4s ease;
}

[id$="-content"] .speaker-con:hover {
    border-color: #FF8800;
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.15);
}

/* Enhanced Member Images */
[id$="-content"] .speaker-con figure {
    text-align: center;
    margin-bottom: 20px;
}

[id$="-content"] .speaker-con img {
    width: 220px;
    height: 220px;
    border: 4px solid #f0f0f0;
    border-radius: 50%;
    transition: all 0.4s ease;
    object-fit: cover;
}

[id$="-content"] .speaker-con:hover img {
    border-color: #FF8800;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.2);
}

/* Responsive Grid Layout for Committee Members */
.slider-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15px;
}



/* Tablet: 2 per row */
@media (max-width: 991px) and (min-width: 768px) {
    .slider-item .col-lg-3 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    [id$="-content"] .speaker-con img {
        width: 180px;
        height: 180px;
    }
}

/* Mobile: 1 per slide */
@media (max-width: 767px) {
    .slider-item .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    [id$="-content"] .speaker-con img {
        width: 200px;
        height: 200px;
    }
    
    .slider-container {
        padding: 15px 55px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Enhanced Status Text */
.service-main-sec .speaker-status {
    padding: 20px 0 0 0;
}

.service-main-sec .speaker-status h6 {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-main-sec .speaker-status p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Enhanced Navigation Buttons */
.slider-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.4);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-nav:disabled {
    background: #ddd;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.slider-nav:disabled:hover {
    background: #ddd;
    transform: translateY(-50%) scale(1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Additional Section Padding */
.conference-sec,
.speakers-sec,
.registration-sec,
.schedule-sec,
.call-sec,
.price-plan-sec,
.blog-main-sec,
.call-of-paper-sec {
    padding: 90px 0;
}

/* Enhanced Content Spacing */
.confernce-text-sec,
.call-paper-content {
    padding: 50px 0;
}

.confernce-text-sec h4,
.call-paper-content h4 {
    margin-bottom: 25px;
}

.confernce-text-sec h2,
.call-paper-content h2 {
    margin-bottom: 30px;
}

.confernce-text-sec p,
.call-paper-content p {
    margin-bottom: 25px;
}

/* Enhanced Blog Section */
.blog-main-sec .col-lg-3 {
    margin-bottom: 40px;
}



/* Mobile Committee Section Improvements */
@media (max-width: 991px) {
    .service-main-sec {
        padding: 70px 0;
    }
    
    .service-main-sec .container {
        padding: 0 20px;
    }
    
    .slider-container {
        padding: 20px 60px;
    }
}

@media (max-width: 767px) {
    .footer-main-sec {
       padding-top: 50px !important;
    }
 }

@media (max-width: 767px) {
    .service-main-sec {
        padding: 60px 0;
    }
    
    .service-main-sec .btn {
        padding: 20px 25px;
    }
    
    .service-main-sec .btn h4 {
        font-size: 16px;
    }
    
    [id$="-content"] {
        padding: 25px 20px;
    }
    
    .slider-container {
        padding: 18px 55px;
    }
    
    [id$="-content"] .speaker-con {
        padding: 20px 15px 15px 15px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .service-main-sec .btn h4 {
        font-size: 14px;
    }
    
    .service-main-sec .btn {
        padding: 18px 20px;
    }
    
    [id$="-content"] {
        padding: 20px 15px;
    }
    
    .slider-container {
        padding: 15px 45px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

/* Improved responsive container padding */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .service-main-sec .container {
        padding: 0 15px;
    }
}

/* Fix Conference Section Image Overlap */
.confernce-static-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.confernce-static-sec ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.confernce-static-sec ul li {
    width: 100%;
    float: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.confernce-static-sec img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Hide animations on mobile */
@media (max-width: 767px) {
    .wow {
        visibility: visible !important;
        animation: none !important;
    }
    
    .bounceInUp {
        animation: none !important;
    }
    
    [data-wow-duration] {
        animation: none !important;
    }
    
    /* Mobile conference image adjustments */
    .confernce-static-sec img {
        max-height: 250px;
    }
    
    .confernce-text-sec,
    .call-paper-content {
        padding: 30px 0;
    }
    
    /* Banner section mobile padding */
    .banner-main-sec {
        padding: 80px 0 60px 0;
    }
    
    .banner-inner-sec {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .banner-main-sec .container {
        padding: 0 20px;
    }
    
    .banner-inner-sec h1 {
        font-size: 28px;
        line-height: 36px;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    
    .banner-inner-sec span {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 4px;
        margin-bottom: 15px;
        display: block;
    }
    
    .banner-inner-sec ul li {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .banner-social-icons {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin-top: 40px;
    }
    
    .banner-social-icons ul {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .banner-social-icons ul li {
        margin-bottom: 0;
    }
    
    .banner-social-icons ul li a {
        margin-bottom: 0;
    }
    
    /* Additional mobile animation fixes - Only disable WOW animations */
    .wow,
    [class*="bounce"],
    [class*="fade"],
    [class*="slide"],
    [class*="zoom"],
    [class*="flip"],
    [class*="rotate"] {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        animation-fill-mode: none !important;
    }
    
    /* Keep essential transitions for UI elements */
    .btn, .slider-nav, .speaker-con, .dropdown {
        transition-duration: 0.3s !important;
    }
}

/* Mobile banner adjustments for smaller screens */
@media (max-width: 575px) {
    .banner-main-sec {
        padding: 60px 0 40px 0;
    }
    
    .banner-inner-sec {
        padding: 0 15px;
    }
    
    .banner-main-sec .container {
        padding: 0 15px;
    }
    
    .banner-inner-sec h1 {
        font-size: 24px;
        line-height: 32px;
        padding-left: 12px;
    }
    
    .banner-inner-sec span {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 2px;
    }
    
    .banner-inner-sec ul li {
        font-size: 12px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .banner-main-sec {
        padding: 50px 0 30px 0;
    }
    
    .banner-inner-sec h1 {
        font-size: 20px;
        line-height: 28px;
        padding-left: 10px;
    }
    
    .banner-inner-sec span {
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 1px;
    }
}

/* Direct Mobile Banner Padding */
@media (max-width: 767px) {
    .banner-main-sec {
        padding: 60px 0 !important;
        min-height: auto !important;
    }
    
    .banner-main-sec .container {
        padding: 0 25px !important;
    }
    
    .banner-inner-sec {
        padding: 30px 20px !important;
        width: 100% !important;
    }
    
    .banner-inner-sec h1 {
        font-size: 26px !important;
        line-height: 34px !important;
        margin-bottom: 25px !important;
        padding-left: 12px !important;
    }
    
    .banner-inner-sec span {
        font-size: 15px !important;
        line-height: 22px !important;
        letter-spacing: 3px !important;
        margin-bottom: 20px !important;
    }
    
    .banner-inner-sec ul {
        margin-bottom: 20px !important;
    }
    
    .banner-inner-sec ul li {
        font-size: 13px !important;
    }
    
    .banner-social-icons {
        position: static !important;
        margin-top: 30px !important;
        text-align: center !important;
    }
    
    .banner-social-icons ul {
        justify-content: center !important;
        display: flex !important;
        gap: 12px !important;
    }
    
    .banner-social-icons ul li {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 575px) {
    .banner-main-sec {
        padding: 50px 0 !important;
    }
    
    .banner-main-sec .container {
        padding: 0 20px !important;
    }
    
    .banner-inner-sec {
        padding: 25px 15px !important;
    }
    
    .banner-inner-sec h1 {
        font-size: 22px !important;
        line-height: 30px !important;
        padding-left: 10px !important;
    }
    
    .banner-inner-sec span {
        font-size: 13px !important;
        line-height: 20px !important;
        letter-spacing: 2px !important;
    }
}

@media (max-width: 480px) {
    .banner-main-sec {
        padding: 40px 0 !important;
    }
    
    .banner-inner-sec {
        padding: 20px 10px !important;
    }
    
    .banner-inner-sec h1 {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .banner-inner-sec span {
        font-size: 12px !important;
        letter-spacing: 1px !important;
    }
}

/* Center align sponsor logos */
.blog-main-sec .row {
    justify-content: center;
    align-items: center;
}

.blog-main-sec .col-lg-3 {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-main-sec .blog-con {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

.blog-main-sec .blog-img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.blog-main-sec .blog-img figure {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.blog-main-sec .blog-img img {
    margin: 0 auto !important;
}

/* Mobile gaps for sponsor logos */
@media (max-width: 991px) {
    .blog-main-sec .col-lg-3 {
        margin-bottom: 30px;
    }
    
    .blog-main-sec .row {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .blog-main-sec .col-lg-3 {
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .blog-main-sec .row {
        gap: 15px;
        margin: 0 -10px;
    }
    
    .blog-main-sec .blog-con {
        width: 280px !important;
        height: 100px !important;
    }
    
    .blog-main-sec .blog-img img {
        width: 150px !important;
        height: 40px !important;
    }
}

@media (max-width: 575px) {
    .blog-main-sec .col-lg-3 {
        margin-bottom: 20px;
        padding: 0 8px;
    }
    
    .blog-main-sec .row {
        gap: 12px;
        margin: 0 -8px;
    }
    
    .blog-main-sec .blog-con {
        width: 250px !important;
        height: 90px !important;
    }
    
    .blog-main-sec .blog-img img {
        width: 130px !important;
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .blog-main-sec .col-lg-3 {
        margin-bottom: 18px;
        padding: 0 6px;
    }
    
    .blog-main-sec .row {
        gap: 10px;
        margin: 0 -6px;
    }
    
    .blog-main-sec .blog-con {
        width: 220px !important;
        height: 80px !important;
    }
    
    .blog-main-sec .blog-img img {
        width: 120px !important;
        height: 32px !important;
    }
}

/*header-section*/
.header-con .navbar-nav {
    /* display: flex !important; */
    /* flex-wrap: nowrap !important; */
    align-content: center !important;
    align-items: center !important;
    white-space: nowrap !important;
}

/* .header-con .navbar-nav .nav-item {
    padding-left: 25px !important;
    padding-right: 25px !important;
} */

.blue-btn,.red-btn{
    display: flex !important;
    flex-wrap: nowrap !important;
    align-content: center !important;
    align-items: center !important;
    text-wrap-mode: nowrap !important;
}

/* Responsive Navigation Bar */
@media (max-width: 1200px) {
    .navbar-light .navbar-nav .nav-item .nav-link {
        padding: 40px 12px !important;
        font-size: 13px;
    }
    .navbar-light .navbar-nav .nav-item {
        margin-right: 12px;
    }
}

@media (max-width: 1080px) {
    .navbar-light .navbar-nav .nav-item .nav-link {
        padding: 40px 8px !important;
        font-size: 12px;
    }
    .navbar-light .navbar-nav .nav-item {
        margin-right: 8px;
    }
    .blue-btn a {
        padding: 9px 9px 9px 15px;
        font-size: 14px;
    }
    .blue-btn a i {
        padding: 9px 15px;
    }
    
}

@media (min-width: 992px) {
  .banner-main-sec {
    padding-top: 100px;
  }
}

.card {
    background-color: #eef8fe !important;
    border:none !important;
}
@media (max-width: 767px) {
    .card{ 
        background-color: #eef8fe !important;
        border:none !important;
    }
}