/********** Template CSS **********/
:root {
    --primary: #173C70;
    --light: #FFF5F3;
    --dark: #4F4B48;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family:'Times New Roman', Times, serif;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: #000;
    font-weight: 500;
    outline: none;
    font-size:17px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 1202px) {
    

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: none;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: none;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 34px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/img22.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    color:#fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
  }

  .kbd-btn {
    background-color: #173D6E;
    color: white;
    border: 2px solid #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 6px;
    box-shadow: inset 0 -4px 0 #0f2a4e;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
   
    
  }

  .kbd-btn:hover {
    background-color: #1f4b99;
    transform: translateY(-2px);
    box-shadow: inset 0 -2px 0 #0f2a4e, 0 4px 10px rgba(0,0,0,0.4);
  }

  .kbd-btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .kbd-btn.secondary {
    background-color: #4F4B48;
    box-shadow: inset 0 -4px 0 #2d2b2a;
  }

  .kbd-btn.secondary:hover {
    background-color: #6a6562;
    box-shadow: inset 0 -2px 0 #2d2b2a, 0 4px 10px rgba(0,0,0,0.4);
  }

  @media (max-width: 768px) {
    .kbd-btn {
     
      font-size: 16px;
    }
  }
  .programs-section {
    padding: 60px 20px;
    
    text-align: center;
  }
  
  
 
  
  /* Program Card */
  .program-card {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 30px;
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  
  .program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .program-card h3 {
    color: #173D6E;
    margin: 15px 0 10px;
  }
  
  .program-card p {
    color: #4F4B48;
    
    font-size: 0.95rem;
  }
  
  /* Animation */
  .animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Headings */
  .custom-gallery {
    padding: 30px 10px;
   
    overflow: hidden;
    text-align: center;
  }

  .custom-gallery h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #173D6E;
  }

  .gallery-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: center;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 4px solid #4F4B48;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  /* Lightbox Modal */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
  }

  .lightbox-content {
    position: relative;
    max-width: 33%;
    max-height: auto;
  }

  .lightbox-content img {
    width: 100%;
    border-radius: 12px;
    animation: zoom 0.5s ease;
  }

  @keyframes zoom {
    from {
      transform: scale(0.7);
      opacity: 0.5;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .close-btn {
    position: absolute;
    top: 50px;
    right: 90px;
    color: #fff;
    font-size: 32px;
    background: #504C49;
    padding: 6px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1100;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }

  .lightbox-nav span {
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
  }

  .lightbox-nav span:hover {
    color: #ffdd57;
  }

  @media (max-width: 768px) {
    .lightbox-content img {
      max-height: 70vh;
    }
    .lightbox-content {
        position: relative;
        max-width: 80%;
        max-height: auto;
      }
      .close-btn {
        position: absolute;
        top: 100px;
        right: 70px;
        color: #fff;
        font-size: 32px;
        background:#504C49;
        padding: 6px 14px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1100;
      }
  }

  .custom-gallery2 {
    padding: 30px 10px;
   
    overflow: hidden;
    text-align: center;
  }

  

  .gallery-wrapper1 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
  }

  .gallery-item1{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 4px solid #4F4B48;
    cursor: pointer;
  }

  .gallery-item1 img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }

  .gallery-item1:hover img {
    transform: scale(1.1);
  }

  
  /* Bounce in effect */
  .bounce-in {
    opacity: 1;
    transform: translateY(0);
    animation: bounceTop 1s ease;
  }
  
  /* Keyframes */
  @keyframes bounceTop {
    0% {
      transform: translateY(-100px);
    }
    60% {
      transform: translateY(30px);
    }
    80% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .events-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 60px 20px;
    color: #fff;
    opacity: 1;
    transform: translateY(-100px);
    transition: all 0.8s ease;
    
  }
  
  .events-section.active {
    opacity: 1;
    transform: translateY(0);
    animation: bounceTop 1s ease;
  }
  
  .section-title {
    text-align: center;
    font-size: 36px;
    color: #93bdf3;
    margin-bottom: 40px;
  }
  
  .event-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .event-card {
    background: #222;
    border: 2px solid #93bdf3;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s;
  }
  
  .event-card:hover {
    transform: scale(1.03);
  }
  
  .event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .event-content {
    padding: 20px;
  }
  
  .event-content h3 {
    font-size: 20px;
    color: #93bdf3;
    margin-bottom: 10px;
  }
  
  .event-date {
    font-style: italic;
    margin-bottom: 10px;
    color: #ccc;
  }
  
 
  
  /* Responsive */
  @media (max-width: 768px) {
    .event-wrapper {
      flex-direction: column;
      align-items: center;
    }
  }
  .about-container1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
    
  }
  
  .about-container1.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-left1, .about-right1 {
    flex: 1 1 300px;
    max-width: 600px;
    padding: 20px;
  }
  
  .about-img1 {
    width: 100%;
    border-radius: 15px;
   
    animation: float 6s ease-in-out infinite;
  }
  

  
  
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container1 {
      flex-direction: column;
    }
  }
  .vmg-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #605d5e, #b5c6de);
    text-align: center;
  }
  
  .vmg-title {
    font-size: 2rem;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 40px;
  }
  
  .vmg-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .vmg-box {
    background: white;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    max-width: 320px;
    flex: 1 1 250px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
  }
  
  .vmg-box.visible {
    animation: bounceInLeft 1.2s ease forwards;
  }
  
  .vmg-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #173D6E;
  }
  
  
  /* Bounce in left animation */
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    60% {
      opacity: 1;
      transform: translateX(30px);
    }
    80% {
      opacity: 1;
      transform: translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @media (max-width: 768px) {
    .vmg-boxes {
      flex-direction: column;
      align-items: center;
    }
  }
  .benefits-section {
    padding: 60px 20px;
    
    text-align: center;
  }
  
  .benefits-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #00695c;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .benefit-card {
    background: linear-gradient(135deg, #d4d4d7, #dadadc);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  }
  
  .benefit-icon {
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, #23559b, #183C70);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .benefit-card h3 {
    color: #183C70;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .martial-container {
    max-width: 1120px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .martial-text,
  .martial-img {
    flex: 1 1 45%;
    padding: 20px;
    opacity: 0;
    transition: all 1s ease;
  }

  .martial-text {
    transform: translateX(-100px);
  }

  .martial-img {
    transform: translateX(100px);
  }

  .martial-text.visible,
  .martial-img.visible {
    opacity: 1;
    transform: translateX(0);
    animation: bounce 0.8s ease;
  }

  .martial-text h2 {
    font-size: 2.5rem;
    color: #004d40;
    margin-bottom: 15px;
  }

  .martial-text p {
    text-align: left;
    color: #000;
    line-height: 1.7;
  }

  .martial-img img {
    width: 100%;
    border-radius: 10px;
   
  }

  @keyframes bounce {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @media (max-width: 768px) {
    .martial-container {
      flex-direction: column;
      text-align: center;
    }
    .martial-text, .martial-img {
      flex: 1 1 100%;
    }
    .martial-text h2 {
      font-size: 2rem;
    }
  }
  .types-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #504e4e, #072c51);
    text-align: center;
  }

  .types-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
  }

  .martial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .martial-card {
    background: #ffffff;
    border: 3px solid #8bdcff;
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .martial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(50, 90, 109, 0.1);
    transition: all 0.5s ease;
  }

  .martial-card:hover::before {
    left: 0;
  }

  .martial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .martial-card h3 {
    color: #4F4B4A;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  

  @media (max-width: 600px) {
    .types-section h2 {
      font-size: 2rem;
    }
  }
  :before,*:after{box-sizing:border-box;margin:0;padding:0}
body{font-family:"Segoe UI",Arial,sans-serif;background:#fafafa;color:#333;line-height:1.4}

/* ----------  SECTION WRAPPER  ---------- */
.join-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  background:linear-gradient(135deg,#fefeff 0%,#dfdfe0 40%,#cccccd 100%);
}

/* ----------  CARD  ---------- */
.join-card{
  background:#fff;
  width:100%;
  max-width:480px;
  border-radius:18px;
  box-shadow:0 15px 30px rgba(0,0,0,.15);
  overflow:hidden;
  animation:pop-in .8s ease;
}

/* ----------  HEADER BANNER  ---------- */
.join-header{
  background:linear-gradient(120deg,#173D6E,#173D6E);
  color:#fff;
  padding:30px 20px;
  text-align:center;
}
.join-header h2{
  font-size:2rem;
  margin-bottom:6px;
}
.join-header p{font-size:.95rem;opacity:.9}

/* ----------  FORM BODY  ---------- */
.join-body{padding:30px 20px 40px}
.join-body label{font-weight:600;font-size:.9rem;display:block;margin:18px 0 6px}
.join-body input,
.join-body select,
.join-body textarea{
  width:100%;
  padding:12px 14px;
  border:2px solid #e0e0e0;
  border-radius:10px;
  font-size:.95rem;
  transition:border-color .25s;
}
.join-body input:focus,
.join-body select:focus,
.join-body textarea:focus{border-color:#7c4dff;outline:none}

/* ----------  SUBMIT BUTTON  ---------- */
.join-btn{
  display:inline-block;
  width:100%;
  background:#173D6E;
  color:#fff;
  font-weight:700;
  font-size:1rem;
  border:none;
  border-radius:50px;
  padding:14px 0;
  margin-top:28px;
  cursor:pointer;
  transition:background .3s;
}
.join-btn:hover{background:#504C49}

/* ----------  RESPONSIVE  ---------- */
@media(max-width:480px){
  .join-header h2{font-size:1.6rem}
}

/* ----------  ANIMATIONS  ---------- */
@keyframes pop-in{
  0%{transform:scale(.8);opacity:0}
  60%{transform:scale(1.05);opacity:1}
  100%{transform:scale(1)}
}
.cta-section{
  position:relative;
  width:100%;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
  /* 👉 Replace with your own image */
  background:url("../img/banner/bg2.jpg")
             no-repeat center/cover;
}
.cta-section::before{            /* dark overlay */
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:0;
}

.cta-content{
  position:relative;            /* stay above overlay */
  z-index:1;
  max-width:680px;
  padding:0 15px;
  animation:fadeSlide 1s ease forwards;
  opacity:0;
  transform:translateY(30px);
}
.cta-content h2{
  font-size:2.8rem;
  line-height:1.2;
  margin-bottom:18px;
  color:#fff;
}
.cta-content p{
  font-size:1.15rem;
  margin-bottom:32px;
  opacity:.9;
}



/* ------------  ANIMATION  ------------ */
@keyframes fadeSlide{
  to{opacity:1;transform:translateY(0)}
}

/* ------------  RESPONSIVE  ------------ */
@media(max-width:768px){
  .cta-content h2{font-size:2.2rem}
  .cta-content p{font-size:1rem}
}
@media(max-width:480px){
  .cta-content h2{font-size:1.7rem}
  .cta-content p{font-size:.95rem}
  .cta-btn{padding:12px 26px;font-size:.95rem}
}
.about2{padding:50px 20px;max-width:1200px;margin:auto;text-align:center}
.about2 h2{font-size:2.4rem; color:wow fadeInUp" data-wow-delay="0.5s;margin-bottom:14px}


/* ----------  AUTO‑SCROLL STRIP  ---------- */
.row-title{font-size:1.6rem; text-align:left; font-weight:600; color:#000; margin:35px 0 18px}
.scroller{
  overflow:hidden;          /* hide overflow for ticker effect */
  position:relative;
}

.slide{
  flex:0 0 280px;           /* fixed slide width */
  margin-right:18px;
}
.slide img{
  width:100%;height:220px;object-fit:cover;border-radius:12px;
  box-shadow:0 6px 15px rgba(0,0,0,.15);
  transition:transform .4s ease;
}
.slide img:hover{transform:scale(1.08)}

/* Duplicate track for seamless loop on narrow viewports */
.scroller:hover .track{animation-play-state:paused}  /* pause on hover */

/* ----------  KEYFRAMES  ---------- */


/* ----------  RESPONSIVE  ---------- */
@media(max-width:600px){
  .about2 h2{font-size:1.9rem}
  .slide{flex:0 0 280px}
  .slide img{height:220px}
}
.scroller{
  overflow:hidden;
}
.track{
  display:flex;
  width:max-content;              /* row grows with all slides           */
  animation:scroll 25s linear infinite;
}
@keyframes scroll{
  0%   {transform:translateX(0)}
  100% {transform:translateX(calc(-50%))}   /* shift by half because slides are duplicated */
}
.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 20px 2px 20px;
  width:100%;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
  transition: background .3s, transform .25s;
}
.yt-btn i {
  font-size: 24px;
}

/* hover / active */
.yt-btn:hover {
  background: #d90000;
  transform: translateY(-2px);
}
.yt-btn:active {
  transform: translateY(0);
}

/* ----------  responsive tweaks  ---------- */
@media(max-width: 480px) {
  .yt-btn {
    padding: 6px 20px 6px 20px;
    font-size: .95rem;
    width:50%;
  }
  .yt-btn i {
    font-size: 20px;
  }
}
.gkc-about{
  background:#173D6E;color:#fff;padding:70px 30px;border-radius:20px;
  max-width:1200px;margin:auto;overflow:hidden;position:relative;
}
.gkc-about::before,.gkc-about::after{
  content:"";position:absolute;border-radius:50%;pointer-events:none;
  background:rgba(255,255,255,.08);
}
.gkc-about::before{width:260px;height:260px;left:-70px;top:-70px}
.gkc-about::after {width:200px;height:200px;right:-50px;bottom:-50px}

/* --- grid layout --- */
.gkc-inner{
  display:flex;flex-wrap:wrap;gap:50px;
}
.left-col{flex:1 1 600px;display:flex;flex-direction:column;gap:30px}

/* slide animations */
@keyframes slideL{from{opacity:0;transform:translateX(-60px)}to{opacity:1}}
@keyframes slideR{from{opacity:0;transform:translateX(60px)}to{opacity:1}}

.gkc-text{animation:slideL .8s ease forwards}
.gkc-photo{animation:slideL .8s ease .15s forwards;opacity:0}
.gkc-photo img{width:100%;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,.35)}

.events-list{
  flex:0 0 260px;animation:slideR .8s ease .3s forwards;opacity:0
}
.events-list h3{
  font-size:1.4rem;margin-bottom:16px;border-bottom:2px solid #ffda79;
  display:inline-block;padding-bottom:4px
}
.events-list ul{list-style:none}
.events-list li{margin:14px 0}
.events-list a{
  color:#ffda79;text-decoration:none;font-weight:600;
  transition:color .25s
}
.events-list a:hover{color:#ffd54f}

/* responsive */
@media(max-width:850px){
  .gkc-inner{flex-direction:column}
  .events-list{flex:1 1 auto}
  .gkc-inner{
    flex-wrap:wrap;gap:50px;
    display:block;
  }
  
}
@media(max-width:600px){
 
  
  .gkc-inner{
    flex-wrap:wrap;gap:50px;
    display:block;
  }
 
}
.highlights{margin-top:45px;animation:slideR .8s ease .35s forwards;opacity:0}
.highlights h3{
  font-size:1.35rem;margin-bottom:16px;border-bottom:2px solid var(--gold);
  display:inline-block;padding-bottom:5px
}
.highlights ul{list-style:none;padding-left:0}
.highlights li{
  margin:10px 0;font-size:.96rem;display:flex;align-items:center;gap:10px
}
.highlights i{color:var(--gold)}
@media(max-width:600px){.highlights h3{font-size:1.2rem}}

.karate-container {
  position: relative;
  background: url('../img/banner/bg3.jpg') no-repeat center center/cover;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}

.karate-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 19, 22, 0.8); /* #173D6E with transparency */
  z-index: 1;
}

.karate-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 30px;
}

.karate-left {
  flex: 1;
}

.karate-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  animation: fadeInLeft 1s ease-in-out;
}

.karate-para {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

.karate-right {
  flex: 1;
  text-align: center;
}

.karate-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: zoomIn 1s ease-in-out;
}

/* Second Section */
.karate-details {
  background:#d4d4d7;
  padding: 40px 20px;
}

.karate-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.karate-column {
  flex: 1;
  min-width: 250px;
}

.karate-subtitle {
  color: #173D6E;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.karate-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.karate-item {
  background: #fff;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 5px solid #173D6E;
  border-radius: 6px;
  font-size: 1rem;
  font-weight:600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: fadeInUp 0.8s ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .karate-wrapper, .karate-box {
    flex-direction: column;
    text-align: center;
  }

  .karate-left, .karate-right {
    width: 100%;
    text-align: left;
  }

  .karate-column {
    width: 100%;
  }
}