/* About Us Tab Start  */


.layout {
    display: grid;
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* border: 1px solid #e77808; */
    grid-template-rows: 50px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

input[type="radio"] {
    display: none;
}

label.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #e77808;
    font-size: 20px;
    font-weight: 600;
    /* background: #ecf0f1; */
    user-select: none;
    transition: background 0.4s, padding-left 0.2s;
    padding-left: 0;
}

input[type="radio"]:checked+.page+label.nav {
    background: #e77808;
    color: #ffffff;
}

input[type="radio"]:checked+.page+label.nav svg {
    opacity: 1;
}

.page {
    grid-column-start: 1;
    grid-row-start: 2;
    grid-column-end: span 3;
    /* padding: 0px 20px; */
    display: flex;
    /* align-items: center; */
}

.page-contents>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
}

/* Simulating @for loop in SCSS */
.page-contents>*:nth-child(1) {
    transition-delay: 0.4s;
}

.page-contents>*:nth-child(2) {
    transition-delay: 0.6s;
}

.page-contents>*:nth-child(3) {
    transition-delay: 0.8s;
}

.page-contents>*:nth-child(4) {
    transition-delay: 1s;
}

.page-contents>*:nth-child(5) {
    transition-delay: 1.2s;
}

/* Add more nth-child rules if needed */

input[type="radio"]+.page {
    transition: transform 0.2s;
    transform: translateX(100%);
}

input[type="radio"]:checked+.page {
    transform: translateX(0%);
}

input[type="radio"]:checked+.page .page-contents>* {
    opacity: 1;
    transform: translateY(0px);
}

.page-contents {
    max-width: 100%;
    padding: 15px 20px 15px 20px;
    border-left: 2px solid #e77808;
    border-right: 2px solid #e77808;
    border-bottom: 2px solid #e77808;
}

/* About Us Tab End  */

/* Accordion css start  */

