@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;400&display=swap');

/*resets*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #2294ed;
    --accent-color-dark: #1d69a3;
    --padding-inline-section: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-text-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
}


/*utility classes*/

.small-bold-text {
    font-size: 1rem;
    font-weight: 700;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    overflow: hidden;
}

.flex {
    display: flex;
    align-items: center;
}

.hover-links {
    color: var(--primary-text-color);
}

.hover-links:hover {
    color: var(--accent-color);
    transition: 0.25s ease-out;
}

.hover-link {
    color: red;
    background-color: yellow;
}

.hover-link:hover {
    color: black;
    transition: 0.1s ease-out;
}

.primary-button {
    background-color: var(--accent-color);
    border-radius: 6px;
    font-weight: 700;
    color: white !important;
    padding: 12px 24px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.2s ease-out;
    text-align: center;
}

.primary-button:hover {
    background-color: var(--accent-color-dark);
}

.secondary-button {
    border: 0.5px solid var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-text-color) !important;
    padding: 12px 24px;
    transition: 0.2s ease-out;
}

.secondary-button:hover {
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
}


/* top banner */

.top-banner {
    background-image: url('./Assets/top-banner.png');
    background-color: #4fb3d4;
    background-size: 300px;
}

.banner-text {
    color: white;
    padding: 15px 30px;
    text-align: center;
}


/* nav */

.main-nav {
    margin-top: 20px;
    justify-content: space-between;
    position: relative;
}

.company-logo img {
    width: 200px;
}

.nav-links {
    flex-basis: 730px;
}

.nav-links ul {
    justify-content: end;
    gap: 40px;
}

.nav-toggle {
    display: none;
}

header {
    padding: 15px var(--padding-inline-section) 0;
}

.header-section {
    justify-content: center;
    gap: 50px;
}

#header-left {
    max-width: 50%;
}

#header-left h1 {
    margin-top: 20px;
}

.header-right{
    max-width: 50%;
}

.header-right img {
    width: 100%;
}

.get-started-button {
    margin-top: 30px;
}


/* companies section */

.companies-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.companies-header {
    font-size: 1.25rem;
    text-align: center;
    margin-block: 30px;
    color: var(--primary-text-color);
}

.logos {
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    height: 100px;
}


/* features section */

.features-section {
    padding: 40px var(--padding-inline-section);
    background-color: #f3f9ff;
    background-repeat: no-repeat;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-heading-text {
    margin-bottom: 20px;
}

.features-area {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    /*margin-top: 40px;*/
    padding: 20px;
}

.features-card {
    flex-direction: column;
    gap: 20px;
    max-width: 30%;
    text-align: center;
}

.features-card img {
    width: 60px;
}


/* examples header */


/* 
.examples-section {
    padding: 40px var(--padding-inline-section);
}

.examples-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.examples-area {
    justify-content: space-between;
    margin-block: 30px;
    flex-wrap: wrap;
}

.examples-card {
    width: 23%;
    position: relative;
    height: 300px;
    background: black;
    background-image: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/social.webp);
    background-size: cover;
    transition: 0.2s ease-out;
}

.examples-card:hover {
    box-shadow: 0 0 10px #888;
}

.examples-card:nth-child(2) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/photo.webp);
    background-size: cover;
}

.examples-card:nth-child(3) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/pdfjpg.png);
    background-size: cover;
}

.examples-card:nth-child(4) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/assignment.jpg);
    background-size: cover;
}

.card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
} */


/* cta section */

.cta-section-container {
    flex-direction: column;
    gap: 30px;
    color: white;
    text-align: center;
}

.cta-section {
    padding: 120px var(--padding-inline-section) 80px;
    background-color: #183b54;
}

.cta-section-container p {
    color: white;
    margin-top: 20px;
}


/* footer */

footer {
    padding-block: 80px;
    background-color: #ebf2fa;
}

.link-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-container {
    align-items: flex-start;
    justify-content: space-between;
}


/* sub-footer */

.subfooter {
    background-color: #b9cde4;
    padding: var(--padding-inline-section);
}

.subfooter-container {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}


/* Jiwaji result page this is page for jiwaji category ads */


/* 
.result-card {
    min-width: 250px;
    position: relative;
    height: 250px;
    background: black;
    background-image: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/ba.png);
    background-size: cover;
    transition: 0.2s ease-out;
}

.result-card:hover {
    box-shadow: 0 0 10px #888;
}

.result-card:nth-child(2) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/bca.png);
    background-size: cover;
}

.result-card:nth-child(3) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/bsc.png);
    background-size: cover;
}

.result-card:nth-child(4) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/bcom.png);
    background-size: cover;
}

.result-card-two {
    min-width: 250px;
    position: relative;
    height: 250px;
    background: black;
    background-image: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/llb.png);
    background-size: cover;
    transition: 0.2s ease-out;
}

.result-card-two:hover {
    box-shadow: 0 0 10px #888;
}

.result-card-two:nth-child(2) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/bed.png);
    background-size: cover;
}

.result-card-two:nth-child(3) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/ma.png);
    background-size: cover;
}

.result-card-two:nth-child(4) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/msc.png);
    background-size: cover;
}

.card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
} */


/* Post Section */

.post-section {
    justify-content: space-between;
    gap: 20px;
}

.post-left {
    float: left;
    max-width: 100%;
}

.post-left h1 {
    text-align: left;
}

.post-right {
    float: right;
    max-width: 100%;
}

.post-right img {
    width: 250px;
}


/* google ads */

#adsSection {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
}

