@import "footer.css";

:root {
    scroll-behavior: smooth;
    --default-font: "Poppins", sans-serif;
    --heading-font: "Inter", sans-serif;

    --theme-orenge: #ef781f;
    --theme-green: #027430;
    --theme-blue: #004d95;
        
    --theme-title: #01022E;
    --theme-btn: #205698;
    --theme-btn-hover: #2A4071;
    --theme-btn-text: #1E1A4D;
    --theme-lavender: #DDECFF;
    --snow-white: #F8F9FC;
    
    --white: #ffffff;
    --black: #000000;

    --grey-600: #DEDEDE;
    --grey-700: #797979;
    --alice-blue: #F0F7FF;
    --davy-grey: #58595E;
    --purple-blue: #3F3F72;
    --dark-navy: #000431; 
    --royal-blue: #010180;
    --soft-grey: #eeeeee;
    --cyan: #EEFEFF;
    --dark-grey: #3A3A3A;
    --bright-grey: #3F3F49;
    --aqua-white: #F1F5F9;
    --tealish-blue: #2A4071;
    --black-cow: #3F4849;
    --black-bean: #151717;
    --davy-grey: #425466;
    --dust-grey: #666667;
    --silver: #C6C6CD;
    --border: #e2e8f0;
    --light: #f8fafc;

    --gradient1: #0F0058;
    --gradient2: #0656B8;
}

body {
    background-color: var(--white);
    font-family: var(--default-font);
    scroll-behavior: smooth;
    overflow-x: hidden;
}
p, label, a, p, li, span, strong, b {
    font-family: var(--default-font);
}
p {
    color: var(--black);
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0.32px;
}
li {color: var(--black-500);}
a {
    color: var(--theme-orenge);
    text-decoration: none;
    transition: 0.3s;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--default-font);
}
.fs-14 {
    font-size: 14px;
}
.fs-18 {
    font-size: 18px !important;
}
section {
    padding: 60px 0px;
    scroll-margin-top: 160px;
}

/* Theme title */
.theme-title, .theme-sm-title {
    color: var(--theme-title);
    font-weight: 600;
    position: relative;
}
.theme-title {
    font-family: var(--default-font);
    font-size: 28px;
}
.theme-sm-title {
    font-family: var(--heading-font);
    font-size: 18px;
}
/* Theme title end */

.checklist-list {

}
.checklist-list li {
    padding-left: 26px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #f2eded;
}
.checklist-list li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}
.checklist-list li:before {
    content: "\f272";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 4px;
    left: 0px;
    font-size: 20px;
}

/* website project name */
.pro-name .sus, .pro-name .chem, .pro-name .e, .pro-name .ver {
    font-weight: 600;
    font-family: var(--heading-font);
}
.pro-name .sus {
    color: var(--theme-green);
}
.pro-name .chem {
    color: var(--theme-blue);
}
.pro-name .e {
    color: var(--theme-orenge);
}
.pro-name .ver {
    color: var(--theme-green);
}
/* website project name */

/* scroll to top */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--theme-btn);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    transition: all 0.4s;
}
a#scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--theme-blue), transparent 20%);
    color: var(--white);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
/* scroll to top end */

/* Theme buttons */
.theme-btn-primary, .theme-btn-outline {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 400;
    border-radius: 7px;
    padding: 12px 24px;
    text-transform: capitalize;
    transition: 0.4s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.theme-btn-primary {
    background-color: var(--theme-btn);
    color: var(--white);
}
.theme-btn-primary.with-icon {
    padding: 6px 6px 6px 16px;
}
.theme-btn-primary.with-icon .c-arrow {
    background-color: var(--white);
    color: var(--theme-btn);
    padding: 6px;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.theme-btn-primary.with-icon .c-arrow i {
    transform: rotate(-45deg);
        transition: 0.3s;
}
.theme-btn-primary:hover {
    background-color: var(--theme-btn-hover);
    color: var(--white);
}
.theme-btn-primary:hover .c-arrow i {
    transform: rotate(0deg);
}
.theme-btn-outline {
    background-color: transparent;
    color: var(--theme-btn-text);
    border: 1px solid var(--theme-btn);
}
.theme-btn-outline:hover {
    background-color: var(--theme-btn-hover);
    border-color: var(--theme-btn-hover);
    color: var(--white);
}

.floated-btn {
    background: linear-gradient(0deg, var(--gradient1) 26.09%, var(--gradient2) 100%);
    font-size: 16px;
    display: inline-block;
    position: fixed;
    top: 30%;
    right: 0;
    text-align: center;
    text-decoration: none;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    z-index: 2;
}
.floated-btn.with-icon .c-arrow {
    font-size: 15px;
    padding: 2px;
    width: 26px;
    height: 26px;
}
.floated-btn:hover, .floated-btn:focus {
    background: linear-gradient(180deg, var(--gradient1) 26.09%, var(--gradient2) 100%);
    color:  var(--white);
}
/* Theme buttons */

.divider {
    margin: 2rem 0;
    position: relative;
}
.divider-text::before,
.divider-text::after {
    content: "";
    flex: 1;
    border-top: 1px solid #dee2e6;
}
.divider-gradient {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--tealish-blue), transparent);
}

/* Hero section */
.hero-section {
    padding: 0px;
}
.hp-hero-slider .swiper-button-prev {
    left: 3%;
}
.hp-hero-slider .swiper-button-next {
    right: 3%;
}
.hp-hero-slider .swiper-button-prev, .swiper-navigation-icon, .hp-hero-slider .swiper-button-next, .swiper-navigation-icon {
    font-size: 14px;
}
.hp-hero-slider .swiper-button-prev, .hp-hero-slider .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    padding: 13px;
}
.hp-hero-slider .swiper-button-prev svg, .hp-hero-slider .swiper-button-next svg {
    font-size: 16px;
}

