/* General Reset */
*,
*:before,
*:after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #003342;
    background-color: #c2c2c2;
}

/* Container Settings */
.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Navigation Styles */
nav {
    color: white;
    font-size: 17px;
    font-weight: 500;
    position: fixed;
    transition: all 0.2s;
    width: 100%;
    z-index: 1000;
}


.nav {
    display: flex;
    padding: 10px 30px;
    justify-content: space-between;
    background: white;
    height: 100px;
    line-height: 100px;
}

.nav span {
    margin-top: 10px;
}

.nav-items {
    display: flex;
    align-items: center;
}

.nav-items a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    transition: padding 0.2s;
    font-weight: 700;
}

.nav-items a:hover {
    padding-bottom: 25px;
    text-underline-offset: 7px;
    text-decoration: underline;
    transition: 0.5s;
}

.nav-items a:last-child {
    display: none;
}

.nav-scroll {
    color: white;
    font-size: 14px;
    transition: all 0.5s;
}

.nav-scroll .nav-items a {
    padding: 20px 0px;
    color: black;
    border: none;
    border-top: 3px solid transparent;
}

.nav-scroll .nav-items a:hover {
    border-color: #00c1f7;
}
@media screen and (max-width: 1100px) and (min-width: 1075px){
    .nav-items {
    font-size: 11px;
}
}
@media screen and (max-width: 1380px) and (min-width: 1200px){
    .nav-items {
    font-size: 13px;
}
}
@media screen and (max-width: 1200px) and (min-width: 1075px) {
    nav{
        font-size: 12px !important;
    }
    .ps-hd-img{
        width: 200px !important;
    }
    .column-1 h1 {
        font-size: 3rem !important;
    }
}

@media screen and (max-width: 1075px) and (min-width: 768px) {
    nav{
        font-size: 9px !important;
    }
    .ps-hd-img{
        width: 150px !important;
    }
}

/* Overlay Nav */
.nav-overlay {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 10000;
    background-color: #003342;
    overflow-x: hidden;
    transition: all 0.2s;
    padding-top: 60px;
    text-align: center;
}

.nav-overlay a {
    padding: 10px;
    text-decoration: none;
    font-size: 22px;
    color: #e7f4f7;
    display: block;
    transition: 0.2s;
}

.nav-overlay a:hover {
    color: white;
}

.nav-overlay .toggle-nav {
    position: absolute;
    top: 0;
    right: 0;
    padding: 30px;
    font-size: 22px;
}

.nav-overlay .toggle-nav:hover {
    cursor: pointer;
    background-color: #005a75;
}

.ps-hd-img{
    width: 250px;
    height: auto;
}

/* Responsive Nav */
@media screen and (max-width: 900px) {
    .nav {
        padding-right: 0;
    }
    .nav-items a {
        display: none;
    }
    .nav-items a:last-child {
        display: block;
        padding: 30px;
    }
    
}

.nav-items a.active, .nav-overlay a.active {
    /* color: #00c1f7; */
    font-weight: bold;
    /* border-bottom: 2px solid #00c1f7; */
    padding-bottom: 25px;
    text-decoration: underline;
    text-underline-offset: 5px  ;
}

/* Banner Section */
.container-2 {
    display: flex;
    /* align-items: center; */
    justify-content: center; /* Horizontal center */
    width: 100%;
    /*height: calc(85vh - 100px);*/
    margin-top: 65px;
}

/* Columns Styling */
.column {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    text-align: left;
}

