/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Exact Digital Azadi Colors */
:root {
    --brand-orange: #ff6b35;
    --brand-blue: #1e40af;
    --accent-orange: #f97316;
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --red: #dc2626;
    --green: #16a34a;
    --yellow: #fbbf24;
    --purple: #8b5cf6;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
}

/* Buttons */
.cta-btn {
    background: linear-gradient(45deg, #f91616, #ea0c0c);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(249, 22, 22, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(249, 22, 22, 0.5);
    animation: bounce 0.6s ease-in-out;
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-btn.white {
    background: white;
    color: var(--brand-blue);
}

.cta-btn i {
    margin-right: 8px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #6b7280;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #6b7280;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.registration-form input,
.registration-form select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: transparent;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: var(--brand-orange);
}

.registration-form button {
    margin-top: 1rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo > img{
    width: 50px;
}

.header-register-btn {
    /* display: none; */
    border: 2px solid yellow;
}

@media (min-width: 768px) {
    .header-register-btn {
        display: inline-flex;
    }

    .logo{
        font-size: 1.75rem;
    }

    .logo > img{
        width: 80px;
    }
}

@media (max-width: 486px) {
    .header-register-btn{
        scale: .7;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #080b15 0%, #2b1b3b 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" fill-opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" fill-opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" fill-opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" fill-opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.offer-banner {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-text {
    display: inline-block;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    animation: pulseGlow 2s infinite;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-subtitle {
    color: #fbbf24;
    font-weight: 600;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.text-highlight {
    color: #fbbf24;
    /* text-shadow: 0 0 10px rgba(251, 191, 36, 0.5); */
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.video-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px var(--shadow-color);
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-color);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgb(255, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(255, 107, 107, 1);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
}

.video-overlay h3 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 1.1em;
    opacity: 0.9;
}

.videos-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    box-sizing: border-box;
}

.videos-wrapper > .video-container {
    flex: 1 1 calc(50% - 30px);
    margin: 0;
}

.videos-wrapper .video-thumbnail {
    border-radius: 10px 10px 0 0;
}

.videos-wrapper .video-thumbnail > .video-title {
    color: white;
    padding: 10px;
    background: linear-gradient(135deg, #080b15 0%, #2b1b3b 100%);
}

.videos-wrapper .video-thumbnail {
    box-shadow: 0 6px 16px #0000009c;
}

@media (max-width: 768px) {
    .videos-wrapper > .video-container {
        flex: 1 1 100%;
    }
}

/* Video Modal */
.video-modal {
    background: rgba(0, 0, 0, 0.95);
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 70vh;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.video-modal .modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 24px;
    z-index: 10001;
}

.video-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Live Alert */
.live-alert {
    background: linear-gradient(45deg, #dc2626, #ef4444, #dc2626);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.live-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.live-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Steps Section */
.steps-section {
    background: white;
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-1 {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    animation: slideInFromLeft 0.8s ease-out;
}

.step-2 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.step-3 {
    background: linear-gradient(135deg, #16a34a, #15803d);
    animation: slideInFromRight 0.8s ease-out 0.4s both;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-title.blue {
    color: var(--brand-blue);
}

.step-title.orange {
    color: var(--brand-orange);
}

.step-title.green {
    color: #10b981;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #eff6ff, #fed7aa);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-icon.orange {
    background: linear-gradient(135deg, var(--brand-orange), #ef4444);
}

.benefit-icon.blue {
    background: linear-gradient(135deg, var(--brand-blue), #2563eb);
}

.benefit-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Learn Section */
.learn-section {
    background: white;
    padding: 4rem 0;
}

.learn-points {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.learn-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.learn-point:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 0.875rem;
}

.check-icon.orange {
    background: var(--brand-orange);
}

.check-icon.blue {
    background: var(--brand-blue);
}

.check-icon.green {
    background: #10b981;
}

.check-icon.purple {
    background: #8b5cf6;
}

/* Implementation Section */
.implementation-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #f97316 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.implementation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

/* Testimonials Section */
.testimonials-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #feca57;
    font-size: 1.2em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
}

.author-info h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
}

.author-info p {
    color: #666;
    font-size: 0.9em;
}

/* Audience Section */
.audience-section {
    background: white;
    padding: 4rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.audience-card {
    padding: 2rem;
    border-radius: 15px;
}

.audience-card.not-for {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.audience-card.for {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.audience-card.not-for h3 {
    color: #dc2626;
}

.audience-card.for h3 {
    color: #16a34a;
}

.audience-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audience-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.audience-point i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.audience-card.not-for .audience-point i {
    color: #dc2626;
}

.audience-card.for .audience-point i {
    color: #16a34a;
}

/* Mentor Section */
.mentor-section {
    background: linear-gradient(135deg, #080b15 0%, #2b1b3b 100%);
    color: white;
    padding: 4rem 0;
}

.mentor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
}

.mentor-image {
    flex: 1;
    max-width: 300px;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tedx-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--brand-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
}

.mentor-details {
    flex: 2;
    text-align: center;
}

.mentor-details h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mentor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge.orange {
    background: var(--brand-orange);
    color: white;
}

.badge.white {
    background: white;
    color: var(--brand-blue);
}

.mentor-description {
    text-align: left;
    line-height: 1.8;
}

.mentor-description p {
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-orange);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .mentor-content {
        flex-direction: row;
        text-align: left;
    }
    
    .mentor-details {
        text-align: left;
    }
    
    .mentor-badges {
        justify-content: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-orange);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.show {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced card animations */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.success-section{
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Loader */
.freez-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffffe8;
    z-index: 999;
}
.spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #474bff 94%, #0000) top/9px 9px no-repeat,
        conic-gradient(#0000 30%, #474bff);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
    animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}