* {
        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, #0678b1 0%, #1b9fdf 100%);
    }
    
    .medical-gradient-reverse {
        background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
    }
    
    .medical-accent {
        background: linear-gradient(135deg, #0e7490 0%, #0891b2 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(34, 211, 238, 0.9) 0%, rgba(8, 145, 178, 0.6) 100%);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.5), 0 0 20px rgba(8, 145, 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, #48d992 0%, #197c4c 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, #0891b2, #22d3ee);
        border-radius: 5px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #0e7490, #0891b2);
    }

    /* 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(143 239 193) 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: #9ca3af;
        transition: all 0.3s ease;
    }
    
    .step-indicator.active {
        background: linear-gradient(135deg, #0891b2 0%, #22d3ee 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: #0891b2;
        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);
    }

    .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: #0891b2;
    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: #9ca3af;
            transition: all 0.3s ease;
        }
        
        .step-indicator.active {
            background: linear-gradient(135deg, #0891b2 0%, #22d3ee 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: #0891b2;
            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, #06b6d4 0%, #0c84bf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        
        .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, #06b6d4 0%, #3b82f6 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(22 132 185)!important;
}
.text-cyan-800 {
    --tw-text-opacity: 1;
    color: rgb(22 132 185) !important;
}
.bg-cyan-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(201 255 229)!important;
}
.bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(201 255 229)!important;
}

.from-cyan-500 {
    --tw-gradient-from: #2aa7e3 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: #0974a7 var(--tw-gradient-to-position)!important;
}
.border-cyan-500 {
    --tw-border-opacity: 1;
    border-color: rgb(23 151 213)!important;
}
.border-cyan-600 {
    --tw-border-opacity: 1;
    border-color: rgb(22 132 185)!important;
}
.to-cyan-600 {
    --tw-gradient-to: #53baff var(--tw-gradient-to-position)!important;
}
.from-blue-500 {
    --tw-gradient-from: #2d56af 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(23 151 213)!important;
}
.via-cyan-900\/90 {
    --tw-gradient-to: rgb(22 78 99 / 0) var(--tw-gradient-to-position)!important;
    --tw-gradient-stops: rgba(75, 174, 255, 0.88), rgb(22 64 44 / 76%) var(--tw-gradient-via-position), rgb(70 193 133 / 50%)!important;
}
.hover\:border-blue-400:hover {
    --tw-border-opacity: 1!important;
    border-color: rgb(194, 214, 255)!important;
}
.attendee-card:hover .icon-circle {
    background: linear-gradient(135deg, #daf2ff 0%, #128fcc 100%) !important;
    transform: scale(1.1)!important;
}
.stroke-blue-600:hover {
    stroke: #ffffff!important;
}

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

.foot_icon a i{
    color: #fff;
}

.text-blue-500, .text-cyan-500 {
    --tw-text-opacity: 1;
    color: #0891b2!important;
}
.footercont { background: #dcf3ff}
.text-cyan-400 {
    --tw-text-opacity: 1!important;
    color: rgb(22 132 185)!important;
}
.bg-cyan-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 132 185)!important;
}
.hover\:text-cyan-600:hover {
    --tw-text-opacity: 1!important;
    color: rgb(22 132 185)!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: #088ac9; }

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


.laptop-bg-banner{
    background-image: linear-gradient(135deg, #118bc82e 0%, #006fa59e 100%)!important;
}

.key-takeaways{
    background: linear-gradient(135deg, #ffffff 0%, #4bbbf1 100%) !important;
    color: #fff;
}

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

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

.icon-circle {
    background: linear-gradient(135deg, rgb(0 103 120 / 10%) 0%, rgb(0 72 191 / 10%) 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 #4f7df3;
    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 #7aa5ff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0 0 8px rgba(122,165,255,0.35);
}

/* Inner Dot */
.custom_radio_item label::after{
    content: "";
    width: 10px;
    height: 10px;
    background: #4f7df3;
    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;
}

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;
    }
  }

.field-error {
        color: #c1121f;
        font-size: 12px;
        line-height: 1.4;
        margin-top: 6px;
}

.input-error {
        border-color: #c1121f !important;
        box-shadow: 0 0 0 1px #c1121f !important;
}

.form-status {
        margin: 12px 0 16px;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 14px;
}

.form-status-error {
        background: #fee2e2;
        color: #b91c1c;
        border: 1px solid #fecaca;
}

.form-status-success {
        background: #dcfce7;
        color: #166534;
        border: 1px solid #bbf7d0;
}


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

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

    .custom_radio_group{
        gap: 18px;
    }

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

