.d-none {
    display: none !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.v-hidden {
    visibility: hidden !important;
}

.d-flex {
    display: flex;
}
.text-end {
    text-align: end!important;
}
.p-0 {
    padding: 0!important;
}
.m-0 {
    margin: 0!important;
}
.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center!important;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.justify-arround {
    justify-content: space-around;
}

.g-10 {
    gap: 10px;
}

.g-15 {
    gap: 15px;
}

.g-20 {
    gap: 20px;
}





.bx-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn-photo-reclick {
    width: 33%;
    background: #3b277c;
    color: #fff;
    ;
    padding: 0.5rem;
    text-align: center;
    border-radius: 4px;
}

.btn-download-btn {
    width: 33%;
    color: #3b277c;
    background: #fff;
    ;
    border: 1px solid #3b277c;
    padding: 0.5rem;
    text-align: center;
    border-radius: 4px;
}

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* width: 340px; */
    padding: 20px;
    text-align: center;
}

.event-status {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    background: #f4f3f8;
    border-radius: 8px;
    padding: 1rem;
}

.event-status span {
    color: #0066cc;
    font-weight: bold;
    font-size: 16px;
}

.info-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-radius: 8px;
    /* padding: 15px; */
}

/* Left side - Event info */
.event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f4f3f8;
    border-radius: 8px;
    padding: 1rem;
    align-items: flex-start;
    text-align: left;
    gap: 5px;
}

.event-info i {
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
}

.event-info strong {
    font-size: 14px;
    color: #111;
    display: block;
}

.event-info span {
    font-size: 13px;
    color: #666;
}

/* Right side - Social icons in grid */
.social-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #f4f3f8;
    padding: 1rem;
    gap: 12px;
    justify-items: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
    z-index: 1000;
}


.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.social-icons a:hover {
    background: #3b277c;
    color: #fff;
}

.btn {
    display: block;
    width: 93%;
    padding: 12px;
    background: #3b277c;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    margin-top: 20px;
}

.btn:hover {
    color: #3b277c;
    background: white;
    border: 1px solid #3b277c;
}






/* Modal Overlay */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal Box */
.custom-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  width: 90%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.3s ease;
}

/* Title */
.custom-modal-content h3 {
  color: #3b277c;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Text */
.custom-modal-content p {
  color: #444;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Upload Button */
.upload-btn {
  display: inline-block;
  background-color: #3b277c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 15px;
  transition: 0.3s;
}

.upload-btn:hover {
  opacity: 0.9;
}

/* Close Button */
.close-btn {
  background: transparent;
  border: 2px solid #3b277c;
  color: #3b277c;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* .close-btn:hover {
  background: #3b277c;
  color: #fff;
} */

/* Animation */
 @keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
} 



.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* width: 340px; */
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 85px;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-card {
    /* background: linear-gradient(to bottom right, #f7b4c4, #b4c8f0); */
    background: linear-gradient(to right, #3b277ca1, #9310bbd4);
    /* background: #f4f3f8; */
    border-radius: 8px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    width: 100%;
    max-width: 160px;
    height: 120px;
    justify-items: center;
    align-items: center;
}

.quick-icon {
    background-color: #fff;
    color: #000;
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
}

.quick-icon:hover {
    background: #3b277c;
    color: #fff !important;
}

.quick-icon:hover svg path {
    fill: #fff !important;
}

.icon-label :hover {
    color: #fff !important;
}

.label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #002244;
    text-align: center;
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.icon-label {
    font-size: 9px;
    /* small font */
    font-weight: bold;
    margin-top: 4px;
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
}




.venue-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* width: 350px; */
    overflow: hidden;
    border: 1px solid #eee;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 85px;
}

.venue-header {
    padding: 16px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.venue-info {
    /* flex: 0 0 70%; */
    /* 70% width */
}

.venue-header h3 {
    margin: 0;
    font-size: 16px 0;
    color: #3b277c;
    /* Blue */
}

.venue-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #333;
    /* Dark gray */
}

.direction-btn {
    /* flex: 0 0 30%; */
    /* 30% width */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #3b277c;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    color: #fff;
}

.direction-btn i {
    font-size: 14px;
}

.direction-btn:hover {
    background: #fff;
    color: #3b277c;
    border-color: #3b277c;
}

.venue-map iframe {
    width: 100%;
    border-radius: 2px !important;
    height: 300px !important;
}

.b2b-profile-button {
    color: #3b277c;
    background: #fff;
    padding: 0.6rem;
    border-radius: 8px 18px;
    border: 2px solid;
}


.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.text-dark {
    color: #000 !important;
}

.text-light {
    color: #fff !important;
}

#bio_div p {
    font-size: 14px;
    background: #f4f3f8;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

.ai_select {
    border: 1px solid #3b277c;
    width: 100%;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    /* add right padding for arrow */
    border-radius: 5px;
    color: #ffffff;
    background-color: #3b277c;
    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    /* white arrow */
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px 7px;
    cursor: pointer;
}

/* Floating button */
.open-journey-btn {
    left: 50%;
    /* transform: translateX(-50%); */
    background-color: #3b277c;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 5px 6px 2px #dbc9c980;
    transition: all 0.3s ease;
 
    width: 300px;
    font-weight: 600;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
}
.float-btn {
     box-shadow: 0px 5px 6px 2px #dbc9c980;
    transition: all 0.3s ease;
     padding: 14px 28px;
    width: 300px;
    font-weight: 600;
    gap: 8px;
    margin: 0 auto!important;
}
.open-journey-btn:hover {
    background-color: #3b277cd1;
}
#userForm {
    margin-bottom: 82px;
}
.star-icon {
    flex-shrink: 0;
}
.regenrateButton {
        background: #3b277c;
    color: white;
    padding: 7px 10px;
    border-radius: 18px;
    font-family: inherit;
    font-weight: 500;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Bottom sheet */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    padding: 17px 20px;
    padding-bottom: 20px;
    transition: bottom 0.4s ease-in-out;
    z-index: 6008;
}