.hero-section .swiper-caption {
    position: absolute;
    top: 48%;
    left: 20%;
    transform: translate(-20%, -30%);
    width: 100%;
}
.hero-section .swiper-caption h2 {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 66px;
    font-weight: 600;
    line-height: 74px;
    text-transform: capitalize;
    width: 577px;
}
.hero-section .swiper-caption .banner-list {
    display: flex;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.20);
    width: 577px;
    margin-top: 40px;
}
.hero-section .swiper-caption .banner-list ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 0px;
}
.hero-section .swiper-caption .banner-list ul li {
    position: relative;
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: 0.28px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
}
.hero-section .swiper-caption .banner-list ul li::before {
    content: "\f287";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: 7px;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    margin-right: 10px;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;;
}

.hp-hero-slider .swiper-pagination {
    left: 90px;
    bottom: 10%;
    text-align: left;
}
.hp-hero-slider .swiper-pagination-bullet {
    background: var(--white);
    width: 30px;
    height: 5px;
    border-radius: 2px;
    opacity: 0.8;
}
.hp-hero-slider .swiper-pagination-bullet-active {
    background: var(--theme-orenge);
}
@media (max-width: 767.98px) {
    .hp-hero-slider .swiper-pagination {
        left: 80%;
        bottom: 38%;
    }
}
@media (max-width: 575.98px) {
    .hp-hero-slider .swiper-pagination {
        left: 76%;
        bottom: 31%;
    }
}

/* Hero section End */

.action-grid-section {
    padding: 30px 0px 0px 0px;
}
.action-grid-section .card-wrapper {
    border-radius: 16px;
    border: 1px solid var(--grey-600);
    background: var(--alice-blue);
    padding: 40px 10px 40px 40px;
}
.action-grid-section .card-wrapper .col-md-4 {
    position: relative;
}
.action-grid-section .card-wrapper .col-md-4::after {
    content: "";
    background-image: url("../img/line.webp");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10%;
    right: 16px;
    width: 2px;
    height: 132.152px;
}
.action-grid-section .card-wrapper .col-md-4:last-child::after {
    display: none;
}
.action-grid-section .card-wrapper .theme-sm-title {
    margin-bottom: 20px;
}
.action-grid-section .card-wrapper p {
    color: var(--black);
    font-size: 14px;
    line-height: 24.345px;
    font-weight: 300;
    margin-bottom: 30px;
    padding-right: 10px;
}
.action-grid-section .card-wrapper .btn {
    width: 83%;
}