.column-1 {
    background-image: url(asset/images/column-1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.column-1 h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

/* Button Container */
.buttons {
    display: flex;
    gap: 20px; /* Space between buttons */
}

/* Buttons Styling */
button {
    padding: 15px 30px;
    border: 1px solid;
    /* border-radius: 5px; */
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: transparent;
    color: white;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-primary:hover {
    /* background-color: #0094C1; */
    transform: scale(1.1);
 }

.btn-secondary {
    background-color: #0094C1;
    color: rgb(255, 255, 255);
    border: 1px solid #ffffff;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-secondary:hover {
    /* background-color:transparent; */
    transform: scale(1.1);
}

/* Second Column Background */
.column-2 {
    background-color: #27aae1;
    
}
@media (max-width: 1074px) {
    .container-2 {
        flex-direction: column;
    }
}
/* Responsive Columns */
@media (max-width: 768px) {
    .container-2 {
        flex-direction: column;
    }
    .buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    button {
        width: 100%;
        margin: 0 auto;
    }
    h2{
        font-size: 28px !important;
    }
    .cart_table{
        padding: 0px !important;
    }
    .jsps{
        width: 100% !important;
    }
}


/* second section */

.about-container {
    max-width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Content Wrapper */
.about-content {
    text-align: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    margin-right: 15px;
}

.logo-section h2 {
    font-size: 1.5rem;
    color: #008cdd;
    text-align: left;
}

/* About Us Heading */
.about-heading {
    font-size: 2rem;
    color: #333;
    margin: 20px 0;
}

/* #EC2828 Underline */
.underline {
    width: 200px;
    height: 4px;
    background-color: #EC2828;
    margin: 0 auto 30px;
}

/* Description */
.about-description {
    font-size: 1.0rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
}

.read-more-btn {
    background-color: #008cdd;
    color: #fff;
    border: none;
    padding: 15px 30px;
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #006bb3;
}

/* Third section */
/* Container for the two columns */
.column-container {
    display: flex;
    width: 100%; /* Adjust as needed */
    background-color: white;
}
.column1 {
    flex: 1; /* Ensure both columns have equal width */
    padding: 35px;
    text-align: center;
    font-weight: bold;
    color: white;
}

.column2 {
    flex: 1; /* Ensure both columns have equal width */
    padding: 35px;
    text-align: center;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
}

.column2.round1 {
    padding-left: 0px !important;
}

.column2.round2 {
    padding-right: 0px !important;
}

/* Left column (#EC2828) */
.left-column {
    background-color: #B6464B;
    font-size: 2rem;
}

/* Right column (light blue) */
.right-column {
    background-color: #27aae1;
    font-size: 2rem;
}

/* Hover effect for smooth transition */
@media (max-width: 768px){
    .column-container {
        display: block !important;
    }
    .container-2{
        height: 100% !important;
    }
    .column-1 h1{
        font-size: 2rem;
    }
    .sponsor-section{
        display: block !important;
    }
    .sponsor-column{
        width: 100% !important;
    }
    .column2.round1 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .column2.round2 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .gratification{
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        
        /* padding: 0px 20px !important; */
    }
    .gratification h2{
        font-size: 24px !important;
    }
    .buttons1.btn.btn-primary.gratification{
        font-size: 10px !important;
    }
    .last-container h2{
        font-size: 24px !important;
    }
}

/* Rounds */
.round-1{
    border: 3px solid #EC2828;
    width: 100%;
    margin: 0px 16px;
    padding: 40px 20px 20px;
    position: relative;
    border-radius: 20px;
    background-color: white;
}

.round-1 h3{
    color: #EC2828;
}

.round-heading{
    position: absolute;
    top: -25px;
    width: 100%;
    left: 0;
    max-width: 500px;
    right: 0;
    margin: 0px auto;
    text-align: center;
    border-radius: 30px;
    border: 3px solid #EC2828;
    font-size: 24px;
    background: white;
    padding: 5px 0;
    text-transform: uppercase;
}

.round-details{
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: black;
}

.date-list li:first-child {
    display: block;
    text-align: center;
}

.date-list li{
    display: inline-block;
    padding: 0px 16px;
    line-height: 5rem;
    font-size: 19px;
}


/* quiz section */
.quiz-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    margin: 0;
    background-image: url(asset/images/Quiz-section.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 42px;
    text-transform: uppercase;
    color: white;
}


.underline2 {
    width: 25%;
    height: 4px;
    background-color: #ffffff;
    margin: 10px 0 50px 0;
}


button.btn.btn-primary.quiz {
    font-size: 18px;
    text-transform: uppercase;
}

.column-container.grafite{
    background-color: #75C9EC;
}

.gratification {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    font-size: 42px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);

}

.gratification h2{
    padding-bottom: 25px;
}


button.btn.btn-primary.gratification {
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    border: 1px solid #EC2828;
}

.last-container{
    padding: 30px 0;
    background: white;
}

.last-container h2{
    font-size: 42px;
}
.sponsor-section {
    display: flex;             
    justify-content: space-between;
    flex-wrap: wrap;           
    margin: 20px 0;           
}
.sponsor-column {
    width: 25.00%;                
    margin-bottom: 20px;       
    text-align: center;         
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-column h3{
    font-size: 28px;
    text-align: left;
}

.sponsor-column img{
    width: 250px;
}

footer {
    background: white;
    text-align: center;
    /* margin-top: 2em; */
    padding: 2em 0px 1em;
}

.footer-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    color: #000000;
}

.copy-right {
    font-size: 15px;
    color: #000000;
    line-height: 40px;
    font-weight: 600;
}

.footer-menu a {
    display: flex;
    justify-content: center;
    list-style: none;
    color: #000000;
    text-decoration: none;
}


/* About Page */
/* */
.container-3 {
    /* display: flex; */
    /* align-items: center; */
    justify-content: center; /* Horizontal center */
    width: 100%;
    /* height: calc(100vh - 100px); */
    margin-top: 100px;
}

.container-3 > div{
    height: 50vh !important;
}
@media(max-width:767px)
{
    .container-3 > div{
        height: 20vh !important;
    }   
    .underline2 {
        margin: 10px 0 0px 0;
    }
    .form-group-container .form-group {
        flex: 1;
        min-width: 100%;
    }
    .date-list li {
        line-height: 3rem;
    }
}
.alert {
    position: absolute;
    padding: .75rem 1.25rem;
    margin-bottom: 0rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin-top: 100px;
    left: 0;
    right: 0;
}
.alert-bottom.alert
{
    position: unset;
}
.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/*Quiz*/
.timer {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #f00;
}

.funkyradio div {
    clear: both;
    overflow: hidden;
    background: #e6e9ef;
}
.funkyradio label {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #D1D3D4;
    font-weight: normal;
    margin-bottom: 0;
    font-size: 14px;
    height: auto;
    padding: 8px 0px;
    font-weight: bold;
    vertical-align: top;
    line-height: 28px !important;
}
.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
  display: none;
}
.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before {
    line-height: 50px;
}
.funkyradio-info input[type="radio"]:checked ~ label:before {
    line-height: 50px;
}
.funkyradio input[type="radio"]:checked ~ label, .funkyradio input[type="checkbox"]:checked ~ label {
    color: #777;
    border: 1px solid #280070;
}
.funkyradio input[type="radio"]:empty ~ label, .funkyradio input[type="checkbox"]:empty ~ label {
    position: relative;
    line-height: 2.5em;
    text-indent: initial;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 0px;
}
.funkyradio-info {
    width: 100%;
    display: inline-block;
    margin-bottom: 14px;
}
.funkyradio input[type="radio"]:empty ~ label:before, .funkyradio input[type="checkbox"]:empty ~ label:before {
    position: absolute;
    display: block;
    top: -7px;
    bottom: 0;
    left: -40px;
    content: '';
    width: 2.5em;
    background: #00a9e0;
    border-radius: 3px 0 0 3px;
}
.funkyradio input[type="radio"]:hover:not(:checked) ~ label,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
  color: #888;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before, .funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #280070;
}

.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
  color: #777;
}

