
body{
    max-height: 100% !important;
    height: 100% !important;
    overflow-x: hidden;
}
.limit-text {
cursor: pointer;
display: block;
overflow: hidden;
transition: all 0.4s ease;
}

.limit-text.expanded .dots {
display: none;
}

.limit-text .more-text {
display: none;
}

.limit-text.expanded .more-text {
display: inline;
} 
.limit-list {
overflow: hidden;
cursor: pointer;
transition: max-height 0.4s ease;
position: relative;
}

.limit-list.collapsed::after {
content: "...";
position: absolute;
bottom: 0;
right: 10px;
padding: 0 4px;
font-weight: bold;
color: #ffffff;
} 
.limit-text2 {
cursor: pointer;
display: block;
overflow: hidden;
transition: all 0.4s ease;
}

.limit-text2.expanded .dots {
display: none;
}

.limit-text2 .more-text {
display: none;
}

.limit-text2.expanded .more-text {
display: inline;
} 
footer {
background: #101435; /* gradient as per image */
font-size: 15px;
}
footer h3 {
color: #ff29a0; /* pink heading */
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
color: #ff29a0;
}
footer .social-icons a {
display: inline-block;
margin-right: 10px;
font-size: 20px;
color: #fff;
}
footer .social-icons a:hover {
color: #ff29a0;
}


.social-icons i {


font-size: 20px !important;

}
/* 
@media (min-width: 992px) {
.transparent {
margin-top: -56px !important;
}
} */

/* @media (min-width: 992px) {
.transparent.clone.smaller {
height: 160px !important;
}
} */

/* @media (min-width: 992px) {
.transparent.clone {
height: 160px !important;
}
} */



.logo-main{
/* height: 220px !important; */
max-width: 244px !important;"
}

@media (min-width: 767px) and (max-width: 992px) {
    .logo-main {
      content: url("../images/final322.webp");
      height: 80px !important;
      width: auto !important;
    }
  }
  


html {
scroll-behavior: smooth;
}

/* Tricolour Premium Top Header */
.premium-top {
padding: 2px 0;
font-size: 13px;
box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Gradient background with opacity */
.premium-top::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
    90deg,
     #ff7a00 0%,     /* Orange */
    #ffffff 50%,   /* White */
    #0f6b3e 100%   /* Green */
);
opacity: 1.75;   /* 🔽 background opacity control */
z-index: -1;
}

/* Layout */
.top-header-flex {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

/* Clickable items */
.top-info {
display: flex;
align-items: center;
gap: 7px;
color: #111;
font-weight: 600;
text-decoration: none;
padding: 4px 10px; /* better tap area */
border-radius: 20px;
transition: all 0.3s ease;
}

/* Icons */
.top-info .icon {
font-size: 14px;
}

/* Hover / Tap */
.top-info:hover,
.top-info:active {
background: rgba(0,0,0,0.08);
transform: translateY(-1px);
}

/* Divider */
.top-divider {
width: 1px;
height: 14px;
background: rgba(0,0,0,0.35);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

.premium-top {
    padding: 10px 0;
 
}

.premium-top::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
    90deg,
     #ff7a00 0%,     /* Orange */
    #ffffff 50%,   /* White */
    #0f6b3e 100%   /* Green */
);
opacity: 1.75;   /* 🔽 background opacity control */
z-index: -1;
}

.top-header-flex {
    flex-direction: column;
    gap: 8px;
}

.top-divider {
    display: none;
}

.top-info {
    width: 100%;
    justify-content: center;
    font-size: 14px;
}

.top-info .text {
    word-break: break-word;
    text-align: center;
}

}

/* Keep top header always on top */
.top-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1001; /* higher than main header */
}

/* Push main header below top bar */
header.transparent {
top: 36px; /* desktop height of top bar */
}

/* Mobile adjustment */
@media (max-width: 768px) {

header.transparent {
    top: 41px; /* mobile top bar height */
}
}

/* -------- MOBILE LAYOUT FIX -------- */
@media (max-width: 768px) {

.premium-top {
    padding: 4px 0;

}

.premium-top::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
    90deg,
     #ff7a00 0%,     /* Orange */
    #ffffff 50%,   /* White */
    #0f6b3e 100%   /* Green */
);
opacity: 1.75;   /* 🔽 background opacity control */
z-index: -1;
}

.top-header-flex {
    flex-direction: row;              /* IMPORTANT */
    justify-content: space-between;   /* LEFT & RIGHT */
    gap: 0;
}

.top-info {
    padding: 4px 6px;
    font-size: 9px;
    white-space: nowrap;
}

.top-info .text {
    font-size: 12.5px;
}

.top-divider {
    display: none;
}
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
  }
  
  .modal-content22 {
    position: relative; /* needed for close button positioning */
    background-color: #fff;
    margin: 10% auto; 
    padding: 50px 30px; /* extra space for close button */
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Close button */
  .close {
    position: absolute;
    top: 15px;       /* distance from top */
    right: 20px;     /* distance from right */
    color: #333;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  .close:hover {
    color: #000;
  }
  
  /* Mobile only */
  @media (max-width: 576px) {
    .mobile-friendly {
      font-size: 14px !important;
      line-height: 1.4;
    }
  }
  @media (max-width: 767.98px) {
    .new2 {
        justify-content: inherit !important;
    }
}

@media (max-width: 767.98px) {
    .new3 {
        white-space: normal;
    }
}

/* Container for both cards */
.partners-flex-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    /* allow stacking */
    margin-top: 50px;
    z-index: 5;
    position: relative;
    padding: 0 16px;
    /* prevent edge overflow on small screens */
    box-sizing: border-box;
}

