body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background:#07273C;
    /*color: white;*/
}
:root {
    --accent-color: #07273C; /* yahan humne var(--accent-color) ka actual value diya */
}



.stages{
 margin-top: 40px;
    display: grid;
    grid-template-columns: 3fr 1fr   ;
}

.container {
    /*max-width: 500px;*/
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

h1 {
    text-align: center;
    color: #fff!important;
}
h1 {
    /*text-align: center;*/
    color: #fff!important;
}

input,
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}
.course-price{
color:#000
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1,
h2,
h3 {
    color: var(--primary-color);
}

/* Navbar */
nav {
    background: var(--primary-color);
    padding: 1rem 0;
    color: white;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
input:focus {
  color: black!important;
}

.video-description{
 background:#F7671E;   
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}
.nav-links{
 display:flex;
    justify-content: space-between;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #07273C 0%, #0c3a5a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Course Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-info {
    padding: 25px;
    background-color: #FF7020;
}

.course-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 15px 0;
}

.btn {
    display: inline-block;
       padding: 12px 0px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-accent {
    background: var(--accent-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

/* Video Portal UI */
.portal-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.video-grid-portal {
 display: flex;
    flex-direction: column;
    gap:30px
}


@media (max-width: 992px) {
   .stages{
     grid-template-columns: 1fr;  
   }
   input {
    width: 100%;
    padding: 50px 10px;
    margin: 10px 0;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
}

}

.main-video-area {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    padding: 30px;
}

.content-sidebar {
    /* background: white; */
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.content-list {
    list-style: none;
    margin-top: 20px;
}

.content-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.content-item:hover {
    background: #f1f5f9;
}

.content-item.active {
    /*background: #f0f4ff;*/
    border-color: #6366f1;
}

.content-item i {
    margin-right: 15px;
    color: #64748b;
}

.content-item.active i {
    color: #6366f1;
}

.play-badge {
    background: #e0e7ff;
    color: #4338ca;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
}