.ads-section {
    justify-content: space-between;
    gap: 50px;
}

.ads-section img {
    max-height: 90px;
    max-width: 728px;
}


/* Link Button */

.link-button {
    color: #d30f0f;
    padding: 0 5px 0 5px;
    margin-left: 9px;
}


/* result-data.html page, where university, boards and govt is mentioned on the page */

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.image-container {
    position: relative;
    display: inline-block;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-container img {
    display: block;
    width: 250px;
    height: 250px;
    margin-bottom: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
}

.examplecollection-item {
    width: 100%;
    max-width: 23%;
    float: none;
    perspective: 1000px;
    flex: 0 auto;
    margin-bottom: 2%;
    margin-left: 2%;
    display: flex;
    position: static
}

.examplecollection {
    width: 102%;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-left: -2%;
    transition: opacity .2s;
    display: flex;
}

.example-gradient {
    background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .8));
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0;
    right: 0
}

.example {
    margin-top: 10px;
    width: 100%;
    min-width: 200px;
    perspective: 1000px;
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    flex: none;
    padding-bottom: 100%;
    padding-left: 25px;
    padding-right: 25px;
    transition: all .2s;
    display: inline-block;
    position: relative;
}

.example-title {
    color: #fff;
    text-align: left;
    letter-spacing: -.6px;
    font-family: Averta PE, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px
}

html.w-mod-touch * {
    background-attachment: scroll!important
}


/* .rec-box {
    min-width: 250px;
    position: relative;
    min-height: 250px;
}

.result-data {
    width: 23%;
    position: relative;
    min-height: 100%;
    transition: 0.2s ease-out;
}

.result-data:hover {
    box-shadow: 0 0 10px #888;
}

.result-data:nth-child(2) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/board.png);
    background-size: cover;
}

.result-data:nth-child(3) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/govt.png);
    background-size: cover;
}

.result-data:nth-child(4) {
    background: white;
    background-size: cover;
}

.result-data:nth-child(4):hover {
    box-shadow: none;
} */


/* univ.html page, result data where university, boards and govt is mentioned on the page */


/* 
.univ-data {
    width: 23%;
    position: relative;
    min-height: 250px;
    background: black;
    background-image: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/du.png);
    background-size: cover;
    transition: 0.2s ease-out;
}

.univ-data:hover {
    box-shadow: 0 0 10px #888;
} */


