/*  removing non-sense padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #f7fafc;
    padding-top: 80px; /* top navbar ki height */
}

/* Container ka size (10px x 5px bahut chhota tha, dikhega hi nahi, isliye 50px kiya hai) */
.logo {
    width: 200px;
    height: auto;
    background-color: rgb(24, 34, 179);
}

/* Yeh line image ko div ke andar perfectly fit aur chhota karegi */
.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Customising navigation bar*/
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    background-color: #103bc9;
    padding: 7px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.nav-links{
    display: flex;
    gap: 2rem;
    font-family: 'Prociono', serif;
    font-weight: bold;
    font-size: large;
}

nav a{
    text-decoration: none;
    color: #f7fafc;
}

nav a:hover {
    color : rgb(227, 245, 72)
}

body{
    background-color: #f7fafc;
}
.communicate {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-shadow: grey;
}

.communicate form {
    padding: 40px;
    border: 2px solid black;
    background-color: rgb(241, 241, 95);
    border-radius: 20px;
}
/* It's from analyse.html page css style tag*/
.file_upload {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading h1 {
    margin: 0;
}

.main-sectionioning {
    display: flex;
    justify-content: center;
}

.main-sectionioning form {
    width: 100%;
}

.upload-box {
    border: 2px dashed rgb(43, 156, 226);
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
}

.upload-icon {
    font-size: 70px;
    color: rgb(43, 156, 226);
    margin-bottom: 20px;
}

.browse-button {
    display: inline-block;
    padding: 10px 55px;
    background-color: rgb(43, 156, 226);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-box p {
    color: #aaa;
    font-size: 18px;
    margin: 20px 0;
}

.upload-box small {
    font-size: 16px;
}

.upload-box small span {
    color: red;
}

.submit-button {
    display: block;
    margin: 20px auto 0;
    padding: 8px 25px;
    background-color: rgb(43, 92, 226);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
    
/* It is from result.html style tag */
    .soma-section {
        display: flex;
        width: 100%;
    }

    .virtue {       
        width: 200px; 
        flex-shrink: 0;
    }

.analyser-nav {
    display: flex !important;
    flex-direction: column;

    justify-content: flex-start !important;
    align-items: flex-start !important;

    gap: 40px !important;

    font-family: 'Prociono', serif;
    font-weight: bold;
    font-size: large;

    position: fixed;
    top: 80.12px;
    left: 0;
    bottom: 0;
    width: 200px;

    background-color: #0b5bb6;
    padding: 30px 20px;
    z-index: 10;
}

/* Jo link active/clicked hoga uska color change ho jayega */
.analyser-nav a.active-link {
    color: #007bff; /* Aap apna manpasand color daal sakte hain */
    font-weight: bold;
    border-bottom: 2px solid #007bff; /* Niche ek line aa jayegi */
}


    
.main-contention-area {
        margin-left: 200px; 
        padding: 20px;
        flex-grow: 1;
}


/* mera dashboard ka likha jayega prem-gatha idhar */


.main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: calc(100vh - 80px);
    background-color: lightskyblue;

    padding: 40px 5vw;
    gap: 5vw;
    margin: 0;
}

.video-player {
    width: 55vw;
    flex-shrink: 0;
}

.video-playing {
    width: 100%;
}

.video-playing iframe {
    display: block;
    width: 55vw;
    height: calc(55vw * 9 / 16);
    border: none;
}

.some-shit {
    width: 35vw;
    text-align: center;
    flex-shrink: 0;
}

.some-shit h1 {
    margin-bottom: 20px;
}

.some-shit h2 {
    margin-bottom: 30px;
}

.analysis-button {
    display: inline-block;
    border: 2px solid black;
    background-color: rgb(235, 235, 92);
    padding: 10px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.analysis-button:hover {
    transform: scale(1.1);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
  text-align: center;
  padding: 3px;
  background-color: rgb(194, 186, 186);
  color: rgb(15, 15, 15);
  margin-top: auto;
}

/* CSS for Providers.html */
.providers-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid black;
    background-color: beige;
}
.providers-container h4{
    font-family: monospace;
    font-style: italic;
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.provider-card:hover {
    transform: scale(1.01);
}

.provider-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid black;
    background-color: lightpink;
}

.provider-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

/* CSS related to about.html */
.about-container{
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid black;
    background-color: beige;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-style: italic;
}


/* Table Layout Setup */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; 
}

/* Headings (Type, Value) ki Styling */
th {
    background-color: #e2af21; 
    color: #ffffff;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Data Cells (td) ki Styling */
td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
    color: #333333;
    vertical-align: top;
}




.base-count {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid black;
    background-color: rgb(224, 224, 77);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.base-count th{
    background-color: #333333;
}
.base-count td{
    background-color: white;
}

.comparison-image{
    max-width: 1450px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid black;
    background-color: lightcoral;

}
.comparison-image h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 600;
    text-decoration: underline;
}

.orf-class{
    max-width: 1450px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid black;
    background-color: bisque;
    box-shadow: lightblue;

}
.orf-class table{
    width: 100%; table-layout: fixed;
}

.orf-class tr{
    max-width: 1400px;
}

.orf-class td{
    word-break: break-all; overflow-wrap: break-word;
    width: 30%;
}

.translation-class{
    display: grid;
    grid-template-rows: auto auto auto;

    background-color: #dd94d3;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    word-break: break-all; 
    overflow-wrap: break-word
}

.translation-class h1{
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.hidden {
    display: none !important;
}