.bottom-sheet.active {
    bottom: 0;
}

.sheet-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.sheet-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.ai_result_button a.active-btn {
  color: #3b277c;
  border-bottom: 2px solid #3b277c !important;
  
}
.close-btn {

    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-align: end;
    display: flex;
    justify-content: end;
}

.close-btn:hover svg {
    stroke: #3b277c;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 42px !important;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #3b277c;
}

.generate-btn {
    width: 100%;
    padding: 12px;
    background-color: #3b277c;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.generate-btn:hover {
    background-color: #3b277c;
}

.generating-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    background-color: white;
    border: 1px solid #3b277c;
    color: #000;
    position: relative;
    overflow: hidden;
    display: none;
    /* initially hidden */
    transition: background 0.3s ease;
}

.generating-btn span {
    position: relative;
    z-index: 1;
}

.generating-btn.filling {
    color: #fff;
    /* text turns white while filling */
}




.powered-by {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

.powered-by span {
    font-weight: 600;
    color: #3b277c;
}

/* .input-group-c {
  display: flex;
  align-items: center;
  gap: 6px;
} */

/* Simple spinner style */
.loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3b277c;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 26px;
    top: 26%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





















.airesult {
    position: relative;
    overflow: hidden;
    color: white;
    margin-left: -15px;
    margin-right: -15px;
    padding: 2px 15px;
    background-image: url('https://bts2025.chkdin.com/images/startup-ecosystem.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.airesult::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* darker fade overlay */
    /* use rgba(255,255,255,0.4) for lighter fade */
    z-index: -1;
}

/* Event Header Section Styling */
.event-header-section {
    background-color: var(--dark-purple);
    /* Placeholder for the dark background/image */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), var(--dark-purple) 90%), url('placeholder-background.jpg');
    /* Simulated dark gradient/image */
    background-size: cover;
    background-position: center;
    padding: 20px 20px 200px;
    /* Large padding at the bottom to allow card overlap */
    position: relative;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
}

.gitex {
    color: var(--white);
}

.global {
    font-size: 18px;
    /* Smaller and closer to the image */
    margin-left: 5px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.date-venue-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: right;
    font-size: 12px;
    line-height: 1.4;
}

.date-range {
    font-weight: 600;
}

.venue-name {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.personal-journey-msg {
    font-size: 18px;
    font-weight: 400;
    margin: 40px 0 5px 0;
    color: white;
}

.event-year {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.event-details-meta {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.venue-location,
.date-range-main,
.time-range {
    margin: 5px 0;
    font-weight: 300;
    color: white;
}

/* Card Section Styling (Overlaps the header) */
.card-section {
    position: relative;
    z-index: 10;
    margin-top: -150px;
    /* Pull the card up to overlap the header */
    padding: 0 20px;
    color: black;
    background: #fff;
    border-radius: 18px;
}

:root {
    --green: #fcb045;
    --bar-bg: #eeeeee;
}

.fomo-card {
    padding: 30px 20px;
    text-align: center;
}

.gauge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fomo-gauge {
    width: 100%;
    max-width: 400px;
}

.gauge-bar {
    width: 100%;
    height: 16px;
    background: var(--bar-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gauge-fill {
    width: 0%;
    height: 100%;
    background: var(--green);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.gauge-info {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.percentage {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
}

.label-ai {
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
}


/* Card Message Styling */
.card-message {
    text-align: left;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.card-message p {
    color: #000;
    font-weight: 500;
}

.card-message p span {
    color: white;
}

.highlight {
    font-weight: 600;
    color: #fcb045 !important;
    text-transform: capitalize;
}

.read-more {
    color: #888;
    font-weight: 400;
    cursor: pointer;
}

/* Button Styling */
button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-report-btn {
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid #ccc;
}

.save-report-btn:hover {
    background-color: var(--light-gray);
}

.link-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--text-dark);
}

.register-now-btn {
    background-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(227, 0, 43, 0.3);
}

.register-now-btn:hover {
    background-color: #c90025;
}

/* Minor adjustments for the 'BTS 2025' area based on the image structure */
.event-year {
    /* In the user's request, the message 'then next bts2025' likely refers to the main 'GITEX GLOBAL 2025' text. */
    /* I've used 'GITEX GLOBAL 2025' as it's the text visible. */
    /* If 'BTS 2025' was intended, the line could be:
        .event-year::after { content: "BTS 2025"; display: block; font-size: 18px; font-weight: 400; margin-top: 5px; } */
}



.ai-suggestion-button {
    margin-left: -15px;
    margin-right: -15px;
    padding: 2px 15px;
}

.ai_result_button a {
    color: #676363 ;
    border-bottom: 2px solid #676363;
    padding: 7px 2px;
    font-weight: 700;

}

.ai-suggestion h3 {
    text-align: center;
    font-size: 25px;
}

.ai-suggestion .highlight-suggestion {
    color: #3b277c !important;
    text-transform: capitalize;
}