.faq-section {
    margin-bottom: 30px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.accordion .accordion-item {
    border: 1px solid gray;
    border-radius: .5rem;
    transition: .2s linear;
}

.accordion button {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    gap: .75rem;
    width: 100%;
    padding: 1rem !important;
    font-size: 16px;
    font-weight: 400;
    border: none;
    background: #f5f5f5;
    outline: 0;
    border-radius: .5rem;
}

.accordion button .accordion-plus {
    font-size: 1.2rem;
    color: blue;
    transition: transform .2s linear;
}

.accordion button:focus,
.accordion button:focus *,
.accordion button:hover,
.accordion button:hover * {
    cursor: pointer;
}

.accordion button[aria-expanded="true"] {
    border-bottom: 1px solid gray;
    border-radius: .5rem .5rem 0 0;
}

.accordion button .accordion-title {
    margin-right: auto;
}

.accordion button[aria-expanded="true"] .accordion-plus {
    transform: rotate(180deg);
    color: red;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: .2s linear;
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 20rem;
    transition: .2s linear;
}

.accordion .accordion-content p {
    padding: 1rem;
}

/* Default Active Accordion */
.accordion .accordion-item:first-child button {
    border-bottom: 1px solid gray;
    border-radius: .5rem .5rem 0 0;
}

.accordion .accordion-item:first-child button .accordion-plus {
    transform: rotate(180deg);
    color: red;
}

.accordion .accordion-item:first-child .accordion-content {
    opacity: 1;
    max-height: 20rem;
}

/* Accordion CSS End  */

.contact-list p {
    padding-left: 40px;
    margin-bottom: 10px;
}

.committee-content {
    margin-top: 30px;
}

.responsibilities-content {
    margin-top: 30px;
}

.single-fixture-widght {
    margin-top: 20px;
    margin-bottom: 10px;
}

.single-fixture-widght ul li {
  margin-left: 30px;
  list-style: disc;
}
.kick-about-left {
    margin-top: 50px;
    border: 2px solid #e77808;
}
.image-footer {
  position: relative;
    background-color: #e77808;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 7px;
}

.contact-heading span{
  color: #e77808;
}

.kick-logo-area{
  background-color: #f8f8f8;
}
.about-maritime-logo ul li{
  list-style: disc;
  margin-left: 40px;
}

.logo-section {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.logo-section .client-logo img {
  width: 100%; 
  max-width: 170px; 
  height: 170px; 
  object-fit: contain;
}

.logo-section .client-logo .logo-footer {
  background-color: aqua;
  padding: 5px;
  text-align: center;
  margin-top: 10px;
}

.logo-section:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.single-top-player .coming-soon{
  position: absolute; 
  top: 50%; left: 50%; 
  transform: translate(-50%, -50%); 
  color: white; 
  font-size: 24px; 
  font-weight: bold; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.note-line{
  background-color: #fffae6; 
  padding: 10px;
  margin-top: 20px; 
  border-left: 5px solid #112155;
}

/* kick-about-maritime-game start  */

.kick-about-maritime-game {
  background: url('../img/logo/logo.png') no-repeat center center;
  background-size: contain; 
  background-attachment: fixed;
  position: relative;
}

.kick-about-maritime-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  transition: background 0.3s ease-in-out;
}
.kick-about-maritime-game.scrolled::before {
  background-color: rgba(0, 0, 0, .7);
}
.kick-about-maritime-game .about-page-welcome-left img{
  position: relative;
}

.kick-about-maritime-game p{
  position: relative;
  color: #fff;
  font-size: 20px;
}
.kick-about-maritime-game .kick-section-heading h2{
  position: relative;
  color: #fff;
}
.kick-about-maritime-game ul li{
  position: relative;
  color: #fff;
  font-size: 20px;
}

/* kick-about-maritime-game start  */

/* .kick-about-area {
  background: url('../img/ship.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
}
.kick-about-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.54);
  transition: background 0.3s ease-in-out;
}
.kick-about-area.scrolled::before {
  background: rgba(44, 44, 44, 0.54);
}

.kick-about-right, h3, p{
  position: relative;
  color: #fff;
}
.single-about-right-text ul li{
  position: relative;
  color: #fff;
} */

/* Image Gallery css Start  */
.gallery-section-area {
    margin-top: 30px;
}
.gallery-section-area .grid,
.gallery-section-area #gallery-items {
  margin: 0 auto;
}
.gallery-section-area .grid .grid-item,
.gallery-section-area #gallery-items .grid-item,
.gallery-section-area .grid .single-gallery,
.gallery-section-area #gallery-items .single-gallery {
  margin: 0 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gallery-section-area .grid .grid-item:after,
.gallery-section-area #gallery-items .grid-item:after,
.gallery-section-area .grid .single-gallery:after,
.gallery-section-area #gallery-items .single-gallery:after,
.gallery-section-area .grid .grid-item:before,
.gallery-section-area #gallery-items .grid-item:before,
.gallery-section-area .grid .single-gallery:before,
.gallery-section-area #gallery-items .single-gallery:before {
  content: "";
  width: 0;
  height: 0;
  background: #000;
  opacity: 0.6;
  position: absolute;
  transform: skewY(140deg);
  -webkit-transform: skewY(140deg);
  -ms-transform: skewY(140deg);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.gallery-section-area .grid .grid-item:after,
.gallery-section-area #gallery-items .grid-item:after,
.gallery-section-area .grid .single-gallery:after,
.gallery-section-area #gallery-items .single-gallery:after {
  top: -139px;
  left: 0;
}
.gallery-section-area .grid .grid-item:before,
.gallery-section-area #gallery-items .grid-item:before,
.gallery-section-area .grid .single-gallery:before,
.gallery-section-area #gallery-items .single-gallery:before {
  bottom: -139px;
  right: 0;
}
.gallery-section-area .grid .grid-item img,
.gallery-section-area #gallery-items .grid-item img,
.gallery-section-area .grid .single-gallery img,
.gallery-section-area #gallery-items .single-gallery img {
  padding: 0px;
  width: 100%;
}
.gallery-section-area .grid .grid-item .bottom-icons,
.gallery-section-area #gallery-items .grid-item .bottom-icons,
.gallery-section-area .grid .single-gallery .bottom-icons,
.gallery-section-area #gallery-items .single-gallery .bottom-icons,
.gallery-section-area .grid .grid-item .heading-conent,
.gallery-section-area #gallery-items .grid-item .heading-conent,
.gallery-section-area .grid .single-gallery .heading-conent,
.gallery-section-area #gallery-items .single-gallery .heading-conent {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
}
.gallery-section-area .grid .grid-item .heading-conent,
.gallery-section-area #gallery-items .grid-item .heading-conent,
.gallery-section-area .grid .single-gallery .heading-conent,
.gallery-section-area #gallery-items .single-gallery .heading-conent {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 11;
}
.gallery-section-area .grid .grid-item .heading-conent h4,
.gallery-section-area #gallery-items .grid-item .heading-conent h4,
.gallery-section-area .grid .single-gallery .heading-conent h4,
.gallery-section-area #gallery-items .single-gallery .heading-conent h4 {
  color: #ffffff;
  margin: 0 0 6px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.gallery-section-area .grid .grid-item .heading-conent ul,