/* Individual white boxes */
.partner-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    /* Desktop: two cards side-by-side, balanced width */
    width: calc(50% - 20px);
    /* two cards per row with gap */
    max-width: 520px;
    /* keeps card from getting too wide on large displays */
    min-width: 280px;
    /* prevents card from collapsing too much */
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.20);
    box-sizing: border-box;
    overflow: hidden;
    /* prevents inner overflow from escaping */
}

/* Heading inside box */
.partner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #222 !important;
}

/* Logo row */
.partner-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    /* keep side-by-side on desktop */
    width: 100%;
    box-sizing: border-box;
}

/* Logo images — responsive */
.partner-logos img {
    height: auto;
    /* let width control size on small screens */
    max-height: 110px;
    /* desktop height cap */
    max-width: 45%;
    /* allow 2 logos side-by-side inside card */
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

/* -----------------------
Mobile / small screens
----------------------- */
@media (max-width: 900px) {
    .partner-wrapper {
        width: calc(50% - 16px);
        /* still side-by-side on medium screens like tablets */
        padding: 24px 16px;
    }

    .partner-logos img {
        max-height: 95px;
    }
}

@media (max-width: 640px) {

    /* Stack the two cards vertically full width */
    .partner-wrapper {
        width: 100%;
        max-width: none;
        margin-bottom: 18px;
    }

    /* Allow logos to wrap inside card on small screens */
    .partner-logos {
        flex-wrap: wrap;
        /* allow logos to go next line if needed */
        gap: 14px;
    }

    .partner-logos img {
        max-width: 48%;
        /* two logos side-by-side in card when possible */
        max-height: 90px;
        padding: 6px 10px;
    }
}

/* Extra-small phones */
@media (max-width: 420px) {
    .partner-logos img {
        max-width: 100%;
        /* if narrow, stack logos vertically */
        display: block;
        margin: 0 auto;
        max-height: 80px;
    }

    .partner-logos {
        gap: 10px;
    }
}

/* Logo container box */
.partner-logo-box {
    width: 200px;
    /* bigger width */
    height: 140px;
    /* bigger height */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Logo auto-fits inside */
.partner-logo-box img {
    max-width: 100%;
    box-shadow: none;
    max-height: 100%;
    object-fit: contain;
} 
.country-item {
    text-align: center;
    padding: 10px;
}

.country-item img {
    width: 120px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.country-name {
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
    color: #fff;
}

/* Mobile Spacing Fix */
@media (max-width: 576px) {
    .country-item {
        padding: 15px !important;
    }

    .country-item img {
        width: 70px;
    }

    .country-name {
        font-size: 12px;
    }
}

.speaker-card {
    background: #0e1024;
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    height: 365px;
    cursor: pointer;
}

.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* .speaker-photo-grid {
width: 140px;
height: 140px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #edc567;
margin-bottom: 15px;
} */


.speaker-photo-grid {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF9933;
    margin-bottom: 15px;
    animation: glowBorder 3s infinite ease-in-out;
}

@keyframes glowBorder {
    0% {
        border-color: #FF9933;
        box-shadow: 0 0 6px #FF9933;
    }

    33% {
        border-color: #FFFFFF;
        box-shadow: 0 0 6px #FFFFFF;
    }

    66% {
        border-color: #138808;
        box-shadow: 0 0 6px #138808;
    }

    100% {
        border-color: #FF9933;
        box-shadow: 0 0 6px #FF9933;
    }
}


.speaker-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.hover-scale-1-1 {
    width: 100%;
    aspect-ratio: 16 / 15;
    object-fit: cover;
}

.speaker-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.speaker-modal-content {
    background: #0e1024;
    max-width: 800px;
    width: 92%;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.speaker-modal-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.speaker-modal-content h3 {
    color: #fff;
    margin-bottom: 8px;
}

.speaker-modal-content h5 {
    color: #edc567;
    margin-bottom: 15px;
}

.speaker-modal-content p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.speaker-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.modal-linkedin {
    display: none;
    width: 42px;
    height: 42px;
    margin: 15px auto 0;
    background: #0A66C2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}



.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content22 {
    position: relative;
    /* needed for close button positioning */
    background-color: #fff;
    margin: 10% auto;
    padding: 50px 30px;
    /* extra space for close button */
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    line-height: 1.5;
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    /* distance from top */
    right: 20px;
    /* distance from right */
    color: #333;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
}

.close:hover {
    color: #000;
}

/* Mobile only */
@media (max-width: 576px) {
    .mobile-friendly {
        font-size: 14px !important;
    }
}

.bdts-logo {
    width: 100%;
    max-width: 900px;
    /* desktop size */
    height: auto;
}


.lcp-btn {
    animation: none !important;
    transition: none !important;
}

.lcp-btn::before,
.lcp-btn::after {
    display: none !important;
}

@media (max-width:768px) {
    .fx-slide {
        animation: none !important;
    }
}

.bdts-session-time {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.bdts-session-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.bdts-session-desc {
    font-size: 15px;
    color: #d6d6d6;
    line-height: 1.6;
}

.bdts-session-speakers {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.bdts-session-speaker-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 10px 8px;
    text-align: center;
    height: 100%;
}

.bdts-session-speaker-card img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 6px;
}

.bdts-session-speaker-card h6 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0 0 2px 0;
    line-height: 1.25;
}

.bdts-session-speaker-card small {
    font-size: 11px;
    color: #cfcfcf;
    line-height: 1.35;
    display: block;
    margin-top: 0;
}

.bdts-muted {
    opacity: 0.5;
}