    @import url("https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Jost:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

    :root {
        --body: #fff;
        --black: #000;
        --white: #fff;
        --p1-clr: #0A6375;
        --p2-clr: #F7941E;
        --p3-clr: #ED145B;
        --p4-clr: #73BE48;
        --p5-clr: #1CBBB4;
        --cmnbg: #FFF0E5;
        --theme: #F39F5F;
        --theme2: #70A6B1;
        --header: #385469;
        --text: #5C707E;
        --pra: #686868;
        --text-2: #ffffffcc;
        --border: #E5E5E5;
        --border2: #242449;
        --border3: #5262FF;
        --bg: #F4EEE5;
        --bg2: #EFF5F6;
        --bg3: #70A6B1;
        --box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
          --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #f472b6;
            --success: #10b981;
            --success-dark: #059669;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #1f2937;
            --light: #f8fafc;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-rainbow: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.15);
            --border-radius: 24px;
            --border-radius-xl: 32px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .theme-btn {
        display: inline-block;
        vertical-align: middle;
        border: none;
        outline: none !important;
        color: var(--white);
        font-size: 16px;
        font-weight: 400;
        padding: 18px 30px;
        transition: all 0.4s ease-in-out;
        letter-spacing: 0;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        text-align: center;
        line-height: 1;
        z-index: 9;
        text-transform: capitalize;
    }

    .theme-btn i {
        margin-left: 5px;
    }

    .theme-btn::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: "";
        width: 20px;
        height: 20px;
        background-color: var(--p4-clr);
        z-index: -1;
        transition: all 0.6s;
        opacity: 0;
        visibility: hidden;
    }

    .theme-btn:hover .ani-arrow {
        transform: translateX(4px);
        display: inline-block;
    }

    .theme-btn:hover::before {
        width: 100%;
        height: 100%;
        opacity: 1;
        visibility: visible;
    }

    .theme-btn.bg-white {
        background-color: var(--white);
        color: var(--header);
    }

    .theme-btn.bg-white:hover {
        color: var(--white);
    }

    .theme-btn.transparent {
        background-color: transparent;
        border: 1px solid var(--theme2);
        color: var(--theme2);
        padding: 20px 40px;
    }

    .theme-btn.transparent:hover {
        color: var(--white);
    }

    @media (max-width: 767px) {
        .theme-btn.transparent {
            padding: 18px 32px;
        }
    }

    @media (max-width: 575px) {
        .theme-btn.transparent {
            padding: 16px 30px;
            font-size: 14px;
        }
    }

    .theme-btn.transparent-2 {
        background-color: transparent;
        border: 1px solid var(--p2-clr);
        color: var(--p2-clr);
        padding: 20px 40px;
    }

    .theme-btn.transparent-2:hover {
        color: var(--white);
        border: 1px solid transparent;
    }

    @media (max-width: 767px) {
        .theme-btn.transparent-2 {
            padding: 18px 32px;
        }
    }

    @media (max-width: 575px) {
        .theme-btn.transparent-2 {
            padding: 16px 30px;
            font-size: 14px;
        }
    }

    @media (max-width: 1199px) {
        .theme-btn {
            padding: 14px 24px;
        }
    }

    @media (max-width: 575px) {
        .theme-btn {
            padding: 14px 24px;
            font-size: 14px;
        }
    }

    .p5-btn:hover {
        color: var(--white) !important;
    }

    .p5-btn:hover i {
        color: var(--white);
    }

    .p5-btn:hover span {
        color: var(--white) !important;
    }


    body {
       font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--gradient-rainbow);
            background-size: 400% 400%;
            animation: gradientFlow 20s ease infinite;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
    }
     @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
        }

        /* Floating orbs background */
        .floating-orbs {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            animation: float 15s infinite ease-in-out;
        }

        .orb:nth-child(1) {
            width: 120px;
            height: 120px;
            left: 10%;
            top: 20%;
            animation-delay: 0s;
            background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
        }

        .orb:nth-child(2) {
            width: 80px;
            height: 80px;
            right: 15%;
            top: 60%;
            animation-delay: 3s;
            background: radial-gradient(circle, rgba(244,114,182,0.3), rgba(244,114,182,0.1));
        }

        .orb:nth-child(3) {
            width: 150px;
            height: 150px;
            left: 70%;
            bottom: 30%;
            animation-delay: 6s;
            background: radial-gradient(circle, rgba(99,102,241,0.2), rgba(99,102,241,0.05));
        }

        .orb:nth-child(4) {
            width: 60px;
            height: 60px;
            left: 20%;
            bottom: 20%;
            animation-delay: 9s;
            background: radial-gradient(circle, rgba(16,185,129,0.3), rgba(16,185,129,0.1));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            25% { transform: translateY(-20px) rotate(90deg) scale(1.1); }
            50% { transform: translateY(10px) rotate(180deg) scale(0.9); }
            75% { transform: translateY(-15px) rotate(270deg) scale(1.05); }
        }

    .registration-container {
       /* max-width: 800px;
        margin: 2rem auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;*/
         position: relative;
            z-index: 10;
            min-height: 100vh;
            padding: 2rem;
            
    }
  @media (max-width: 768px) {
            .registration-container {
                padding: 1rem;
            }
        }
        /* Glass morphism cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-hard);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }
    .header{
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
            text-align: center;
        }

        .title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: var(--dark);
            font-size: 1.25rem;
            margin: 0;
            gap: 10px;
        }
    .step-indicator {
        display: flex;
        justify-content: center;
        margin: 2rem 0;
        padding: 0 2rem;
    }

    .step {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e9ecef;
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .step.active .step-number {
        background: #F7941E;
        color: white;
        transform: scale(1.1);
    }

    .step.completed .step-number {
        background: #28a745;
        color: white;
    }

    .step-line {
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #e9ecef;
        z-index: -1;
    }

    .step:last-child .step-line {
        display: none;
    }

    .step.completed .step-line {
        background: #28a745;
    }

    .form-container {
        padding: 2rem;
    }

    .step-content {
        display: none;
        animation: fadeIn 0.5s ease-in-out;
    }

    .step-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        font-weight: 600;
        color: #495057;
        margin-bottom: 0.5rem;
    }

    .form-control,
    .form-select {
        border-radius: 10px;
        border: 2px solid #e9ecef;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    .btn-navigation {
        padding: 0.75rem 2rem;
        border-radius: 25px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: linear-gradient(135deg, #F7941E, #efc222);
        border: none;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    }

    .btn-secondary {
        background: linear-gradient(135deg, #6c757d, #495057);
        border: none;
    }

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    }

    .alert {
        border-radius: 10px;
        border: none;
    }

    .child-card {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }

    .child-card:hover {
        border-color: #007bff;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    }

    .required::after {
        content: " *";
        color: #dc3545;
    }

    .progress-bar-custom {
        height: 6px;
        background: #e9ecef;
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #007bff, #28a745);
        border-radius: 3px;
        transition: width 0.5s ease;
    }

    .iti {
        width: 100%;
    }

    .iti__country-list {
        left: auto !important;
        /* Align to the left */
        right: 0 !important;
        /* Disable right alignment */
    }
 .logo-container {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: conic-gradient(from 0deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
            z-index: -1;
        }
        .logo-container img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .header-section img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: white;
            padding: 15px;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .header-section img:hover {
            transform: scale(1.1) rotate(10deg);
        }

        .main-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 5vw, 3rem);
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .subtitle {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 500;
        }