.gallery-section-area #gallery-items .grid-item .heading-conent ul,
.gallery-section-area .grid .single-gallery .heading-conent ul,
.gallery-section-area #gallery-items .single-gallery .heading-conent ul {
  text-align: left;
}
.gallery-section-area .grid .grid-item .heading-conent ul li,
.gallery-section-area #gallery-items .grid-item .heading-conent ul li,
.gallery-section-area .grid .single-gallery .heading-conent ul li,
.gallery-section-area #gallery-items .single-gallery .heading-conent ul li {
  display: inline-block;
}
.gallery-section-area .grid .grid-item .heading-conent ul li i,
.gallery-section-area #gallery-items .grid-item .heading-conent ul li i,
.gallery-section-area .grid .single-gallery .heading-conent ul li i,
.gallery-section-area #gallery-items .single-gallery .heading-conent ul li i {
  color: #fbc02d;
}
.gallery-section-area .grid .grid-item .bottom-icons,
.gallery-section-area #gallery-items .grid-item .bottom-icons,
.gallery-section-area .grid .single-gallery .bottom-icons,
.gallery-section-area #gallery-items .single-gallery .bottom-icons {
  position: absolute;
  bottom: 15px;
  right: 20px;
  z-index: 11;
}
.gallery-section-area .grid .grid-item .bottom-icons ul li,
.gallery-section-area #gallery-items .grid-item .bottom-icons ul li,
.gallery-section-area .grid .single-gallery .bottom-icons ul li,
.gallery-section-area #gallery-items .single-gallery .bottom-icons ul li {
  display: inline-block;
}
.gallery-section-area .grid .grid-item .bottom-icons ul li i,
.gallery-section-area #gallery-items .grid-item .bottom-icons ul li i,
.gallery-section-area .grid .single-gallery .bottom-icons ul li i,
.gallery-section-area #gallery-items .single-gallery .bottom-icons ul li i {
  color: #fbc02d;
  padding-left: 15px;
}
.gallery-section-area .grid .grid-item:hover:after,
.gallery-section-area #gallery-items .grid-item:hover:after,
.gallery-section-area .grid .single-gallery:hover:after,
.gallery-section-area #gallery-items .single-gallery:hover:after,
.gallery-section-area .grid .grid-item:hover:before,
.gallery-section-area #gallery-items .grid-item:hover:before,
.gallery-section-area .grid .single-gallery:hover:before,
.gallery-section-area #gallery-items .single-gallery:hover:before {
  width: 240px;
  height: 240px;
}
.gallery-section-area .grid .grid-item:hover .bottom-icons,
.gallery-section-area #gallery-items .grid-item:hover .bottom-icons,
.gallery-section-area .grid .single-gallery:hover .bottom-icons,
.gallery-section-area #gallery-items .single-gallery:hover .bottom-icons,
.gallery-section-area .grid .grid-item:hover .heading-conent,
.gallery-section-area #gallery-items .grid-item:hover .heading-conent,
.gallery-section-area .grid .single-gallery:hover .heading-conent,
.gallery-section-area #gallery-items .single-gallery:hover .heading-conent {
  opacity: 1;
  visibility: visible;
}
.gallery-section2 {
  position: relative;
  background: url(images/gallery2/bg.jpg);
  background-size: cover;
  padding-bottom: 90px;
}
.gallery-section2 h3.title-bg {
  color: #ffffff;
  position: relative;
  z-index: 11;
}
.gallery-section2 .single-gallery {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
}
.gallery-section2 .single-gallery:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fbc02d;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 12px !important;
  display: block;
  overflow: hidden;
  opacity: 0.8;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.gallery-section2 .single-gallery .heading-conent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gallery-section2 .single-gallery ul li {
  display: inline-block;
}
.gallery-section2 .single-gallery ul li a {
  color: #111111;
}
.gallery-section2 .single-gallery ul.media-icons a {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 2px solid #111111;
  font-size: 20px;
  display: inline-block;
  margin: 0 8px;
}
.gallery-section2 .single-gallery ul.media-icons a:hover {
  color: #ffffff;
}
.gallery-section2 .single-gallery h4 {
  margin: 22px 0 5px;
  font-size: 18px;
  font-weight: 500;
}
.gallery-section2 .single-gallery:hover:after {
  opacity: 0.8;
  visibility: visible;
  transform: scale(1);
}
.gallery-section2 .single-gallery:hover .heading-conent {
  opacity: 1;
  visibility: visible;
}
.gallery-section2 .container .row {
  margin-left: -6px;
  margin-right: -6px;
}
.gallery-section2 .container .row .col-md-4,
.gallery-section2 .container .row .col-sm-6 {
  padding-left: 6px;
  padding-right: 6px;
}
.gallery-section-page2 {
  padding-bottom: 70px;
}
.gallery-section-page2 .single-gallery {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}
.gallery-section-page2 .single-gallery:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fbc02d;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  opacity: 0.8;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.gallery-section-page2 .single-gallery .popup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gallery-section-page2 .single-gallery .popup-icon a {
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  border: 2px solid #111111;
  font-size: 20px;
  display: inline-block;
  margin: 0 8px;
  border-radius: 50%;
  color: #111111;
}
.gallery-section-page2 .single-gallery .popup-icon a:hover {
  color: #ffffff;
}
.gallery-section-page2 .single-gallery:hover:after {
  opacity: 0.8;
  visibility: visible;
  transform: scale(1);
}
.gallery-section-page2 .single-gallery:hover .popup-icon {
  opacity: 1;
  visibility: visible;
}
/* Image Gallery css End  */