.funkyradio input[type="radio"]:checked ~ label:before,
.funkyradio input[type="checkbox"]:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #333;
  background-color: #ccc;
}
.funkyradio-info input[type="radio"]:checked ~ label:before, .funkyradio-info input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #280070;
}
.funkyradio-info {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    padding-left: 40px;
}
.question-list {
    margin-top: 30px;
}
.question-list p {
    margin-bottom: 13px;
    font-size: 16px;
    font-weight: bold;
}
.submit-btn {
    color: #fff !important;
    font-size: 15px;
    line-height: 44px;
    background: rgb(0,160,214);
    background: -moz-linear-gradient(top, rgba(0,160,214,1) 0%, rgba(0,148,193,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,160,214,1) 0%,rgba(0,148,193,1) 100%);
    background: linear-gradient(to bottom, rgba(0,160,214,1) 0%,rgba(0,148,193,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a0d6', endColorstr='#0094c1',GradientType=0 );
    border: none;
    margin-top: 20px;
    padding: 3px 30px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 100px;
}
.submit-btn:hover {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(109,109,109,1) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(109,109,109,1) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(109,109,109,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#6d6d6d',GradientType=0 );
    color: #fff !important;
}
/*Quiz*/

.d-none
{
    display: none !important;
}
span#vstCnt {
    opacity: 0;
    visibility: hidden;
}