.hp-group-bg {
    background-image: url("../img/Upper-group-bg.webp");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 30px 0px 20px 0px;
}
.about-honour {
    background-image: url("../img/Chem-bg-pattern.webp");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 60px 0px;
}
.about-honour::after {
    content: "";
    background-image: url("../img/Molecule.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 156px;
    width: 156px;
}
.about-honour .content-wrapper {
    border-radius: 20.028px;
    background: linear-gradient(180deg, var(--gradient1) 26.09%, var(--gradient2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.about-honour .content-wrapper .left {
    background-color: var(--white);
    width: 40%;
    position: relative;
}
.about-honour .content-wrapper .left::after {
    content: "";
    background-image: url("../img/arrow-layer-shape.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    height: 100%;
    width: 50%;
    right: -15%;
}
.about-honour .content-wrapper .left img {
    width: 400px;
    /* aspect-ratio: 77 / 73; */
}

.about-honour .content-wrapper .right {
    padding: 20px 30px;
    width: 60%;
}
.about-honour .content-wrapper .right h2,
.about-honour .content-wrapper .right h3,
.about-honour .content-wrapper .right p {
    font-family: var(--heading-font);
    color: var(--white);
}
.about-honour .content-wrapper .right h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
}
.about-honour .content-wrapper .right h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6em;
    margin-bottom: 25px;
}
.about-honour .content-wrapper .right p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
}
.about-event-section {
    background: var(--white) url("../img/about-event-frame .webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
    overflow: hidden;
    position: relative;
}
.about-event-section .theme-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
    letter-spacing: 0.52px;
    line-height: 1.7em;
}
.about-event-section .theme-title::after {
    content: "";
    position: absolute;
    background-image: url("../img/linear-gradient-dark-left.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    bottom: 0;
    width: 60%;
    height: 2px;
    left: 0;
}
.about-event-section p {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1.8em;
    font-weight: 300;
}
.about-event-section .theme-title {
    padding-right: 2%;
}
.about-event-section p {
    padding-right: 5%;
}
.animation-right {
    position: relative;
}
.animation-right img {
    object-fit: contain;
}
.animation-right .animate-img1 {
    width: 415px;
    height: 415px;
}
.animation-right .animate-img2 {
    width: 156px;
    height: 162px;
    position: absolute;
    top: 0;
    left: 0;
}
.animation-right .animate-img3 {
    width: 159px;
    height: 164px;
    position: absolute;
    right: 5px;
    bottom: 0;
}
.animation-right .animate-img3 {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .animation-right .animate-img2 {
        top: 17px;
        width: 133px;
    }
    .animation-right .animate-img3 {
        bottom: 13px;
        width: 134px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .animation-right .animate-img2 {
        width: 140px;
        height: 182px;
    }
    .animation-right .animate-img3 {
        bottom: 6px;
        width: 142px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 991.98px) {
    .animation-right {
        margin-top: 16px;
    }
    .animation-right .animate-img3 {
        left: 251px;
    }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .about-event-section {
        padding: 30px 0px;
    }
    .about-event-section .theme-title {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 20px;
        padding-right: 0%;
    }
    .about-event-section p {
        padding-right: 0px;
            line-height: 1.6em;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 450px) {
    .animation-right .animate-img1 {
        width: 360px;
        height: 360px;
    }
    .animation-right .animate-img2 {
        width: 138px;
        height: 138px;
    }
    .animation-right .animate-img3 {
        left: 208px;
        height: 140px;
    }
}


.program-highlights-section {
    background-image: url("../img/program-highlights-bg.webp");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 60px 0px 120px 0px;
}
.program-highlights-section::before,
.program-highlights-section::after {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 190px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
}
.program-highlights-section::before {
    background-image: url("../img/left.webp");
    left: 0;
}
.program-highlights-section::after {
    background-image: url("../img/right.webp");
    right: 0;
}
.program-highlights-section .theme-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.program-highlights-section .theme-title::after {
    content: "";
    position: absolute;
    background-image: url("../img/linear-gradient-light.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: 0;
    width: 320px;
    height: 2px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.program-highlights-slider .swiper-wrapper .swiper-slide {
    position: relative;
}
.program-highlights-slider .swiper-wrapper .swiper-slide img {
    width: 100%;
}
.program-highlights-slider .swiper-wrapper .swiper-slide::before {
    content: "";
    position: absolute;
    background-image: url("../img/linear-line.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: 0;
    width: 100%;
    height: 2px;
}
.program-highlights-slider .swiper-wrapper .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    border-radius: 260px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 39.38%, rgba(0, 0, 0, 0.56) 62.5%, rgba(0, 0, 0, 0.00) 114.47%);
    filter: blur(32px);
    width: 260px;
    height: 120px;
}
.program-highlights-slider .swiper-wrapper .swiper-slide .img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 18px;
}
.program-highlights-slider .swiper-wrapper .swiper-slide .img-caption h6,
.program-highlights-slider .swiper-wrapper .swiper-slide .img-caption p {
    color: var(--white);
}
.program-highlights-slider .swiper-wrapper .swiper-slide .img-caption p span {
    font-size: 14px;
    font-weight: 400;
}
.program-highlights-slider .swiper-wrapper .swiper-slide .img-caption h6 {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.14px;
    text-transform: capitalize;
}
.program-highlights-slider .swiper-wrapper .swiper-slide .img-caption p {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0.28px;
}
.program-highlights-slider .swiper-wrapper .swiper-slide a.link {
    background: linear-gradient(180deg, #FFF -3.53%, rgba(255, 255, 255, 0.76) 20.83%, rgba(255, 255, 255, 0.26) 80.42%, rgba(255, 255, 255, 0.00) 102.59%);
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 8px;
    width: 148px;
    color: var(--black);
    text-align: right;
    padding: 3px 14px;
    font-size: 14px;
    transition: all .2s ease;
    opacity: 0;
}
.program-highlights-slider .swiper-wrapper .swiper-slide a.link i {
    font-size: 12px;
    margin-left: 5px;
}
.program-highlights-slider.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: linear;
	margin: 0 auto;
}
.program-highlights-slider .swiper-wrapper .swiper-slide:hover a.link {
    opacity: 1;
}
.hp-group-bg2 {
    background-image: url("../img/hp-group-bg2.webp");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    position: relative;
    padding: 0px 0px 20px 0px;
}
.hp-our-partners-section {
    position: relative;
}
.hp-our-partners-section::before {
    content: "";
    background: linear-gradient(180deg, #FFF -3.53%, rgba(255, 255, 255, 0.76) 20.83%, rgba(255, 255, 255, 0.26) 80.42%, rgba(255, 255, 255, 0.00) 102.59%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hp-our-partners-section .container {
    position: relative;
    z-index: 2;
}
.hp-our-partners-section .theme-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.hp-our-partners-section .theme-title::after {
    content: "";
    position: absolute;
    background-image: url("../img/linear-gradient-dark.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: 0;
    width: 190px;
    height: 2px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.hp-our-partners-section .theme-title svg {
    fill: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);;
}

.abstract-register-grid-section {
    padding: 60px 0px 30px 0px;
    position: relative;
}
.abstract-register-grid-section::before,
.abstract-register-grid-section::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    opacity: 0.7;
}
.abstract-register-grid-section::before {
    background-image: url("../img/molecule2.webp");
    background-position: left;
    width: 136.428px;
    height: 140.736px;
    top: 0;
    left: 0;
}
.abstract-register-grid-section::after {
    background-image: url("../img/molecule3.webp");
    background-position: right;
    width: 136.428px;
    height: 140.736px;
    bottom: 0;
    right: 0;
}
.abstract-register-grid-section .card {
    background: var(--white);
    border-radius: 12px;
    border: 0.659px solid rgba(216, 216, 216, 0.00);
    box-shadow: 0 11.103px 66.62px 0 rgba(0, 0, 0, 0.15);
    margin-right: 20px;
    background-blend-mode: lighten;
    backdrop-filter: blur(13.842625617980957px);
    position: relative;
    transition: all .2s ease;
    z-index: 2;
}
.abstract-register-grid-section .card::after {
    content: "";
    background-color: var(--theme-btn);
    width: 100%;
    height: 100%;
    border-radius: 22px;
    position: absolute;
    top: 0px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
}
.abstract-register-grid-section .card:hover {
    transform: translateX(10px);
}
.abstract-register-grid-section .card:hover::after {
    left: 0px;
}
.abstract-register-grid-section .card .card-body {
    background: var(--white);
    border-radius: 12px;
    padding: 22px 26px;
}
.abstract-register-grid-section .card .card-body h2 {
    margin-bottom: 20px;
}
.abstract-register-grid-section .card .card-body h2 img {
    max-width: 24px;
    margin-right: 16px;
}
.abstract-register-grid-section .card .card-body p {
    font-family: var(--heading-font);
    line-height: 1.6em;
    margin-bottom: 36px;
    font-weight: 300;
}

.event-venue-section {
    position: relative;
}
.event-venue-section .container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #BFBFBF;
    opacity: 0.89;
}
.event-venue-section .card {
    border-radius: 8px;
    background: var(--white);
    box-shadow: 4px 4px 10.5px 0 rgba(204, 204, 204, 0.16);
    position: relative;
    transition: all .3s ease;
    z-index: 2;
}
.event-venue-section .card::after {
    content: "";
    background: linear-gradient(180deg, var(--gradient1) 26.09%, var(--gradient2) 100%);
    border-radius: 8px;
    position: absolute;
    top: -4px;
    left: -4px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .3s ease;
}
.event-venue-section .card:hover::after {
    top: 4px;
    left: 4px;
}
.event-venue-section .card .card-body {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 8px;
}
.event-venue-section img {
    height: 311px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.event-venue-section .card h2 {
    margin-bottom: 12px;
}
.event-venue-section .card h2 i {
    color: var(--theme-title);
    margin-right: 12px;
}
.event-venue-section .card p {
    font-size: 16px;
    font-weight: 300;
}
.event-venue-section .card .card-body .link {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--purple-blue);
    text-decoration: underline;
}
.event-venue-section .card .card-body .link i {
    color: var(--purple-blue);
    margin-left: 4px;
    font-size: 14px;
}
.event-venue-section .card:hover .card-body .link,
.event-venue-section .card:hover .card-body .link i {
    color: var(--theme-orenge);
}

/* Internal page header */
.page-hero-section {
    background-image: url("../img/internal-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 370px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: start;
    width: 100%;
    position: relative;
}
.page-hero-section .container {
    margin-bottom: 0px;
}
.page-hero-section h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.36px;
    text-transform: capitalize;
}
/* Internal page header End */
.grey-bg-section {
    background-color: var(--snow-white);
}
.grey-bg-section .theme-title {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: -0.32px;
    margin-bottom: 24px;
}
.grey-bg-section p {
    /* color: var(--bright-grey); */
    color: var(--black);
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 1.8em;
    font-weight: 300;
}

.about-event-info-section {
    background-color: var(--snow-white);
}
.about-event-info-section .theme-title {
    font-weight: 600;
    letter-spacing: 0.52px;
    line-height: 1.7em;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
}
.title-line {
    font-family: var(--default-font);
    color: var(--theme-title);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.52px;
    line-height: 1.7em;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
}
.title-line::after {
    content: "";
    position: absolute;
    background-image: url(../img/linear-gradient-dark-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    bottom: 0;
    width: 60%;
    height: 2px;
    left: 0;
}
.line-md::after {
    width: 20%;
}

.about-event-info-section p {
    /* color: var(--bright-grey); */
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.32px;
    line-height: 1.8em;
    margin-bottom: 20px;
}
.about-event-info-section .col-xl-8 {
    padding-right: 40px;
}
.about-event-info-section .card-group {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}
.about-event-info-section .card-group .card {
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--aqua-white);
    background: var(--white);
    box-shadow: 0 10px 30px 0 rgba(43, 43, 43, 0.05);
    width: 100%;
    display: flex;
    flex-direction: row;
}
.about-event-info-section .card-group .card .card-icon {
    border-radius: 8px;
    background: #CDDBFD;
    margin-right: 16px;
    display: flex;
    min-width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}
.about-event-info-section .card-group .card .card-icon i {
    color: var(--royal-blue);
    font-size: 20px;
}
.about-event-info-section .card-group .card .card-content h4 {
    font-family: var(--heading-font);
    color: var(--black-bean);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
}
.about-event-info-section .card-group .card .card-content p {
    color: var(--black-cow);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 0px;
}

.collaborating-orgs-section .card-row-content {
    margin-top: 20px;
}
.collaborating-orgs-section .card {
    padding: 22px 38px;
    border-radius: 16px;
    background: var(--white);
    border: none;
    box-shadow: 0 0 1px 0 rgba(12, 26, 75, 0.24), 0 3px 8px -1px rgba(50, 50, 71, 0.05);
}
.collaborating-orgs-section .card img {
    max-width: 230px;
    margin: 0 auto 20px auto;
}
.collaborating-orgs-section .card h4 {
    color: var(--theme-title);
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.collaborating-orgs-section .card p {
    color: var(--davy-grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0.32px;
}
.collaborating-orgs-section .card a {
    color: var(--davy-grey);
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 12px;
    text-decoration: underline;
}
.org-modal p {
    color: var(--black-cow);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0.32px;
}
.org-modal .modal-header {
    border: none;
    padding: 0;
}
.org-modal .modal-header .btn-close {
    position: relative;
    right: 20px;
    top: 20px;
    font-size: 14px;
    z-index: 6;
}
.org-modal .modal-body {
    padding: 0px 60px 30px 60px;
    text-align: center;
}
.org-modal .modal-body #modalImage {
    margin: 0 auto;
    width: 220px;
}
.org-modal .modal-body h4 {
    color: var(--theme-title);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 20px;
}


.advisory-council-section {
    background-color: var(--snow-white);
    background: var(--snow-white) url("../img/about-event-frame .webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.advisory-council-section .card {
    border-radius: 16px;
    border: 1px solid var(--silver);
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}
.advisory-council-section .card .card-body h6 {
    color: var(--dust-grey);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17.5px;
    margin-bottom: 0px;
}
.advisory-council-section .card .card-body .card-title {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 12px;
}
.advisory-council-section .card .card-body p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 12px;
    letter-spacing: normal;
}
.advisory-council-section .card .card-body p.small {
    color: var(--dark-grey);
    font-size: 14px;
    margin-bottom: 7px !important;
    display: block;
    line-height: 1.5em;
}
.advisory-council-section .card .card-body .img-bordered {
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.advisory-committee-section .line {
    font-weight: 400;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;    
}
.advisory-committee-section .line span {
    background-color: var(--white);
    padding: 4px 20px;
}
.advisory-committee-section .line:after {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    display: inline-block;
    margin: 0 0 8px 20px;
    height: 3px;
    text-shadow: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #535353 55.29%, rgba(255, 255, 255, 0.00) 100%);
    width: 100%;
    z-index: -1;
}

.advisory-committee-section .advisor-card {
    background: var(--white);
    border-radius: 14px;
    padding: 14px;
    height: 100%;
    transition: all .35s ease;
    border: none;
    position: relative;
    overflow: hidden;
}
.advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient2);
    transform: scaleY(0);
    transition: .35s;
    transform-origin: top;
}
.advisor-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.advisor-card:hover::before {
    transform: scaleY(1);
}
.advisor-name {
    font-family: var(--heading-font);
    color: var(--dark-grey);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.university {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: #676767;
    margin-bottom: 0px;
}
.advisor-card:hover .advisor-name {
    color: var(--gradient2);
}

.tbl-sec .tbl-card .card-body .tbl-row:first-child {
    background-color: var(--theme-btn);
    color: var(--white);
}


.tbl-sec .tbl-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.tbl-sec .tbl-row {
    padding: 14px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}
.tbl-sec .tbl-row:last-child {
    border-bottom: 0;
}
.tbl-sec  .tbl-row text-muted {
    font-size: 14px;
}
.tbl-sec  .tbl-row .col-md-8 {
    color: var(--blue-800);
}
.tbl-sec .highlight {
    /* background: rgba(253, 126, 20, 0.08); */
    background: linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--soft-grey);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.contact-card:hover,
.contact-card.active {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--gradient1);
}
.contact-card .city-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gradient1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card .person-name {
    font-size: 18px;
    margin: 8px 0 14px;
    font-weight: 600;
    color: var(--black-800);
}
.contact-card .contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--black-500);
}
.contact-card .contact-info i {
    color: var(--gradient1);
    margin-right: 8px;
}
.contact-card .contact-info a {
    text-decoration: none;
    color: var(--black-500);
}
.contact-card .contact-info a:hover {
    color: var(--theme-orenge);
}


.important-dates-section {
    background: var(--white);
}
.dates-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.dates-card-wrapper .card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid var(--soft-grey);
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: 0.35s ease;
}
.dates-card-wrapper .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.dates-card-wrapper .card.active {
    background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
    color: var(--white);
    border: none;
}
.dates-card-wrapper .card.active p {
    color: rgba(255,255,255,0.85);
}
.dates-card-wrapper .card.active .date-badge {
    background: var(--white);
    color: var(--theme-blue);
}
.dates-card-wrapper .date-badge {
    display: inline-block;
    background: var(--theme-blue);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    text-align: center;
    width: 160px;
}
.dates-card-wrapper .card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.4em;
    font-weight: 600;
}
.dates-card-wrapper .card p {
    color: var(--black-500);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0px;
}

/* Horizontal cards */
.h-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    margin-bottom: 25px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.h-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(1, 1, 128, 0.01);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: 0.4s;
}
.h-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1, 1, 128, 0.45);
}
.h-card:hover::before {
    transform: scale(1.2);
}
.h-card .icon-box {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0101800d;
    position: relative;
    z-index: 2;
}
.h-card .icon-box i {
    font-size: 18px;
    color: var(--royal-blue);
}
.h-card h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0;
    color: var(--bright-grey);
    position: relative;
    z-index: 2;
}
/* Horizontal cards end */