.current-section {
    margin: 1.5rem auto;
    text-align: center;
    background-color: #efefff;
}

.current-section .section-title {
    padding-top: 40px;
}

.customTabs {
    padding-top: 20px;
    padding-bottom: 40px;
}

.current-section {
    margin: 1.5rem auto;
    text-align: center;
}

.tabs-wrap {
    position: relative;
    margin: auto;
    display: block;
    text-align: left;
}

.customTabs .nav-tabs {
    border-bottom: 1px solid #256bb2;
}

.customTabs .nav-tabs .nav-item.show .nav-link,
.customTabs .nav-tabs .nav-link.active {
    background-color: #256bb2;
    color: #ffffff;
}

.customTabs .nav-item .nav-link {
    font-size: 1.1rem;
    color: #256bb2;
    border: 1px solid #256bb2;
    border-bottom: 1px solid transparent;
    margin-right: 85px;
    font-weight: 500;
    background-color: #f4f5ff;
    width: 99%;
}

.customTabs .nav-item .nav-link:hover {
    background-color: #2f87e0;
    color: #ffffff;
}



.customTabs .tab-content {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 1px 1px 3px #e9e9e9;
    height: 340px;
}



/* forms css start  */
.all-forms {
  background-color: #ffffff;
  padding: 25px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ddd;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.form-header {
  text-align: center;
  margin-bottom: 20px;
  color: #004aad;
}
.form-guidline h4{
  color: #004aad;
  font-weight: 600;
}
.form-guidline ul li{
  list-style: disc;
  margin-left: 30px;
}

.form-logo {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.entry-form label {
  display: block;
  font-weight: bold;
  margin-top: 15px;
  color: #003b73;
}

.entry-form input[type="text"],
.entry-form input[type="date"] {
  width: 100%;
  padding: 7px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.custom-table th {
  background-color: #004aad;
  color: white;
  padding: 12px;
}

.custom-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

.custom-table input {
  width: 100%;
  padding: 8px;
}

.fees-section {
  margin: 20px 0;
  font-weight: bold;
  color: #0056b3;
}

.highlight {
  color: rgb(0, 123, 255);
}

.signature-section {
  margin-top: 20px;
}

.signature-stamp {
  margin-top: 10px;
}

.qr-code {
  width: 100%;
  height: 196px;
  text-align: center;
}

.qr-code img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.confirmation {
  background-color: #f8f9fa;
  border: 2px solid #28a745;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 20px auto;
}

.confirmation h4 {
  color: #28a745;
  font-weight: bold;
  margin-bottom: 10px;
}

.confirmation p {
  font-size: 18px;
  color: #333;
}

.regNumber {
  font-weight: bold;
  color: #007bff;
  font-size: 20px;
}

/* form css end  */

/* captcha css  */
.captcha-text {
  display: inline-block;
  background-color: #c97a13;
  color: #fff;
  font-size: 22px;
  font-style: italic;
  padding: 5px 10px;
  border-radius: 3px;
  /* text-transform: uppercase; */
  letter-spacing: 3px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}