/* Basic resets */
@font-face {
    font-family: 'Agrandir';
    src: url('./Fonts/Agrandir-Regular.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Agrandir Bold';
    src: url('./Fonts/Agrandir-TextBold.otf') format('woff2');
    font-weight: normal;
    font-style: normal;
}


* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: 'Agrandir', sans-serif;

}
a{
    text-decoration: underline;
    color:#16B8D9;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Agrandir', sans-serif;
}
section {
    scroll-margin-top: 60px; /* Set this value to be equal to or greater than your navbar's height */
  }
.section{
    padding: 80px 0px 80px 0px;
}
.conference-section{
    padding: 80px 0px 20px 0px;
}
.container {
    max-width: 1260px;
    margin: 0 auto;
}
.sub-heading{
    font-size: 48px;
    color: #361B74;
    font-family: 'Agrandir Bold';
    margin-bottom: 35px;
}
.sub-heading-two{
    font-size: 48px;
    color: #361B74;
    font-family: 'Agrandir Bold';
}
.sub-heading-three{
    font-size:34px;
    color: #361B74;
    font-family: 'Agrandir Bold';
}
.paragraph{
    font-size: 21px;
    color:#5C5C5C;
    line-height: 35px;
    margin-bottom: 25px;
}
.pdu_step{
    width: 100%;
}
.pdu_step ul li{
    font-size: 21px;
    color:#5C5C5C;
    line-height: 35px;
    list-style-type: circle;
}
.email_box{
    width: 100%;
    margin:0 auto;
    text-align: center;
}
.email_box .inputReg{
    width:22%;
    padding:13px 10px;
    text-align: left;
}
.break-padding{
    width: 80%;
}
.white{
    color: #fff;
}
.orange{
    color: #FF610F;
}
.small{
    font-size:18px;
    color:#5C5C5C;
    margin-bottom:40px;
}
.smallMobile{
    display:none;
}
.orange-button{
    border-bottom: 0.25px solid #FF610F;
    margin-bottom: 15px;
}
.spacer{
    height: 50px;
}
.flex-row{
    display: flex;
}
.orange-border-left{
    border-right: 1px solid #FD541F;
    padding: 0px 10px;
}
.padding-bottom{
    padding: 10px 0px;
}
.button {
    background-color: #FF610F; /* Default background color */
    color: white; /* Default text color */
    padding: 10px 28px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Drop shadow */
    cursor: pointer;
    position: relative; /* For the pseudo-element positioning */
    overflow: hidden; /* Ensure gradient does not overflow */
    transition: background-color 0.3s ease;
    margin-top: 40px;
}
.button1{
    background-color: #FF610F; /* Default background color */
    color: white; /* Default text color */
    padding: 10px 28px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Drop shadow */
    cursor: default;
    position: relative; /* For the pseudo-element positioning */
    overflow: hidden; /* Ensure gradient does not overflow */
    transition: background-color 0.3s ease;
    margin-top: 40px;
}

.button:hover{
 background-color: white;
 color: #FD541F;

}
.link {
    color: #16B8D9;
  
}