/* Chairman Message CSS end */
.main-card {
    position: relative;
    overflow: hidden;
}
.main-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}
.main-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(25, 135, 84, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}
.content-area {
    position: relative;
    z-index: 2;
}
.main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -1px;
}
.objective-card {
    background: var(--white);
    background: transparent;
    /* border: 1px solid var(--border); */
    border-radius: 24px;
    gap: 20px;
    /* padding: 32px 28px; */
    padding: 20px 16px 0px 0px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}
.objective-card:hover {
    /* transform: translateY(-8px); */
    /* box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08); */
    /* padding: 20px 16px 20px 16px; */
}
.number-badge {
    min-width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}
.badge-1 {
    background: #eaf2ff;
}
.badge-2 {
    background: #eafaf1;
}
.badge-3 {
    background: #fff3e8;
}
.objective-card h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 3px;
}
.objective-card p {
    margin-bottom: 0;
}
.invite-box {
    margin-top: 20px;
    /* background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
    border-radius: 28px;
    padding: 40px; */
    position: relative;
    overflow: hidden;
}
.invite-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -60px;
    top: -60px;
}
.invite-box p {
    color: var(--bright-grey);
    line-height: 2;
}
.signature-card {
    margin-top: 0px;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 22px;
}
.signature-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #f1f5f9;
}
.signature-card h5 {
    color: var(--black);
    margin-bottom: 0px;
    font-weight: 600;
}
.signature-card p {
    margin-bottom: 0;
    color: var(--muted);
}
/* Chairman Message CSS end */

