@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "EB Garamond", serif;
}
:root{
    --main-color:#1371d5;
    --text-color:#0d0d33;
    --back: #012d61;
    --text-color1:#080808;
    --hover:#076d6d;
    

}
body{
         font-family: "EB Garamond", serif;
}
.header1 {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, #1E3A8A, #2DD4BF);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a.active {
    font-weight: bold;
    border-bottom: 2px solid #FBBF24;
}

.language-toggle select {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

.language-toggle select option {
    background: #1E3A8A;
}

.hero {
    height: 100vh;
    background: linear-gradient(to right, #1E3A8A, #2DD4BF);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 80px;
    overflow: hidden;
}

/* Background Elements */
.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Neural Network Pattern */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" opacity="0.2"><path d="M10 10 L 200 200 M 300 50 L 500 300 M 600 100 L 400 400" stroke="white" stroke-width="1"/></svg>') repeat;
    opacity: 0.2;
}

/* Holographic Globe */
.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.3), transparent);
    border-radius: 50%;
    border: 2px solid #2DD4BF;
    opacity: 0.8;
}

/* Nodes on the Globe */
.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FBBF24;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.node-1 { top: 20%; left: 30%; }
.node-2 { top: 60%; left: 70%; }
.node-3 { top: 40%; left: 10%; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Connecting Lines Between Nodes */
.line {
    position: absolute;
    background: #2DD4BF;
    height: 1px;
    opacity: 0.5;
}

.line-1 {
    width: 100px;
    top: 25%;
    left: 35%;
    transform: rotate(45deg);
}

.line-2 {
    width: 120px;
    top: 50%;
    left: 15%;
    transform: rotate(-30deg);
}

/* Stethoscope */
.stethoscope {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Holographic Panels */
.panel {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #2DD4BF;
    border-radius: 10px;
    padding: 10px;
    color: white;
    font-size: 14px;
    text-align: center;
    animation: fade 6s infinite;
}

.panel-1 { top: 20%; left: 20%; }
.panel-2 { top: 30%; right: 20%; }
.panel-3 { top: 60%; left: 15%; }

@keyframes fade {
    0% { opacity: 0; }
    20% { opacity: 1; }
    40% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

/* ECG Line in Panel */
.ecg-line {
    width: 50px;
    height: 2px;
    background: #2DD4BF;
    position: relative;
    margin: 0 auto 5px;
    animation: ecg 2s infinite;
}

@keyframes ecg {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Bridge at the Bottom */
.bridge {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(45, 212, 191, 0.2);
    border-top: 2px solid #2DD4BF;
}

.bridge-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2DD4BF;
    animation: flow 4s infinite;
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Text and CTAs */
.hero-content {
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #2DD4BF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    width: 100%;
    padding: 50px 20px;
    background: white;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-context {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-context h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.about-context p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Case Reports Section */
.case-reports, .mentors,.community {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.case-reports h2, .mentors h2, .community h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1E3A8A;
    margin-bottom: 30px;
}
.mentors{
    width: 80%;
    margin: 0 auto;
    align-self: center;
    align-items: center;
    align-content: center;
    height: 100vh;
}
.card-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, border 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border: 2px solid #2DD4BF;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.mentor-img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    margin: 0 auto;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin: 10px 0;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.btn-card {
    background: #2DD4BF;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-card:hover {
    background: #1E3A8A;
}

/* Community Section */


.forum, .chill-room {
  
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    text-align: center;
    background-color: var(--main-color);
}
.chill-room p, h3{
    color:white;
  
}
.forum p, h3{
      color:white;
    
}

/* Footer */
footer {
    padding: 40px;
    background: var(--back);
    color: #fff;
    text-align: center;
}

.footer-content {
      display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
}
.footer-section a{
text-decoration: none;
color: white;
font-size: 18px;
}
.footer-section a:hover{
    transform: translateY(-10px);
transition-duration: 2s;
}
.footer-section li{
text-decoration: none;
list-style: none;
}
/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2DD4BF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chatbot img {
    width: 40px;
    height: 40px;
}
  


/* Page Hero Section (For Other Pages) */
.page-hero {
    height: 50vh;
    background: linear-gradient(to right, #1E3A8A, #2DD4BF);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 80px;
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
}

/* Learning Paths Section (For Learn Page) */
.learning-paths {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.learning-paths h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1E3A8A;
    margin-bottom: 30px;
}

.path-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.title{
    font-size: 25px;
}
.path-card {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 20px;
    width: 350px;
    text-align: center;
}

.path-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.path-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.progress-bar {
    background: #E5E7EB;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.progress {
    background: #2DD4BF;
    height: 100%;
    border-radius: 5px;
}
/* Testimonials Section */
/* Learn Hero Section */
.learn-hero {
    background: linear-gradient(135deg, #1a73e8, #34c759);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.learn-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.learn-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.learn-hero h1.visible {
    opacity: 1;
    transform: translateY(0);
}

.learn-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.learn-hero p.visible {
    opacity: 1;
    transform: translateY(0);
}

.learn-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.learn-filters.visible {
    opacity: 1;
    transform: scale(1);
}

.learn-filters input,
.learn-filters select {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.learn-filters input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.learn-filters input:focus,
.learn-filters select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Learn Hero Section */
.learn-hero {
    background: linear-gradient(135deg, #1a73e8, #34c759);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.learn-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.learn-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.learn-hero h1.visible {
    opacity: 1;
    transform: translateY(0);
}

.learn-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.learn-hero p.visible {
    opacity: 1;
    transform: translateY(0);
}

.learn-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.learn-filters.visible {
    opacity: 1;
    transform: scale(1);
}

.learn-filters input,
.learn-filters select {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.learn-filters input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.learn-filters input:focus,
.learn-filters select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Courses Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #6b48ff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #6b48ff;
}

.language-toggle select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Mobile Menu */
.switch {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 40px 60px;
    background: linear-gradient(135deg, #6b48ff 0%, #2dd4bf 100%);
    color: #fff;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn-primary {
    background: #fff;
    color: #6b48ff;
    margin-right: 15px;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 60px 40px;
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-context h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Card Grid Sections */
.case-reports, .mentors {
    padding: 60px 40px;
    background: #f9fafb;
    align-self: center;
}

.case-reports h2, .mentors h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.btn-card {
    padding: 10px 20px;
    background: #6b48ff;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-card:hover {
    background: #5a3de6;
}

/* Community Section */

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
   align-items: center;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 40px;
    background: #f9fafb;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    padding: 60px 40px;
    background: #333;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 60px 40px;
    text-align: center;
    background: #6b48ff;
    color: #fff;
    height: 500px;
    align-content: center;
}

/* Footer */


/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 340px;
    max-height: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: #6b48ff;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-body {
    padding: 15px;
    flex-grow: 1;
    overflow-y: auto;
    background: #f0f2f5;
}

.chatbot-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.chatbot-message .content {
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    max-width: 80%;
}

.chatbot-message.user .content {
    background: #6b48ff;
    color: #fff;
}

.chatbot-message.bot .content {
    background: #fff;
    color: #333;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e0e4e8;
}

.chatbot-input input {
    flex-grow: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 8px;
}

.chatbot-input button {
    padding: 8px 15px;
    background: #6b48ff;
    color: #fff;
    border: none;
    border-radius: 20px;
}

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #6b48ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}
/*login register*/
 .register-section {
            padding: 60px 20px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            top: 100px;

            
        }

        .register-section h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 40px;
            color: #34c759;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            0% { text-shadow: 0 0 10px rgba(52, 199, 89, 0.5); }
            100% { text-shadow: 0 0 20px rgba(52, 199, 89, 0.8); }
        }

        .register-form {
            background: #1a1a2e;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border-left: 5px solid #1a73e8;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .form-step {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .form-step.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: #34c759;
            margin-bottom: 5px;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="password"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #34c759;
            border-radius: 5px;
            background: #2a2a40;
            color: #e0e0e0;
            font-size: 14px;
        }

        .custom-select {
            border: 1px solid #34c759;
            border-radius: 5px;
            max-height: 150px;
            overflow-y: auto;
            padding: 5px;
            background-color: #2a2a40;
        }

        .custom-select .option {
            display: flex;
            align-items: center;
            padding: 10px;
            font-size: 14px;
            color: #b0b0b0;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .custom-select .option:hover {
            background-color: #3a3a50;
        }

        .custom-select .option.selected {
            background-color: #1a73e8;
            color: #fff;
        }

        .custom-select .option input[type="checkbox"] {
            margin-right: 10px;
        }

        .button-group {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

    

        .next, .submit {
            background-color: #1a73e8;
            color: #fff;
        }

        .next:hover, .submit:hover {
            background-color: #155ab2;
            transform: scale(1.05);
        }

        .prev {
            background-color: #2a2a40;
            color: #b0b0b0;
        }

        .prev:hover {
            background-color: #3a3a50;
            transform: scale(1.05);
        }

        button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        .error {
            color: #ff4d4f;
            font-size: 12px;
            margin-top: 5px;
            display: none;
            text-shadow: 0 0 5px rgba(255, 77, 79, 0.5);
        }

        .error.visible {
            display: block;
        }

        .server-error {
            color: #ff4d4f;
            font-size: 14px;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 5px rgba(255, 77, 79, 0.5);
        }

        .progress-bar {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
        }

        .progress-step {
            width: 10px;
            height: 10px;
            background-color: #2a2a40;
            border-radius: 50%;
            margin: 0 10px;
            transition: background-color 0.3s;
        }

        .progress-step.active {
            background-color: #1a73e8;
        }

        .progress-line {
            position: absolute;
            top: 50%;
            left: 20px;
            right: 20px;
            height: 2px;
            background-color: #2a2a40;
            transform: translateY(-50%);
            z-index: -1;
        }

        .progress-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background-color: #1a73e8;
            transition: width 0.3s ease;
        }

     /*pricing */

       
        .subscription{
            width: 100%;
              height: 100vh;
        }
       .boxses{
            width: 100%;
          
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            min-height: 400px;
            padding-top: 50px;
       }
       .box1{
        min-width: 280px;
        min-height:400px;
       box-shadow:3px 2px 10px 4px var(--hover);
       border-radius: 5px 30px 5px 5px;
       }
       .box1 h2{
        font-size: 30px;
        color: #1E3A8A;
       }
       .box1 ul{
         min-height:400px;
       display: grid;
  grid-template-rows: repeat(auto-fit, minmax(30px, 1.2fr));
  row-gap: 20px;
       }
       .box1 li{
        list-style: none;
        font-size: 18px;
        
       }
       .box1 button{
            height: 40px;
            border-radius: 15px;
            color:var(--text-color1);
            background-color: #1371d5;
        }
        .title{
            font-size: 35px;
            color: var(--text-color);
        }
      /* Base header */