.link:hover {
    text-decoration: underline;
}
.flex-middle{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-center{
    text-align: center;
}

.navbar-container {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #361B74;
    display: flex;
    justify-content: center;
    box-shadow: 0 9px 6px rgba(18, 17, 17, 0.1);
    z-index: 100;
}

.navbar {
    width: 100%;
    max-width: 1360px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
}

.logo {
    width: 180px;
    height: auto;
    padding-right: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex: 3;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-links li {
    padding: 10px;
    text-align: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #FF610F;
}

.nav-links a:not(.register-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #FF610F;
    transition: width 0.3s ease;
}

.nav-links a:not(.register-button):hover::after {
    width: 100%;
    left: 0;
    background: #FF610F;
}

.register-button {
    background-color: #FF610F;
    color: white;
    padding: 11px 25px;
    border-radius: 20px;
    font-weight: bold;
}

.register-button:hover {
    background-color: white;
    color: #FF610F;
}

/* Hamburger menu for mobile view */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Cross icon */
.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* -------------Countdown Section---------------     */
.countdown-section {
    /*background: linear-gradient(to bottom right, rgba(56, 24, 131, 1) 20%, rgba(253, 84, 31, 1) 100%);*/
    background: url("src/bg_hero.png"), linear-gradient(to bottom right, rgba(56, 24, 131, 1) 20%, rgba(253, 84, 31, 1) 100%);
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: left;
    background-position:left;
    padding: 100px 20px;
    width: 100%;
    position: relative;
}
.pmi_host_logo_icon_block{
    position: absolute; right: 20px; bottom: 20px;
}
.exhibutors-section{
    background: linear-gradient(to bottom right, rgba(56, 24, 131, 1) 20%, rgba(253, 84, 31, 1) 100%);
    color: white;
    text-align: left;
    padding: 80px 20px;
    width: 100%;
}

.countdown-container {
    max-width: 1260px;
    margin: 0 auto;
}
.countdown-section h1{
    font-size: 50px;
}
.countdown-section h3{
    font-size: 24px;
    margin-bottom: 10px;
}


h1, h2 {
    margin-bottom: 20px;
}
.host_logo{
    width:200px;
    margin-bottom: 20px;
}
.host_logo1{
    width:200px;
}
.countdown-timer {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
.countdown-item{
    /*background: rgba(255, 255, 255, 0.2); */
    background:rgb(142 136 136 / 20%);
    /* White with transparency 
    backdrop-filter: blur(10px); /* Blur effect */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.3); /* Optional border for added effect */
    
}
.countdown-item.one{
    border-bottom-color:#FD541F ;
    color: #FD541F;
}
.countdown-item.two{
    border-bottom-color:#25A9CD ;
}
.countdown-item.three{
    border-bottom-color:#BA8FFF ;
}
.days{
    color: #FD541F;
}
.hours{
    color: #25A9CD;
}
.minutes{
    color: #BA8FFF;
}

.countdown-value{
    font-size: 3rem;
    display: block;
}

.countdown-label {
    font-size: 1.2rem;
}

/* -----------------------Overview Section------------------------------- */
/* Overview Section */
.overview-section {
    background: #f9f9f9; /* Light background color */
    padding: 100px 20px;
    width: 100%;
    text-align: left;
}




.overview-row {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of boxes on smaller screens */
    gap: 20px; /* Space between boxes */
    padding-top: 10px;
}

.overview-box {
    background: #ffffff;
    padding: 20px;
    flex: 1; /* Allows boxes to grow and shrink */
    min-width: 220px; /* Ensures minimum width of each box */
}


.overview-box h4 {
    font-size: 22px;
}
.wa-icons{
    width:74px;height:74px;margin-bottom:20px
}
.wa-fourth-heading-block{
    height:62px;
}


/* Overview Section */
.overview-section {
    background: #fff; /* Light background color */
    padding: 80px 20px;
    width: 100%;
    text-align: left;
}

.overview-container {
    max-width: 1260px;
    margin: 0 auto;
}


.overview-intro {
    display: flex;
    align-items: flex-start; /* Align items to the start of the container */
    gap: 15px; /* Space between the icon and text */
    margin-bottom: 60px;
}

.intro-icon {
    font-size: 36px; /* Adjust size as needed */
    color: #FF610F; /* Icon color */
   margin-top: 20px;
}


.overview-box h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
.overview-intro p{
    margin-left: 15px;
}

/* ----------------Venew------------- */
.venue-section{
    background-image: url("./src/venueBG_One2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 80px;
    padding-bottom: 80px;
}
.percentage-div{
    width: 75%;
    padding-bottom: 20px;
}
.venue-intro{
    padding-top: 30px;
    display: flex;
}
.map-para{
    font-size: 30px;
    color: #6548aa;
    text-decoration: underline;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-left: 20px;

}
.margin-right{
    margin-right: 20px;
}
.venue-icon{
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.registration-intro{
    display: flex;
}
.margin-remove{
    margin: 0px;
}

/*--------------------- Resgistration ----------------------------*/
.registration-section {
    background: #fff; 
    padding: 80px 0px;
    width: 100%;
    text-align: left;
}
.register-button-div{
    display: flex;
    justify-content: center;
}
.registration-row {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of boxes on smaller screens */
    gap: 20px; /* Space between boxes */
    padding-top: 10px;
}
.resgistratin-box {
    background: #ffffff;
    padding: 20px;
    flex: 1; /* Allows boxes to grow and shrink */
    min-width: 220px; /* Ensures minimum width of each box */
}
.gst-para{
    font-size: 18px;
}
.sponsors-inner-block{
    width: 100%;display: flex;justify-content: space-between;
}
.sponsor-a{
    width:30%;
}
.sponsor-image-block{
    text-align: left;
}
    .sponsor-image{
        width: 100%;height:auto;
    }
    .sponsor-a-head{
        font-size: 28px;margin-bottom: 20px;
    }
    .sponsor-image-b{
        padding-top:18px;
        width:100%;
    }
    

/* Caurosel */
.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    display: none;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  .carousel-slide img {
    width: 100%;
    display: block;
  }
  
  .carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  /*-----------Caurosel2--------------------------------------- */
.carousel1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide1 {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  .carousel-slide1 img {
    width: 100%;
    display: block;
  }
  
  .carousel-prev1, .carousel-next1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  .carousel-prev1 {
    left: 10px;
  }
  
  .carousel-next1 {
    right: 10px;
  }
  
  .carousel-prev1:hover, .carousel-next1:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

/*--------------------- AGENDA ----------------------------*/   
.agenda-section {
    background: linear-gradient(to bottom right, rgba(56, 24, 131, 1) 20%, rgba(253, 84, 31, 1) 100%);
    color: white;
    padding: 80px 20px;
    width: 100%;

}
.agenda-container {
    max-width: 1260px;
    margin: 0 auto;
    text-decoration: none;
    background-color: #361B74;
    padding: 20px 100px 40px 100px;
    border-radius: 60px;
}
.agenda-tabs-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.tabs {
    text-align: center;
    margin-bottom: 20px;
    width: 50%;
}

.tab-link {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 20px;
    transition: background-color 0.3s;
    font-size: 18px;
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.577);
    width: 45%;
}

.active-tab-one{
    color: #d97945;
    border-right: 1px solid #ffffff48;
    border-bottom: 1px solid #ffffff48;
}

.active-tab-two{
    color: #d97945;
    border-left: 1px solid #ffffff48;
    border-bottom: 1px solid #ffffff48;
}



.agenda-info {
    text-align: center;
    margin-bottom: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.agenda-table th, .agenda-table td {
    text-align: left;
    padding: 13px;
    font-size: 20px;
    vertical-align: top;
}
.agenda-table td {
    padding-left: 0px;
    line-height: 24px;
}
.agenda-table th {
    font-size: 24px;
}
.orange-box{
    background-color: #FD541F; 
    padding: 16px;
    padding-bottom: 16px;
}

.td-time-block{
    width: 20%;
}
.td-middle-column{
    width: 30%;
}
.td-equil-column{
    width:24%;
}
.grey-box {
    width:100%;
    float: left;
    color:#000;
    background-color: #cdcdcd;
    font-size: 16px!important;
    padding:8px 6px;
}
.td-third-column{
    border-left: 1px solid #FD541F;
    vertical-align: middle !important;
    padding-left: 40px !important;
}
/* .rest{
    line-height: 18px !important;
} */

/* .td-time-block.rest{
    line-height: 18px;
} */
.td-details-block{
    width: 80%;
}

.main-container.sponsor-block{
    padding:80px 0px 120px;
}


/*------------------Conference Highlights CSS Starts--------------------------------*/


.section-conference-highlights{
    /* background: linear-gradient(to left #rgb(255, 255, 255) #f78a5f); */
    background: linear-gradient(45deg, rgba(56, 24, 131, 1) 0%, rgba(253, 84, 31, 1) 100%);
    width: 100%;
}
.main-container{
    max-width: 1260px;
    margin: 0px auto;
    padding: 80px 0px;
}
.conference-heading-block{
    padding-bottom: 20px;
}

.conference-highlights-container-row-1{
    /* display: flex;
    flex-wrap: nowrap;
    gap: 48px; */
    display:grid ;
    grid-template-columns: auto auto auto;
    row-gap: 50px;
    column-gap: 32px;
}
.conference-highlights-inner-block-1{
    position: relative;
    width: 100%;
    /* min-width: 280px;
    max-width: calc(33.333% - 32px); */
    border-top-left-radius: 16px;
    padding: 20px;
    height: 260px;
    border-left: 2px solid #FD541F;
    overflow: hidden;
    /* border-top: 2px solid #FD541F */
}
.conference-highlights-inner-block-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  border-top: 2px solid #FD541F;
  border-radius: 16px 0 0 0;
}
.conference-highlights-top-block{
    width: 80%;
    position: relative;
    height: auto;
}

.conference-highlights-top-block h1{
    color: #fff;
    font-size: 40px;
    font-family: 'Agrandir Bold';
}

.conference-highlights-back-block{
    position: absolute;
    background-color: #fff;
    top: 2px;
    left: 0;
    padding: 20px;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    font-size: 28px;
    opacity: 0;  
}

.conference-highlights-back-block p{
    font-family: 'Agrandir';
    font-size: 28px;
    color:#5C5C5C;
    line-height: 36px;
}

.conference-highlights-inner-block-1:hover .conference-highlights-top-block{
    opacity: 0;
    transition: 0s;
    /* background-color: #fff; */
}
.conference-highlights-inner-block-1:hover .conference-highlights-back-block{
    opacity: 1;
    transition: 0.8s;
    /* background-color: #fff; */
}
/* .conference-highlights-back-block:hover{
    
    opacity: 1;
    transition: 0.8s;
} */

/* -------------------------speakers----------------------------- */
.speaker-section{
    width: 100%;
    background-color: #fff;
}
.speaker-container-row-1{
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 32px;
    column-gap: 32px;
}
.speaker-inner-block-1{
    position: relative;
    cursor: pointer;
}
.speaker-inner-block-1 .black-img{
    width: 100%;
    height: 100%;
    opacity: 1;
}

.speaker-inner-block-1 .color-img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}
/* .speaker-inner-block-1:hover .black-img{
    opacity: 0;
} */
.speaker-inner-block-1:hover .color-img{
    opacity: 1;
    transition: opacity 0.5s ease;
}
.video-row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.video-row .video{
    flex:0 48%;
    margin:20px 10px;
}
.video-row .img-text{
    width: 100%;
    font-size: 18px;
    text-align: center;
}
/*-----------------PopUp-------------------Css */

.popup {
    position: fixed;
    top: 95px;
    right: -100%;
    width: 40%;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
    font-family: 'Agrandir',sans-serif;
    font-weight: 300;
}

/*Changed css*/

.popup2{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000cc;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
    font-family: 'Agrandir',sans-serif;
    font-weight: 300;
    display: none;
    justify-content: center;
    align-items: center;
    
}

.popup2-Block{
    position: relative;
    width: 40%;
    background-color: #fff;
    border-radius: 40px 40px 30px 30px;
}
.popup2.active2 {
    display: flex;   
}
.popup.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 45px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding:0px 0px 10px 10px;
}


.pop-con-1{
    border-top-left-radius: 30px;/*Changed css*/
    border-top-right-radius: 30px;/*Changed css*/
    width: 100%;
    height: auto;
    background-color: #3E227D;
    padding: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.popup-a-block{
    width: 100%;
    height: auto;
    background-color: #3E227D;
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    
}

.popup-b-block{
    padding: 70px;
    width: 100%;
    display: flex;
    height: auto;
    overflow-y: auto;
}

.pop-a2-block{
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: end;
}
.popup-name-discription{
    width: 85%;
    color: #fff;
    font-size: 20px; 
    text-align: right;
    font-family: 'Agrandir',sans-serif;
    font-weight: 400;
}
.popup-name-discription1{
    color: #fff;
    font-size: 18px; 
    text-align: right;
    font-family: 'Agrandir',sans-serif;
    font-weight: 300;
}


.popup-img-block{
    width: 50%;
}
.popup-image{
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.popup-bio-para{
    line-height: 30px;
    font-size:18px;
    font-family: 'Agrandir',sans-serif;
}

.img{
    width: 100%;
}

.popup-content-block{
    width: 55%;
    align-self: end;
    /* padding-right:20px ; */
    text-align: right;
}

.popup-content-block h3{
    color: #fff;
    padding-bottom: 0px;
    font-size: 24px;
    line-height: 24px;
    font-family: 'Agrandir',sans-serif;
    font-weight: 300;
}
.popup-content-block h4{
    color: #fff;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.popup-content-block p{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

/* FOOTER STYLES */
.footer {
    background: black; /* Blue gradient */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-text {
    margin: 0;
    font-size: 14px;
}

.footer-info a {
    color: #d4e1e8; /* Light blue for links */
    text-decoration: none;
    font-weight: bold;
}

.footer-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* Your styles for tablets */
@media (min-width: 600px) and (max-width: 1024px) {
  .section {
    padding: 80px 30px 20px 30px;
}
.conference-section {
    padding: 80px 30px 20px 30px;
}
.registration-section {
    background: #fff;
    padding: 80px 0px;
    width: 100%;
    text-align: left;
}
.venue-section {
    padding:80px 30px;
}
.percentage-div{
    width:100%;
}
.venue-intro {
    padding-top:0px
}
.resgistratin-box {
    background: #ffffff;
    padding: 20px;
    flex: 0;
    min-width: 220px;
}
}
@media (min-width: 1401px) and (max-width: 1600px) {
    .popup2-Block{
        width:55%;
    }
}

@media (min-width: 1024px) and (max-width: 1400px) {
    
    .popup2-Block{
    position: relative;
    width: 60%;
    background-color: #fff;
    border-radius: 40px 40px 30px 30px;
}
    
}


/*-----------------------Tab View--------------------------*/

@media (max-width: 1024px) {

    .main-container{
        max-width: 100%;
         margin: 0px auto;
         padding: 60px 24px;
     }

    .conference-highlights-container-row-1{
        grid-template-columns: auto  auto;
        
    }

    .conference-highlights-top-block{
        width: 100%;
        position: relative;
        height: auto;
    }
    /* .conference-highlights-container-row-1{
        flex-wrap: wrap;
    } */
    .break-padding{
        width: 100%;
    }
  .speaker-container-row-1{
    grid-template-columns: auto auto ;
}
  .popup {
    width: 100%;
    top:0;
}

}

/*------------------------------------- Mobile Css---------------------------------------------------- */


@media (max-width: 768px) {

    .countdown-container {
        padding:40px 10px;
    }
    .countdown-timer{
        gap:15px
    }
    .button{
        font-size: 18px;
        margin-top: 20px;
    }
    .paragraph{
        font-size: 16px;
        line-height: 24px;
    }
    .sub-heading{
        font-size: 30px;
        line-height:40px;
        margin-bottom: 25px;
    }
    .navbar {
        padding: 10 15px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #361B74;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 0;
        margin: 0;
        box-shadow: 0 9px 6px rgba(18, 17, 17, 0.1);
        padding-bottom: 30px !important; /* Added padding to the bottom of the menu */
    }
    .register-button{
        padding:17px 19px !important;
    }
    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        padding-right: 10px;
    }
    .section{
        padding: 40px 16px;
    }
    .conference-section{
        padding: 0px 16px 0px ;
    }
    .percentage-div{
        width: 100%;
        padding: 0px;
    }
    .countdown-section{
        padding: 40px 16px;
    }
    .registration-section{
        padding: 40px 16px;
    }
    .registration-row{
        flex-direction: column;
        justify-content: center;
        display: none;
    }
    
    .overview-row.orange-border-left{
        border: 0px;
    }
    .overview-intro p {
        margin: 0px;
    }
    .intro-icon{
        margin-top: 10px;
    }
    .intro-icon img{
        width: 45px;
        height: auto;
    }
    .overview-intro {
        margin-bottom: 40px;
    }
    .overview-box {
        padding: 0px;
    }
    .overview-box h4 {
    font-size: 22px;
    line-height: 30px;
    }
    .wa-icons{
    width:50px;height:auto;margin-bottom:12px
    }
    .wa-fourth-heading-block{
    height:auto;
}
    .orange-border-left {
        border-right: 0px;
    }
    .paragraph {
        margin-bottom:16px;
    }

    /* Agenda */

    .agenda-section {
        padding: 40px 16px;
    }
    
    .tabs {
        width: 100%;
    }
    .agenda-container{
        padding: 10px 15px;
        border-radius: 24px;
    }
    .agenda-table th, .agenda-table td {
        font-size: 14px;
    }

    .agenda-table td {
        padding-right: 0px;
    }

    .td-time-block{
        width: 30%;
    }
    .td-middle-column{
        width: 30%;
    }
    .td-third-column{
    padding-left: 20px !important;
}
    .rest{
        line-height: 18px !important;
    }

    .td-time-block.rest{
        line-height: 18px;
    }
    .td-details-block{
        width: 70%;
    }

    .carousel-container {
        display: block;
    }
    .carousel-slide {  display: flex; justify-content: center; }
    .carousel-slide img {
        width: 70%;
        display: block;
    }
    .carousel-prev, .carousel-next {
       
        background-color: transparent;
        color: #fd531fd3;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 25px;
    }

    .carousel-prev:hover, .carousel-next:hover {
        background-color: transparent;
        color: rgb(56 24 131);

    }
    
    .carousel-slide1 {  display: flex; justify-content: center; }
    .carousel-slide1 img {
        width: 70%;
        display: block;
    }
    .carousel-prev1, .carousel-next1 {
       
        background-color: transparent;
        color: #fd531fd3;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 25px;
    }

    .carousel-prev1:hover, .carousel-next1:hover {
        background-color: transparent;
        color: rgb(56 24 131);

    }

    .gst-para{
        font-size: 14px;
        padding-top: 20px;
        text-align: center;
    }
    .small{
    display:none;
    }
    .smallMobile{
        display:block;
        font-size:14px;
        color:#5C5C5C;
        margin-bottom:20px;
    }
    .logo-size{
        width:74px;
        height:74px;
    }

    .countdown-section h1{
        font-size:40px;
        line-height: 48px;
        padding-top:10px;
        margin-bottom:10px;
    }
    .countdown-section h3 {
        font-size:20px;
        line-height: 26px;
    }
    .host_logo{
        margin-bottom:0px;
    }
    .host_logo1{
        width:120px;
    }
    .main-container.sponsor-block{
        padding:40px 16px 80px;
    }
    .sponsors-inner-block{
    width: 100%;display: flex;justify-content: space-between;flex-direction:column;
}
.sponsor-a{
    width:100%;
}
.sponsor-a-head{
        font-size: 20px;margin-bottom: 12px;
    }
    
    .exhibutors-section{
        padding: 40px 16px;
    }


    /*------------------Conference Highlight-------------------------*/

    .break-padding{
        width: 100%;
    }

    .conference-highlights-container-row-1{
        grid-template-columns: auto  auto;
        row-gap: 24px;
        column-gap: 24px;
    }
  .conference-highlights-inner-block-1 {
    max-width: 100%;
    padding: 12px 0px 0px 8px;
    height: auto;
  }
  .speaker-container-row-1{
    grid-template-columns: auto auto ;
    }

    .main-container{
    max-width: 100%;
        margin: 0px auto;
        padding: 40px 16px;
    }

    .conference-highlights-inner-block-1::before {
        width: 100%;
    }

    .conference-highlights-top-block{
        width: 100%;
        position: relative;
        height: auto;
    }

    .conference-highlights-top-block h1{
        font-size: 18px;
        line-height: 26px;
        margin-bottom:8px;
    }

    .conference-highlights-back-block{
        position: relative;
        opacity: 1;
        background-color: transparent ;
        padding: 0px;
    }

    .conference-highlights-back-block p{
        font-family: 'Agrandir';
        font-size: 12px;
        color:#fff;
        line-height: 18px;
        font-weight: 300;
        padding: 0px 0px 8px;
    }

    .speaker-inner-block-1 .black-img{
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    .speaker-inner-block-1 .color-img{
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .conference-highlights-inner-block-1:hover .conference-highlights-top-block{
        opacity: 1;
        transition: 0s;
        /* background-color: #fff; */
    }
    .sponsor-image{
            width: 60%;height:auto;
        }
        .sponsor-b{
            padding-top:18px;
            
        }
        .sponsor-image-b{
            padding-top:10px;
            width:100%;
        }
        .sponsor-image-block{
    text-align: center;
}
    /*------------------Popup-------------------------*/

    .popup {
        width: 100%;
        top:0;
    }
    .close-btn {
        font-size:35px;
    }

    .pop-con-1{
        padding: 16px ;
        row-gap: 16px;
    }

    /*Changed Css*/
    .popup2 {
        width: 100%;
        padding: 16px;
    }
    .popup2-Block{
        width: 100%;
        background-color: #fff;
        border-radius: 30px;
    }
    .popup-bio-para{
        padding-bottom:20px;
    }
    /*Changed Css*/

    .popup-img-block{
        width: 55%;
    }
    .popup-content-block {
        width: 40%;
    }
    .popup-content-block h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .popup-name-discription {
        width: 100%;
        font-size: 14px;
        font-weight: 300;
    }
    .popup-name-discription1 {
        width: 100%;
        font-size: 12px;
        font-weight: 300;
    }
    .popup-b-block{
        padding: 30px 16px 0px;
        width: 100%;
        display: flex;
        height: auto;
        overflow-y: auto;
    }

    .register-para-icon-block{
        width: 28px;
    }

    .margin-right {
        margin-top: 2px;
        width: 16px;
    }

    .map-para{
        font-size:20px;
    }
    .venue-icon{
        width:40px;
        height:40px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #361B74;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 0;
        margin: 0;
        box-shadow: 0 9px 6px rgba(18, 17, 17, 0.1);
        z-index:3;
    }

    .nav-links li {
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 30px;
        background-image: url('https://marketingcampaign.online/PMI/src/svg/Bars.svg'); /* Replace with your hamburger icon */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hamburger.active {
        background-image: url('https://marketingcampaign.online/PMI/src/svg/x.svg'); /* Replace with your cross icon */
    }

    .hamburger .line {
        display: none; /* Hide the lines when using background images */
    }

    .footer-text {
        margin: 0;
        font-size: 10px;
    }
    .container-footer {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px;
    }
    .footer{
        padding:20px 0px;
    }
    .video-row .video {
      flex: 0 100%;
      margin: 20px 0px;
    }

}

.share-button button{
    background:#FF610F;
    border: none;
    padding:10px 15px;
    font-size:18px;
    color:#fff;
    border-radius: 15px;
    cursor:pointer;
    margin-top: 10px;
}