/* Speakers start */
.speakers-page-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2563eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}
.speakers-page-section .section-subtitle {
    max-width: 760px;
    margin: auto;
    color: var(--bright-grey);
    line-height: 1.4em;
}
.speakers-page-section .speaker-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    transition: all 0.45s ease;
    height: 100%;
}
.speakers-page-section .speaker-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}
.speakers-page-section .speaker-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}
.speakers-page-section .speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}
.speakers-page-section .speaker-card:hover img {
    transform: scale(1.08);
}
.speakers-page-section .speaker-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75), transparent 50%);
}
.speakers-page-section .speaker-content {
    position: relative;
    padding: 20px;
}
.speakers-page-section .speaker-name {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 12px;
}
.speakers-page-section .speaker-role {
    color: var(--bright-grey);
    font-size: 16px;
    margin-bottom: 0px;
}
.speakers-page-section .speaker-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    top: -120px;
    right: -120px;
    transition: all 0.5s ease;
}
.speakers-page-section .speaker-card:hover::before {
    transform: scale(1.2);
}
/* Speakers end */


/* ticket cards css */
.ticket-nav-pills {
    background: var(--white);
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.ticket-nav-pills .nav-link {
    background-color: var(--white);
    color: var(--theme-btn-text);
    border: 1px solid var(--theme-btn);
    border-radius: 8px;
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 13px 30px;
    cursor: pointer;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    z-index: 55;
    width: 170px;
}
.ticket-nav-pills .nav-link.active {
    background: linear-gradient(90deg, var(--gradient1) 0%, var(--gradient2) 100%);
    z-index: 99;
}
.ticket-card {
    position: relative;
    padding: 16px 34px 26px 34px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    transition: 0.45s ease;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.ticket-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.03);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    z-index: -1;
    transition: 0.4s;
}
.ticket-card:hover::after {
    width: 250px;
    height: 250px;
}
.ticket-card:hover {
    transform: translateY(-12px);
}
.ticket-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15, 0, 88, 0.5), rgba(6, 86, 184, 0.4), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    transition: 0.4s;
    z-index: -1;
}
.ticket-card:hover::before {
    opacity: 1;
}
.ticket-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gradient1);
    background-color: var(--white);
    margin-bottom: 35px;
}
.ticket-card .icon-wrap i {
    font-size: 30px;
    color: var(--gradient1);
}
.ticket-card .card-title {
    font-family: var(--heading-font);
    color: var(--black);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.4em;
    min-height: 62px;
}
.ticket-card .price {
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1;
    background: linear-gradient(90deg, var(--gradient1) 0%, var(--gradient2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ticket-card .price span {
    font-size: 28px;
    font-weight: 300;
    vertical-align: top;
    margin-right: 5px;
    color: var(--dust-grey);
}
.ticket-card .features {
    text-align: center;
    margin-bottom: 30px;
}
.ticket-card .features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 16px;
}
.ticket-card .features li span {
    color: #097969;
    font-size: 18px;
}

@media(max-width:768px) {
    .ticket-card {
        padding: 16px 20px 26px 20px;
    }
    .ticket-card .price {
        font-size: 56px;
    }
    .ticket-card .card-title {
        font-size: 24px;
    }
    .ticket-card .icon-wrap {
        width: 68px;
        height: 68px;
        margin-bottom: 24px;
    }
    .ticket-card .icon-wrap i {
        font-size: 27px;
    }
}

.note-box {
    background-color: var(--alice-blue);
    border-left: 6px solid var(--gradient1);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 22px;
    color: var(--bright-grey);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.note-box p {
    color: var(--bright-grey);
    font-size: 16px;
    margin-bottom: 14px;
}
.note-box h3 {
    margin-top: 0;
    color: var(--tealish-blue);
}
.note-box ul {
    padding-left: 16px;
    position: relative;
    margin-bottom: 0px;
}
.note-box ul li {
    color: var(--bright-grey);
    font-size: 16px;
    margin-bottom: 6px;
}

/* ticket cards css */

.contact-us-section {
    padding-left: 4px;
    padding-right: 4px;
}
.contact-us-section .contact-card {
    border-color: var(--gradient1);
}

/* Payment page */
.payment-details-sec {
    
}
.payment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #edf0f5;
}
.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.payment-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}
.indian-icon {
    background: linear-gradient(135deg, var(--gradient1), var(--gradient2));
}
.international-icon {
    background: linear-gradient(135deg, var(--purple-blue), var(--royal-blue));
}
.cheque-icon {
    background: linear-gradient(135deg, var(--theme-green), #4bd08b);
}
.payment-info {
    margin-bottom: 12px;
}
.payment-info label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
    display: block;
}
.payment-info p {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
/* Payment page */

/* Download Center CSS */
.dw-center-section .download-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    transition: 0.3s;
    border: 1px solid #eef2f7;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    transition: 0.45s ease;
    overflow: hidden;
}
.dw-center-section .download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.dw-center-section .download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15, 0, 88, 0.5), rgba(6, 86, 184, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    transition: 0.4s;
    z-index: -1;
}
.dw-center-section .download-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    z-index: -1;
    transition: 0.4s;
}
.dw-center-section .card-logo-prev .file-title {
    margin-top: 8px;
    margin-bottom: 20px;
}
.dw-center-section .file-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid var(--gradient1);
    color: var(--dark-navy);
}
.dw-center-section .file-title {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    margin-top: 18px;
}
.dw-center-section .file-meta {
    color: #6b7280;
    font-size: 14px;
    margin: 8px 0 20px;
}
.dw-center-section .download-btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 1px;
}
.dw-center-section .theme-btn-primary {
    background: linear-gradient(90deg, var(--gradient1) 0%, var(--gradient2) 100%);
}

