* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    }

/*     
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
    } */

    /* Medical gradient backgrounds */
    .medical-gradient {
        background: linear-gradient(135deg, #6e49c4 0%, rgb(166 132 211) 100% 100%);
    }
    .footercont {background: linear-gradient(135deg, #6e49c4 0%, rgb(166 132 211) 100% 100%);}
    
    .medical-gradient-reverse {
        background: linear-gradient(135deg, #363f64 0%, #6474b4 50%, #6677bb 100%);
    }
    
    .medical-accent {
        background: linear-gradient(135deg, #87BAC3 0%, #251c75 100%);
    }

    /* Enhanced particle animation */
    @keyframes particles {
        0% {
            transform: translateY(100vh) translateX(0) scale(0);
            opacity: 0;
        }
        10% {
            opacity: 0.8;
        }
        50% {
            opacity: 1;
        }
        90% {
            opacity: 0.6;
        }
        100% {
            transform: translateY(-20vh) translateX(100px) scale(1.5);
            opacity: 0;
        }
    }

    .particle {
        position: absolute;
        bottom: -10px;
        width: 8px;
        height: 8px;
        background: radial-gradient(circle, rgba(88, 34, 238, 0.9) 0%, rgba(45, 8, 178, 0.6) 100%);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(112, 34, 238, 0.5), 0 0 20px rgba(68, 8, 178, 0.3);
        animation: particles 12s ease-in-out infinite;
    }

    .wave-animation {
        animation: wave 20s ease-in-out infinite;
    }

    /* Floating animation */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    
    .floating {
        animation: float 6s ease-in-out infinite;
    }

    /* Enhanced Wave Animations - seamless edge handling */
    @keyframes waveFlow {
        0% {
            transform: translateX(0%) scaleY(1) scaleX(1.2);
        }
        50% {
            transform: translateX(-25%) scaleY(1.1) scaleX(1.2);
        }
        100% {
            transform: translateX(0%) scaleY(1) scaleX(1.2);
        }
    }

    .wave-flow {
        animation: waveFlow 15s ease-in-out infinite;
        width: 200%;
        left: -50%;
    }

    @keyframes waveFlow2 {
        0% {
            transform: translateX(-10%) scaleY(0.9) scaleX(1.3);
        }
        50% {
            transform: translateX(-35%) scaleY(1.05) scaleX(1.3);
        }
        100% {
            transform: translateX(-10%) scaleY(0.9) scaleX(1.3);
        }
    }

    .wave-flow-2 {
        animation: waveFlow2 18s ease-in-out infinite;
        width: 200%;
        left: -50%;
    }

    @keyframes waveFlow3 {
        0% {
            transform: translateX(-20%) scaleY(1.05) scaleX(1.25);
        }
        50% {
            transform: translateX(-40%) scaleY(0.95) scaleX(1.25);
        }
        100% {
            transform: translateX(-20%) scaleY(1.05) scaleX(1.25);
        }
    }

    .wave-flow-3 {
        animation: waveFlow3 22s ease-in-out infinite;
        width: 200%;
        left: -50%;
    }

    /* Pulse animation */
    @keyframes pulse-ring {
        0% {
            transform: scale(0.95);
            opacity: 1;
        }
        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }
    
    .pulse-ring {
        animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    /* Card hover effects */
    .card-hover {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
    }

    /* Gradient text */
    .gradient-text {
        background: linear-gradient(135deg, #7b48d9 0%, #3c197c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Medical cross animation */
    @keyframes medical-pulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.1);
        }
    }
    
    .medical-pulse {
        animation: medical-pulse 3s ease-in-out infinite;
    }

    /* Scroll reveal */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* DNA Helix Animation */
    @keyframes rotate-helix {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    .helix {
        animation: rotate-helix 20s linear infinite;
    }

    /* Modal styles */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .modal.active {
        display: flex;
        opacity: 1;
    }
    
    .modal-content {
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }
    
    .modal.active .modal-content {
        transform: scale(1);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    
    ::-webkit-scrollbar-track {
        background: #e0f2fe;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #4408b2, #5822ee);
        border-radius: 5px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #460e90, #4408b2);
    }

    /* Stats counter animation */
    @keyframes count-up {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .count-animation {
        animation: count-up 1s ease-out;
    }

    /* Medical icon effects */
    .medical-icon {
        position: relative;
        display: inline-block;
    }
    
    .medical-icon::before {
        /*content: '';*/
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgb(168, 143, 239) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        border-radius: 50%;
        animation: pulse-ring 2s ease-out infinite;
    }

    /* Step indicator styles */
    .step-indicator {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #a49caf;
        transition: all 0.3s ease;
    }
    
    .step-indicator.active {
        background: linear-gradient(135deg, #4408b2 0%, #7022ee 100%);
        color: white;
    }

    /* Form step styles */
    .form-step {
        display: none;
    }
    
    .form-step.active {
        display: block;
        animation: fadeInUp 0.4s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Radio card styles */
    .radio-card {
        position: relative;
        cursor: pointer;
        display: block;
    }
    
    .radio-card input[type="radio"] {
        position: absolute;
        opacity: 0;
    }
    
    .radio-card-content {
        padding: 1.25rem;
        border: 2px solid #e5e7eb;
        border-radius: 1rem;
        transition: all 0.3s ease;
        background: white;
    }
    
    .radio-card input[type="radio"]:checked + .radio-card-content {
        border-color: #3b08b2;
        background: linear-gradient(135deg, #ecfeff 0%, #f0f9ff 100%);
        box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15);
    }
    
    .radio-card:hover .radio-card-content {
        border-color: #5822ee;
        transform: translateY(-2px);
    }

    .floating-label-group {
    position: relative;
}

.floating-input {
    width: 100%;
    padding: 1rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    background: white;
    padding: 0 0.25rem;
    transition: all 0.2s ease;
    pointer-events: none;
}

/* FLOAT WHEN TYPING OR FOCUSED */
.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: #4408b2;
    transform: none;
}

.wave-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

/* Back wave */
.wave-back {
  animation: waveBack 26s infinite;
}

/* Front (dark) wave */
.wave-front {
  animation: waveFront 16s infinite;
}

/* Minimal horizontal movement = no edge */
@keyframes waveBack {
    0%   { transform: translateX(0) translateY(0); }
    50%  { transform: translateX(-3%) translateY(6px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes waveFront {
    0%   { transform: translateX(0) translateY(0); }
    50%  { transform: translateX(-4%) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}

/* Step indicator styles */
.step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #a59caf;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: linear-gradient(135deg, #3b08b2 0%, #5822ee 100%);
    color: white;
}

/* Form step styles */
.form-step {
    display: none;
}

.form-step.active {
display: block;
animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Radio card styles */
.radio-card {
position: relative;
cursor: pointer;
display: block;
}

.radio-card input[type="radio"] {
position: absolute;
opacity: 0;
}

.radio-card-content {
padding: 1.25rem;
border: 2px solid #e5e7eb;
border-radius: 1rem;
transition: all 0.3s ease;
background: white;
}

.radio-card input[type="radio"]:checked + .radio-card-content {
border-color: #4408b2;
background: linear-gradient(135deg, #ecfeff 0%, #f0f9ff 100%);
box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15);
}

.radio-card:hover .radio-card-content {
border-color: #22d3ee;
transform: translateY(-2px);
}

.gradient-text {
background:linear-gradient(135deg, #7f6ee3 0%, #7c6fed 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-size: 40px !important;
}


.card-hover {
transition: all 0.3s ease;
}

.card-hover:hover {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.reveal {
animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Add floating animation for Who Should Attend cards */
.float {
animation: float 3s ease-in-out infinite;
}

@keyframes float {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-10px);
}
}

.attendee-card:hover .icon-circle {
background: linear-gradient(135deg, #5506d4 0%, #643bf6 100%);
transform: scale(1.1);
}        
.attendee-card:hover .icon-circle svg {
stroke: white;
}

/*new css start*/
.logocont img { margin: 0px; filter: brightness(0) invert(1); }
.text-cyan-600 {
    --tw-text-opacity: 1;
    color: rgb(130 102 193)!important;    
}
.text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(159 133 217) !important;
}
.bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(235, 201, 255)!important;
}
.bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(215, 201, 255)!important;
}

.from-cyan-500 {
    --tw-gradient-from: #b28fdf var(--tw-gradient-from-position)!important;
    --tw-gradient-to: rgb#06b6d400 (6 182 212 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)!important;
}
.to-blue-600 {
    --tw-gradient-to: #8a7eec var(--tw-gradient-to-position)!important;
}
.border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(163 137 223) !important;
}
.border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(140 111 187) !important;
}
.to-cyan-600 {
    --tw-gradient-to: #8f53ff var(--tw-gradient-to-position)!important;
}
.from-blue-500 {
    --tw-gradient-from: #5f2daf var(--tw-gradient-from-position)!important;
    --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.bg-cyan-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(166 132 241) !important;
}
.via-cyan-900\/90 {
    --tw-gradient-to: rgb(22 78 99 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: rgba(114, 75, 255, 0.88), rgba(33, 22, 64, 0.76) var(--tw-gradient-via-position), rgba(107, 70, 193, 0.5)!important;
}
.hover\:border-blue-400:hover {
    --tw-border-opacity: 1!important;
    border-color: rgb(222, 194, 255)!important;
}
.attendee-card:hover .icon-circle {
    background: linear-gradient(135deg, #e6c8ff 0%, #a280ff 100%) !important;
    transform: scale(1.1)!important;
}
.stroke-blue-600:hover {
    stroke: #ffffff!important;
}

.stroke-blue-600 {
    stroke: #a563ff!important;
}

.foot_icon a i{
    color: #fff;
}

.text-blue-500, .text-cyan-500 {
    --tw-text-opacity: 1;
    color: #d998ff!important;
}
.footercont { background: #f4f0ff;}
.text-cyan-400 {
    --tw-text-opacity: 1!important;
    color: rgb(195, 143, 255)!important;
}
.bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(200, 117, 255)!important;
}
.hover\:text-cyan-600:hover {
    --tw-text-opacity: 1!important;
    color: rgb(202, 146, 255)!important;
}

.bg-cyan-100 {
    --tw-bg-opacity: 1!important;
    background-color: rgb(255 255 255)!important;
}
.mainmenu { color: #fff; }
.editionhd { font-weight: 700; font-size: 21px; margin: 0px 0px 10px 0; color: #b16ee7; }

/* anurag css start 13-05-26 */

.laptop-bg-banner p{
    color: #fff;
}

.laptop-bg-banner{
    background-image: linear-gradient(135deg, #74659d00 0%, #c998f157 100%) !important;
}

.key-takeaways{
    background: linear-gradient(135deg, #ffffff 0%, #df8dff80 100%) !important;
    color: #d4c1ff;
    border: 1px solid;
}

.key-takeaways h3{
    color: #5a5a5a;
}

.key-takeaways p{
    color: #5a5a5a;
}

.icon-circle {
    background: linear-gradient(135deg, rgba(188, 172, 255, 0.1) 0%, rgba(166, 137, 245, 0.1) 100%);
    transition: all 0.3s ease;
}

.Modal-Close-Container {
    position: absolute;
    top: 31px;
    right: 31px;
}

.form_container{
    padding: 0px 60px;
}

/* Main Wrapper */
.custom_registration_wrapper{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 14px;
    border-bottom: 1px solid #804ff3;
    flex-wrap: wrap;
}

/* Section */
.custom_registration_box,
.custom_delegate_box{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Heading */
.custom_title{
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin: 0;
}

/* Radio Group */
.custom_radio_group{
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

/* Radio Item */
.custom_radio_item{
    display: flex;
    align-items: center;
    position: relative;
}

/* Hide Radio */
.custom_radio_item input{
    display: none;
}

/* Circle */
.custom_radio_item label{
    width: 24px;
    height: 24px;
    border: 2px solid #a27aff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0 0 8px rgba(168, 122, 255, 0.35);
}

/* Inner Dot */
.custom_radio_item label::after{
    content: "";
    width: 10px;
    height: 10px;
    background: #884ff3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.3s ease;
}

/* Checked */
.custom_radio_item input:checked + label::after{
    transform: translate(-50%, -50%) scale(1);
}

/* Text */
.custom_radio_item span{
    font-size: 16px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
}

/* Number spacing */
.number_style{
    gap: 2px;
}

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

    .custom_registration_wrapper{
        flex-direction: column;
        gap: 25px;
    }

    .custom_radio_group{
        gap: 18px;
    }

}

.attendee-card svg path{
    color: #a563ff
}

.stroke-cyan-600 {
    color: #a563ff
}

.attendee-card{
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 20px;
    background:#fff;
    transition: 0.5s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.attendee-card:hover{
    border: 1px solid #5008b2;
}

.reveal .medical-icon i{
    color: #8e71bc;
}

.leading-relaxed{
    color: #000000;
}

.text-cyan-700{
    color: rgb(167 140 229);
}

.flemings_main{
    background: linear-gradient(135deg, #9e84d7 0%, rgb(185 155 255) 100%);
    color: #fff;
}

.map_main:hover{
    color:#3c1c85; 
}

.map_main{
    color: #9f85d9;
}

.venue_main_icon i{
    color:#9f85d9;
}

.attend_main_bg{
    background: linear-gradient(135deg, #ffffff 0%, rgb(243, 237, 255) 100%);

}

.sponsership_down_data{
    background:linear-gradient(135deg, #ffffff 0%, rgb(215 198 255) 100%);
}

.sponsership_down_data p{
    color: #000;
}

.topics_main_bg{
    background: linear-gradient(135deg, #ffffff 0%, rgb(243 239 255) 100%);
}

.main_home_bg{
    background: linear-gradient(135deg, #ffffff 0%, rgb(243 239 255) 100%);
}

.spot-btn{
    background: linear-gradient(135deg, #9e84d7 0%, rgb(185 155 255) 100%);
    color: #fff;
}

.medical-icon_main{
    color: #fff;
}

.leading-relaxed_main{
    font-size: 19px;
    color: #424242;
    /* font-weight: 700; */

}

.ready_to_shape_content_bg{
    background: linear-gradient(135deg, #6e49c4 0%, rgb(166 132 211) 100% 100%);
}

.sponser-btn{
    background: linear-gradient(135deg, #9e84d7 0%, rgb(185 155 255) 100%);
}

.sponser-btn span{
    color: #fff;
}
/* anurag css end 13-05-26 */



/* Number spacing */
.number_style{
    gap: 2px;
}

input.form-control, select.form-control, textarea.form-control {
    border: none;
    box-shadow: 0 0 0px 1px #2559ac;
    height: 44px;
}
.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.Modal-Close-Container {
    position: absolute;
    top: 31px;
    right: 31px;
}

.display-relative-2, .event-details-section h2, .Speaker-topics .Topics h2, .Speaker-topics .Topics h3, .Registration-Form h4 {
    font-size: 1.5rem;
    font-weight: 450;
    color:rgb(86, 86, 86);
}

.flipclose-buttos{font-size: 50px;color: white;background: #6646af !important;width: 50px;height: 50px;display: flex;justify-content: center;}
.flipclose-buttos::after{
    content: "+";
    display: block;
    color: white;
    font-size: 50px;
    line-height: 80px;
    transform: rotate(45deg);
}




    h3{
        color:#1f4fa8;
        margin-bottom:15px;
    }

  .glow_check {
    position: relative;
    height: fit-content;
    width: 50px;
    padding-left: 30px;
    justify-content: flex-start;
    min-height: 32px;
    align-items: center;
    display: inline-flex;
    width: fit-content;
}

   

    input{
        width:100%;
        padding:14px;
        border:1px solid #1f4fa8;
        border-radius:6px;
        font-size:16px;
        background-color: rgba(212, 212, 212, 0.358) !important;
        outline:none;
    }
      select{
        width:100%;
        padding:14px;
        border:1px solid #1f4fa8;
        border-radius:6px;
        font-size:16px;
        background-color: rgba(212, 212, 212, 0.358) !important;
        outline:none;
    }
    .delegate-title{font-size: 15px; color: rgb(64, 64, 64);font-weight: 400;}

    .radio-group{
        display:flex;
        align-items:center;
        gap:20px;
        margin-bottom:20px;
    }

    .delegate-numbers{
        display:none;
        margin-top:15px;
    }

    .delegate-form{
        border-top:1px solid #ddd;
        margin-top:20px;
        padding-top:20px;
    }

    label{
        font-size:18px;
    }

    .hidden{
        display:none;
    }

    .custom_radio_group {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .custom_radio_item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .custom_radio_item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #5d82c2;
    cursor: pointer;
  }

  .custom_radio_item span {
    font-size: 14px;
    color: #333;
  }

  #custom-email-div {
    display: none;
    margin-top: 15px;
  }

  .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .d-md-flex {
    display: flex;
    gap: 12px;
  }

  @media(max-width:768px){
    .d-md-flex{
      flex-direction: column;
    }
  }


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

    .custom_registration_wrapper{
        flex-direction: column;
        gap: 25px;
    }

    .custom_radio_group{
        gap: 18px;
    }

}
/* anurag css end 13-05-26 */


input.form-control, select.form-control, textarea.form-control {
    border: none;
    box-shadow: 0 0 0px 1px #2559ac;
    height: 44px;
}
.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.Modal-Close-Container {
    position: absolute;
    top: 31px;
    right: 31px;
}

.display-relative-2, .event-details-section h2, .Speaker-topics .Topics h2, .Speaker-topics .Topics h3, .Registration-Form h4 {
    font-size: 1.5rem;
    font-weight: 450;
    color:rgb(86, 86, 86);
}

.flipclose-buttos{font-size: 50px;color: white;background: #1bc2de;width: 50px;height: 50px;display: flex;justify-content: center;}
.flipclose-buttos::after{
    content: "+";
    display: block;
    color: white;
    font-size: 50px;
    line-height: 80px;
    transform: rotate(45deg);
}




    h3{
        color:#1f4fa8;
        margin-bottom:15px;
    }

  .glow_check {
    position: relative;
    height: fit-content;
    width: 50px;
    padding-left: 30px;
    justify-content: flex-start;
    min-height: 32px;
    align-items: center;
    display: inline-flex;
    width: fit-content;
}

   

    input{
        width:100%;
        padding:14px;
        border:1px solid #1f4fa8;
        border-radius:6px;
        font-size:16px;
        background-color: rgba(212, 212, 212, 0.358) !important;
        outline:none;
    }
      select{
        width:100%;
        padding:14px;
        border:1px solid #1f4fa8;
        border-radius:6px;
        font-size:16px;
        background-color: rgba(212, 212, 212, 0.358) !important;
        outline:none;
    }
    .delegate-title{font-size: 15px; color: rgb(64, 64, 64);font-weight: 400;}

    .radio-group{
        display:flex;
        align-items:center;
        gap:20px;
        margin-bottom:20px;
    }

    .delegate-numbers{
        display:none;
        margin-top:15px;
    }

    .delegate-form{
        border-top:1px solid #ddd;
        margin-top:20px;
        padding-top:20px;
    }

    label{
        font-size:18px;
    }

    .hidden{
        display:none;
    }

    .custom_radio_group {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .custom_radio_item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .custom_radio_item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #5d82c2;
    cursor: pointer;
  }

  .custom_radio_item span {
    font-size: 14px;
    color: #333;
  }

  #custom-email-div {
    display: none;
    margin-top: 15px;
  }

  .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .d-md-flex {
    display: flex;
    gap: 12px;
  }

  @media(max-width:768px){
    .d-md-flex{
      flex-direction: column;
    }
  }


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

    .custom_registration_wrapper{
        flex-direction: column;
        gap: 25px;
    }

    .custom_radio_group{
        gap: 18px;
    }

}
/* anurag css end 13-05-26 */


.flexes-property{display: flex;justify-content: space-between;}
.width-logo-mod img{max-width: 300px !important;}
 
@media(max-width:580px){
 
.form_container{padding: 0px 0px;}
.flexes-property {display: block; }
.mobile-wid{width: 100%;}
.Modal-Close-Container {
    position: absolute;
    top: 9px;
    right: 7px;
}
.width-logo-mod img{max-width:240px;}
.flipclose-buttos::after {
    content: "+";
    font-size: 35px;
    line-height: 45px;
}
.flipclose-buttos {width: 36px; height: 36px;}
 
}