/* .univ-data:nth-child(2) {
   background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/bsc.png);
    background-size: cover;
} */


/* .univ-data:nth-child(2) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/ju.png);
    background-size: cover;
} */


/* .univ-data:nth-child(4) {
    background: linear-gradient(rgb(0, 0, 0, 0.1), rgb(0, 0, 0, 0.8)), url(./Assets/bsc.png);
    background-size: cover;
} */


/* du university final page where result is being shown */

.count:before {
    counter-increment: section;
    content: counter(section);
}


/* admit card page */


/* table */

tr {
    height: 35px;
    border: 5px solid rgb(255, 255, 255);
}


/*table td{*/


/*}*/

.td-align {
    text-align: center;
}


/* .center-tables table td{width:auto;}
.center-tables {color:inherit;}
.center-tables{
    overflow: hidden;
} */


/* .center-tables table td{width:auto;}
.center-tables table td .table-center{margin-right:15px; margin-left:15px;}
.center-tables #heading > div a{color:#fff; text-decoration:none;}
.center-tables #heading #view a{color:inherit;} */

#box-data-mobile {
    display: none;
}

.box-data {
    width: 100%;
    cellpadding: 0;
    cellspacing: 0;
}

#image1,
#image2,
#image3,
#image4,
#image5,
#image6,
#image7,
#image8,
#image9,
#image10,
#image11,
#image12 {
    margin: 2px;
    width: 98.5%;
}

#image1 a {
    padding-top: 10px;
    color: white;
    background-color: #739d00;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image2 a {
    padding-top: 10px;
    color: white;
    background-color: #0018ca;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image3 a {
    padding-top: 10px;
    color: white;
    background-color: #ff9d00;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image4 a {
    padding-top: 10px;
    color: white;
    background-color: #890808;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image5 a {
    padding-top: 10px;
    color: white;
    background-color: #ff0000;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image6 a {
    padding-top: 10px;
    color: white;
    background-color: #009fd8;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image7 a {
    padding-top: 10px;
    color: white;
    background-color: #02a985;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image8 a {
    padding-top: 10px;
    color: white;
    background-color: #642cb1;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image9 a {
    padding-top: 10px;
    color: white;
    background-color: #066fd8;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image10 a {
    padding-top: 10px;
    color: white;
    background-color: #b1822c;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image11 a {
    padding-top: 10px;
    color: white;
    background-color: #b80000;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}

#image12 a {
    padding-top: 10px;
    color: white;
    background-color: #29b403;
    font-size: 25px;
    font-weight: 700;
    width: 260px;
    height: 80px;
    text-align: center;
}


/* result-data page, university page, board page, govt page and admit card page use these below sections */

.b-sec {
    width: 850px;
    text-align: center;
    background-color: indianred;
    color: white;
    margin-bottom: 5px;
}

.content-area {
    float: none;
    width: 850px;
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
}

.text-align {
    text-align: center;
}


/* .glow-line {
    position: relative;
}

.glow-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60%;
    height: 3px;
    background-color: blue;
    box-shadow: 0 0 1px blue;
} */


/* table */


/*
table {
    border: none;
    width: 100%;
    color: #d30f0f;
    justify-content: center;
    border-collapse: collapse;
    margin: 20px;
  }

  tr{
    height: 25px;
  } 

  td, th {
    border: 1px solid #2e2e2e;
    text-align: left;
  }
  */


/* side panel 

.side-header{
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}

.side-area{
    justify-content: space-between;
    margin-block: 30px;
}

.side-card{
    width: 23%;
    position: relative;
    max-height: 250px;
    max-width: 250px;
    background-color: black;
    background-size: cover;
}
*/


/*#sidePanel {
    margin-right: 20px;
    width: 180px;
    float: right;
    background-color: #f2f2f2;
    position: relative;
}*/


/* post{
    padding: 50px var(--padding-inline-section) 0;
} */