.file-logo-prev img {
    max-width: 200px;
}
/* Download Center CSS End */

/* Brand Assets CSS */
.brand-assets-page .print-text {
    background-color: rgba(255,255,255,0.85);
    padding: 2px 10px;
    border-radius: 10px;
}
.brand-assets-section .asset-card {
    background: var(--white);
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eef2f7;
    transition: 0.3s;
}
.brand-assets-section .asset-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.brand-assets-section .logo-preview {
    background: #f8fafc;
    border-radius: 16px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.brand-assets-section .brand-assets-logo {
    padding: 10px;
}
.brand-assets-section .brand-assets-logo .square-logo {
    width: 220px;
}
.brand-assets-section .asset-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.brand-assets-section .asset-desc {
    color: #6b7280;
    margin-bottom: 25px;
}
.brand-assets-section .download-btn {
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 600;
}
/* Brand Assets CSS End */

.abstract-walkway-section .box {
    border-radius: 23px;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 15px 35.8px 0 rgba(0, 0, 0, 0.08);        
}
.abstract-walkway-section .abstract-template-box {
    border-radius: 23px;
    background: var(--white);
    padding: 60px;
    box-shadow: 0 15px 35.8px 0 rgba(0, 0, 0, 0.08);
}
.abstract-walkway-section .contact-card:hover {
    transform: translateY(0px);
}
.abstract-walkway-section .abstract-template-box p {
    font-weight: 400;
}
.abstract-page .checklist-list li {
    font-weight: 300;
}

.privacy-policy-page .checklist-list li {
    font-weight: 300;
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .hero-section .swiper-caption h2 {
        font-size: 46px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-section {
        padding-top: 60px;
    }
    .hero-section .swiper-caption {
        top: 35%;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    section {
        padding: 40px 0px;
    }
    .hero-section {
        padding-top: 30px;
    }
    .hero-section .swiper-caption h2 {
        font-size: 36px;
        line-height: 1.6em;
    }
    .hero-section .swiper-caption .banner-list {
        width: 74%;
        flex-wrap: wrap;
    }
    .hero-section .swiper-caption .banner-list ul {
        flex-wrap: wrap;
        align-items: start;
        justify-content: start;
    }
    .about-honour .content-wrapper {
        flex-direction: column;
        padding: 6px;
    }
    .about-honour .content-wrapper .left, .about-honour .content-wrapper .right {
        width: 100%;
    }
    .about-honour .content-wrapper .left::after {
        display: none;
    }
    .about-honour .content-wrapper .left {
        border-top-left-radius: 20.028px;
        border-top-right-radius: 20.028px;
    }
    .about-honour .content-wrapper .left {
        border-radius: 20.028px;
    }
    .about-honour .content-wrapper .right {
        padding: 20px;
    }
    .about-honour .content-wrapper .right p {
        margin-bottom: 0px;
    }
    .program-highlights-section {
        padding: 60px 0px;
        overflow: hidden;
    }
    .program-highlights-section::before {
        left: -108px;
    }
    .program-highlights-section::after {
        right: -108px;
    }
    .hp-our-partners-section {
        padding: 40px 0px;
    }
    .abstract-register-grid-section {
        padding: 30px 0px;
    }
    .event-venue-section {
        padding: 30px 0px;
    }
    .advisory-council-section .card .card-body .img-bordered {
        margin-bottom: 20px;
    }
    .collaborating-orgs-section .card-row-content {
        margin-top: 0px;
    }
    .collaborating-orgs-section .card {
        padding: 22px;
    }
    .org-modal .modal-body {
        padding: 0px 30px 20px 30px;
    }
    .abstract-walkway-section .box {
        padding: 30px;
    }
    .abstract-walkway-section .abstract-template-box {
        padding: 40px;
    }
    .abstract-walkway-section .abstract-template-box img {
        width: 350px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    section {
        padding: 25px 0px;
        overflow: hidden;
    }
    .theme-title {
        font-size: 20px;
    }
    .title-line {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 20px;
        padding-right: 0%;
    }
    .line-md::after {
        width: 60%;
    }
    .about-event-section p {
        line-height: 1.6em;
    }
    .theme-btn-primary, .theme-btn-outline {
        padding: 8px 20px;
    }
    .hero-section .hero-bg-img {
        border-radius: 34px;
        width: 98% !important;
        margin: 0 auto;
    }
    .hero-section .swiper-slide {
        padding-bottom: 60px;
    }
    .hero-section .hero-org-logo {
        width: 80%;
        position: absolute;
        bottom: 0;
        left: 30%;
        transform: translate(-25%, 0px);
    }
    .hero-section .swiper-caption {
        top: 30px;
        left: 0px;
        transform: translate(0%, 0%);
    }
    .hero-section .swiper-caption h2 {
        font-size: 26px;
        line-height: 1.6em;
        width: 80%;
    }
    .page-hero-section {
        background-position: left;
        height: 220px;
    }
    .page-hero-section h2 {
        font-size: 26px;
    }
    .action-grid-section .card-wrapper {
        padding: 20px 10px 20px 20px;
    }
    .action-grid-section .card-wrapper .theme-sm-title {
        margin-bottom: 10px;
    }
    .action-grid-section .card-wrapper p {
        margin-bottom: 20px;
        padding-right: 0px;
    }
    .action-grid-section .card-wrapper .col-md-4::after {
        background-image: url(../img/horizontal-line.webp);
        top: auto;
        bottom: 18px;
        width: 50%;
        height: 4px;
        left: 0%;
    }
    .action-grid-section .card-wrapper .col-md-4 {
        padding-bottom: 47px;
    }
    .action-grid-section .card-wrapper .col-md-4:last-child {
        padding-bottom: 0px;
    }
    .action-grid-section .card-wrapper .btn {
        width: auto;
    }
    .about-honour {
        padding: 30px 0px;
    }
    .about-honour .content-wrapper .left {
        text-align: center;
    }
    .about-honour .content-wrapper .left img {
        width: 300px;
    }
    .about-honour .content-wrapper .right h2 {
        font-size: 22px
    }
    .about-honour .content-wrapper .right h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .about-honour .content-wrapper .right p {
        font-size: 16px;
    }
    .program-highlights-section {
        padding: 20px 0px 40px 0px;
    }
    .program-highlights-section::before {
        left: -144px;
    }
    .program-highlights-section::after {
        right: -144px;
    }
    .program-highlights-slider .swiper-wrapper .swiper-slide::after {
        width: 100%;
    }
    .program-highlights-section .theme-title {
        margin-bottom: 10px;
        line-height: 1.6em;
        font-size: 20px;
    }
    .hp-our-partners-section {
        padding: 30px 0px;
    }
    .hp-our-partners-section .theme-title {
        margin-bottom: 20px;
        padding-bottom: 13px;
    }
    .hp-our-partners-section .row .col {
        flex-basis: auto;
        width: 48%;
        max-width: 40%;
    }
    .abstract-register-grid-section {
        padding: 20px 0px 30px 0px;
    }
    .abstract-register-grid-section .card .card-body p {
        margin-bottom: 16px;
    }
    .event-venue-section {
        padding: 20px 0px;
    }
    .event-venue-section .container {
        padding: 20px;
    }
    .grey-bg-section .theme-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    .about-event-info-section .theme-title {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 14px;
    }
    .about-event-info-section p {
        line-height: 1.6em;
    }
    .about-event-info-section .card-group {
        gap: 2px;
    }
    .about-event-info-section .card-group .card {
        padding: 14px;
        margin-bottom: 12px;
    }
    .about-event-info-section .card-group .card .card-icon {
        margin-right: 12px;
        min-width: 38px;
        height: 38px;
    }
    .about-event-info-section .card-group .card .card-icon i {
        font-size: 15px;
    }
    .about-event-info-section .card-group .card .card-content h4 {
        font-size: 16px;
        margin-bottom: 4px;
        font-weight: 500;
    }
    .collaborating-orgs-section .card p, .org-modal p {
        font-size: 14px;
        line-height: 1.6em;
    }
    .org-modal .modal-body h4 {
        font-size: 18px;
    }
    .advisory-council-section .card .card-body .card-title {
        font-size: 20px;
    }
    .advisory-committee-section .line:after {
        left: -20px;
    }
    .dates-card-wrapper .card {
        padding: 28px 24px;
    }
    .dates-card-wrapper {
        gap: 20px;
    }
    .dates-card-wrapper .date-badge {
        width: 156px;
    }
    .h-card {
        padding: 9px;
        margin-bottom: 0px;
    }
    .h-card .icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .h-card .icon-box i {
        font-size: 26px;
    }
    .h-card h4 {
        font-size: 16px;
    }
    .objective-card {
        padding: 0px;
        gap: 12px;
    }
    .objective-card h4 {
        margin-bottom: 8px;
    }
    .number-badge {
        border-radius: 4px;
    }
    .invite-box {
        padding: 10px;
        margin-top: 0px;
    }
    .invite-box p {
        line-height: 1.6em;
    }
    .signature-card {
        margin-top: 0px;
    }
    .signature-card h5 {
        font-size: 18px;
    }
    .signature-card p {
        font-size: 16px;
    }
    .speakers-page-section .speaker-image {
        height: auto;
    }
    .speakers-page-section .speaker-role {
        min-height: auto;
    }
    .speakers-page-section .speaker-content {
        padding: 24px;
    }
    .abstract-walkway-section .box {
        padding: 20px;
    }
    .abstract-walkway-section .abstract-template-box {
        padding: 20px;
    }
    .abstract-walkway-section .abstract-template-box img {
        width: 250px;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section .hero-bg-img {
        height: 230px;
    }
    .hero-section .hero-img {
        height: 211px;
        height: 250px;
        object-fit: cover;
        object-position: right;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .hero-section {
        padding-top: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .hero-section .swiper-caption h2 {
        font-size: 20px;
        line-height: 1.4em;
        padding-left: 12px;
        width: 90%;
    }
    .hero-section .swiper-caption .banner-list {
        margin-top: 14px;
        margin-left: 12px;
        padding: 10px 12px;
        width: 65%;
    }
    .hero-section .swiper-caption .banner-list ul li {
        font-size: 12px;
    }
    .hero-section .swiper-caption .banner-list ul li::before {
        font-size: 5px;
    }
    .action-grid-section {
        padding: 20px 0px 0px 0px;
    }
    .program-highlights-slider .swiper-wrapper .swiper-slide {
        width: 50% !important;
    }
    .program-highlights-slider .swiper-wrapper .swiper-slide .img-caption {
        padding: 5px;
    }
    .program-highlights-slider .swiper-wrapper .swiper-slide .img-caption p {
        margin-bottom: 4px;
    }
    .abstract-register-grid-section .card::after {
        left: 12px;
    }
    .org-modal .modal-body #modalImage {
        width: 200px;
    }
    .org-modal .modal-body {
        padding: 0px 20px 20px 20px;
    }
    .payment-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    .signature-card {
        flex-wrap: wrap;
        gap: 10px;
    }
    .signature-card img {
        border-radius: 16px;
        width: 100%;
        height: auto;
    }
    .invite-box p:last-child {
        margin-bottom: 0px;
    }
    .signature-card h5, .signature-card p {
        padding-left: 6px;
    }
}

/* Bellow 400px */
@media (max-width: 399.98px) {
    .hero-section {
        padding-top: 0px;
    }
}
