@import url('https://fonts.googleapis.com/css2?family=Myriad+Pro&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('MYRIADPRO-REGULAR.OTF') format('otf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Myriad Pro', sans-serif;
}


body {
    font-family: 'Myriad Pro', 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #EFF2FA;
    color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 10px 0;
}

.header {
    background-color: #353535;
    color: #ffffff;
    height: 200px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #bcac88; /* Added bottom line */
}

 .menu-toggle {
     display:none;
 }

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
}


.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

    .main-nav ul li a {
        display: inline-block;
        padding: 10px 20px;
        border: 2px solid #bcac88;
        border-radius: 50px; /* Oval shape */
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        background-color: transparent;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .main-nav ul li a:hover {
            background-color: #bcac88;
            color: #353535;
        }
        
      .main-nav a.active {
  background-color: #bcac88;
            color: #353535;
}


.lang-switch button {
  background: #b89c6e;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: .5rem .9rem;
  cursor: pointer;
  font-weight: 600;
}

body.rtl {
  direction: rtl;
}
body.rtl .main-nav ul {
  flex-direction: row-reverse;
}
body.rtl .news-grid,
body.rtl .members-grid,
body.rtl .results-grid {
  text-align: right;
}




.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

.submenu {
  background-color: #EFF2FA;
  color: #B89C6E;
  padding: 40px 20px;
  text-align: center;
}

.submenu h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer {
  background-color: #B89C6E;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.hero-slider-jq {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid #bcac88;
}

.slider-jq {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-jq {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide-jq.active {
        opacity: 1;
        z-index: 1;
    }

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-left: 5px solid #bcac88;
}

    .slide-content h1 {
        font-size: 4vw;
        margin-bottom: 20px;
    }

    .slide-content p {
        font-size: 1.2vw;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        max-width: 90%;
    }

        .slide-content h1 {
            font-size: 6vw;
        }

        .slide-content p {
            font-size: 3.5vw;
        }
}



.hero-slider {
    width: 100%;
    overflow: hidden;
}



.slide-content {
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent background */
    color: #ffffff;
    padding: 40px;
    max-width: 600px;
    margin-left: 50px;
    border-left: 5px solid #bcac88;
}

    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .slide-content p {
        font-size: 16px;
        line-height: 1.6;
    }


.about-section {
    width: 100%;
       padding: 60px 0;
    position: relative;
    color: #353535;
    text-align: center;
    padding: 60px 0;
}

.about-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.about-box {
    position: relative; /* Ensure child absolute/relative positioning works */
    background-color: #ffffff;
    border-radius: 20px;
    width: 350px;
    height: auto;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #bcac88;
    text-align: left;
    overflow: visible;
}


.objective-box {
    position: relative; /* Ensure child absolute/relative positioning works */
    background-color: #ffffff;
    border-radius: 20px;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #bcac88;
    text-align: left;
    overflow: visible;
}

.objective-box h3 {
    background: linear-gradient(to right, #bcac88 0%, #d9cdb0 100%);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 0 50px 50px 0;
    margin-bottom: 20px;
    text-align: left;
    width: 80%;
    position: relative;
    right: 5%; /* Push 5% out of the right side */
}


    .about-box h3 {
        background: linear-gradient(to right, #bcac88 0%, #d9cdb0 100%);
        color: #ffffff;
        font-weight: bold;
        font-size: 18px;
        padding: 10px 20px;
        border-radius: 0 50px 50px 0;
        margin-bottom: 20px;
        text-align: left;
        width: 80%;
        position: relative;
        right: 10%; /* Push 5% out of the right side */
    }

    .about-box p {
        font-size: 16px;
        line-height: 1.8; /* Increased line spacing */
        padding: 10px; /* Inner padding around the text */
        margin-top: 10px; /* Space after the title */
        color: #353535; /* Optional: darker text for better contrast */
    }


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-left:20px;
    padding-right:20px;
    margin-top: 40px;
}

.video-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .video-box iframe {
        width: 100%;
        height: 100%;
        border: none;
    }




.star-list {
    list-style: none;
    padding-left: 0;
}

    .star-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.6;
    }

        .star-list li::before {
            content: '★';
            position: absolute;
            left: 0;
            top: 2px;
            color: #bcac88;
            font-size: 18px;
        }


.news-section {
    width: 100%;

    padding: 60px 20px;
    text-align: center;
}

    .news-section .section-title {
        font-size: 28px;
        color: #B89C6E;
        margin-bottom: 40px;
        font-weight: bold;
    }

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.news-box {
    background: linear-gradient(to right, #bcac88 80%, #d9cdb0 100%);
    width: 320px;
    height: auto;
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.news-box a {
text-decoration: none;
}

    .news-box img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .news-box h3 {
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
    }

.news-date {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
}



.members-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #EFF2FA;
    text-align: center;
}

    .members-section .section-title {
        font-size: 28px;
        color: #B89C6E;
        margin-bottom: 40px;
        font-weight: bold;
    }

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.member-box {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #353535;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .member-box img {
        width: 40px; /* increased from 40px */
        height: auto;
        border-radius: 0; /* remove rounding for normal rectangular shape */
    }


    .member-box:hover {
        background-color: #bcac88;
        color: #ffffff;
        transform: translateY(-4px);
    }


.org-chart-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

    .org-chart-section .section-title {
        font-size: 28px;
        color: #B89C6E;
        margin-bottom: 40px;
        font-weight: bold;
    }

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}



.org-card {
    background-color: #f8f8f8;
    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.org-photo {
    padding: 6px;
    border: 1px solid #bcac88; /* outer red border */
    border-radius: 50%;
    display: inline-block;
}

    .org-photo img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border: 1px solid grey; /* inner black border */
        border-radius: 50%;
    }

.org-name {
    margin-top: 20px;
    background-color: transparent;
    border: 1px solid #bcac88;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: bold;
    color: #353535;
}

.org-role {
    margin-top: 10px;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}


.video-slide {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

    .video-slide video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.4); /* dark color overlay */
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 50px;
}

    .video-overlay .slide-content {
        max-width: 600px;
        color: #fff;
    }

    .video-overlay h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .video-overlay p {
        font-size: 16px;
        line-height: 1.6;
    }

.results-section {
    width: 100%;
    background: url('images/bg.png') no-repeat center right;

    background-size: contain;
    background-color: #000; /* Optional: fallback background */
    padding: 60px 0;
    position: relative;
    padding: 60px 20px;
    background-color: #EFF2FA;
    text-align: center;
}

    .results-section .section-title {
        font-size: 28px;
        color: #B89C6E;
        margin-bottom: 40px;
        font-weight: bold;
    }

.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.results-column {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: left;
}

.column-subtitle {
    font-size: 20px;
    color: #B89C6E;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.results-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #353535;
    margin-bottom: 15px;
    padding: 0 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #353535;
    font-size: 16px;
    gap: 20%;
}

.rank,
.points {
    font-weight: bold;
    font-size: 18px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
}



    .team-info img {
        width: 30px;
        height: auto;
        border-radius: 4px;
    }

.country-name {
    font-weight: bold;
    color: #353535;

}


   .contact-container {
         max-width: 1100px;
         margin: 0 auto;
         padding: 2rem;
         display: flex;
         flex-wrap: wrap;
         gap: 2rem;
       }
       .contact-info {
         flex: 1 1 300px;
         background: #f8f8f8;
         border-radius: 10px;
         padding: 2rem;
         box-shadow: 0 0 10px rgba(0,0,0,0.05);
       }
       .contact-info h3 {
         margin-bottom: 1rem;
         color: #b89c6e;
       }
       .contact-info ul {
         list-style: none;
         padding: 0;
       }
       .contact-info li {
         display: flex;
         align-items: center;
         margin-bottom: 1rem;
         font-size: 16px;
       }
       .contact-info li i {
         color: #b89c6e;
         font-size: 18px;
         margin-right: 10px;
         min-width: 24px;
         text-align: center;
       }
       .contact-form {
         flex: 1 1 600px;
         background-color: #fff;
         border-radius: 12px;
         padding: 2rem;
         box-shadow: 0 0 10px rgba(0,0,0,0.1);
       }
       .contact-form h2 {
         margin-bottom: 1.5rem;
         color: #333;
       }
       .form-group {
         margin-bottom: 1rem;
       }
       .form-group label {
         display: block;
         font-weight: bold;
         margin-bottom: 0.5rem;
       }
       .form-group input,
       .form-group textarea {
         width: 100%;
         padding: 0.75rem;
         border: 1px solid #ccc;
         border-radius: 6px;
       }
       .form-group button {
         background-color: #b89c6e;
         color: white;
         padding: 0.75rem 2rem;
         border: none;
         border-radius: 6px;
         cursor: pointer;
       }
       .form-group button:hover {
         background-color: #a28355;
       }
       
       #formAlert {
  margin: 1rem 0;
  padding: .75rem 1rem;
  border-radius: 6px;
  font-size: .95rem;
}
#formAlert.success { background: #e8f6ef; color: #176b4d; border: 1px solid #bfe7d6; }
#formAlert.error   { background: #fdecea; color: #a33a2b; border: 1px solid #f5c2bf; }

button[disabled] {
  opacity: .7;
  pointer-events: none;
}

.contact-form button {
  background: #b89c6e;
  color: #fff;
  border: 0;
  padding: .8rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}



        .media-section {
          max-width: 1200px;
          margin: 0 auto;
          padding: 2rem;
        }
        .media-section h2 {
          text-align: center;
          margin-bottom: 2rem;
          color: #b89c6e;
        }
        .video-grid, .photo-grid {
          display: grid;
          gap: 1.5rem;
        }
        .video-grid {
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }
        .video-grid iframe {
          width: 100%;
          aspect-ratio: 16/9;
          border: none;
          border-radius: 8px;
        }
        .video-title {
           margin-Top : 0.5rem;
           font-Size : 16px;
           font-Weight : 500; 
           text-Align : center; 
           color :#333;
        }
        
        .album-title {
          margin-top: 2rem;
          font-size: 1.2rem;
          font-weight: bold;
          color: #333;
        }
        .photo-grid {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          margin-top: 1rem;
        }
        .photo-grid img {
          width: 100%;
          border-radius: 8px;
          transition: transform 0.3s;
        }
        .photo-grid img:hover {
          transform: scale(1.05);
        }




/* CSS Styles */
.navbar .menu {
    display: flex;
    list-style: none;
    display: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    
}

#toggle-menu {
    display: none;
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
    }

    #toggle-menu:checked + .menu-icon + .menu {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}




@media (max-width: 768px) {
    .column {
        flex: 1 1 100%;
    }
}

img, video {
    max-width: 100%;
    height: auto;
}

.contact-container {
        flex-direction: column;
      }

.info-section {
  width: 100%;
}

.info-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.info-text,
.info-image {
  flex: 1;
  min-width: 300px;
}

.info-text {
  background-color: #00274C;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.info-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-text p {
  font-size: 1.2rem;
  max-width: 500px;
}

.info-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

  .mobile{
         display:none;
       }

.web{
         display:block;
       }
/*=====================================*/

@media (max-width: 768px) {

  .mobile{
         display:block;
       }

.web{
         display:none;
       }

  .org-column {
    width: 100%;
    margin-bottom: 20px;
  }


  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #B89C6E;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0;
  }

  .main-nav li {
    text-align: center;
    padding: 10px 0;
  }

.main-nav {
  transition: all 0.3s ease-in-out;
 }

.slide-content {
  margin-left: 10px;
}

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-content {
    padding: 10px;
  }

   .info-block {
      flex-direction: column;
    }

    .info-text h2 {
      font-size: 1.8rem;
    }

    .info-text p {
      font-size: 1rem;
    }


}


/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
}
.lang-menu {
  position: absolute;
  right: 0; top: 110%;
  background: #fff;
  color: #333;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 140px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  z-index: 1000;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: inherit;
}
.lang-menu a:hover { background: #f2f2f7; }

/* RTL helpers */
body.rtl { direction: rtl; }
body.rtl .main-nav ul { direction: rtl; }
body.rtl .section-title { text-align: right; }
/* If your header uses flex-row left->right, keep it natural but allow menu items to mirror */
@media (max-width: 900px) {
  body.rtl .main-nav.active { text-align: right; }
}


:root{
  --gold:#B89C6E;      /* your brand gold */
  --ink:#111;
  --paper:#fff;
  --muted:#6b7280;
}
.video-section{padding:clamp(12px,2vw,20px);}
.section-title{margin:0 0 12px;font-size:clamp(18px,2.2vw,24px);font-weight:700;color:var(--ink);}

.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:16px;
   max-width: 1100px;  
  margin: 0 auto;     
  justify-content: center;
}
.video-card{
  position:relative;
  border:none;
  padding:0;
  cursor:pointer;
  background:transparent;
  border-radius:16px;
  overflow:hidden;
  outline-offset:4px;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease;
  aspect-ratio:16/9;
}
.video-card:hover{transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.12);}
.video-card:focus-visible{outline:3px solid var(--gold);}
.video-card .thumb{
  width:100%;height:100%;object-fit:cover;display:block;
  filter:saturate(1.1) contrast(1.05);
}
.video-card .overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.0) 40%, rgba(0,0,0,.55) 100%);
  display:flex;flex-direction:column;justify-content:flex-end;gap:10px;
  padding:14px;
}
.video-card .play{
  width:52px;height:52px;fill:var(--paper);
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.4));
  transition:transform .2s ease;
}
.video-card:hover .play{transform:translate(-50%,-50%) scale(1.06);}
.video-card .title{
  color:#fff;font-weight:700;font-size:15px;line-height:1.3;text-align:start;
  text-shadow:0 1px 2px rgba(0,0,0,.5);
}
.video-badge{
  position:absolute;right:10px;top:10px;
  background:rgba(0,0,0,.65);color:#fff;border-radius:999px;
  padding:4px 8px;font-size:12px;backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.15);
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal[aria-hidden="false"] {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  transition: opacity 0.2s ease;
  z-index: 1; /* behind the dialog */
}

.video-dialog {
  position: relative;
  max-width: min(1000px, 92vw);
  margin: 6vh auto 0;
  z-index: 2; /* above backdrop */
}

.video-modal[aria-hidden="false"] .video-dialog{transform:translateY(0);}
.video-frame-wrap{
  position:relative;width:100%;aspect-ratio:16/9;background:#000;border-radius:18px;overflow:hidden;
  box-shadow:0 16px 60px rgba(0,0,0,.35);
}
.video-frame-wrap iframe{width:100%;height:100%;border:0;display:block}
.modal-close{
  position:absolute;right:-10px;top:-10px;width:40px;height:40px;border-radius:999px;
  border:none;background:var(--paper);color:var(--ink);font-size:28px;line-height:1;
  cursor:pointer;box-shadow:0 6px 20px rgba(0,0,0,.25);
}
.modal-close:hover{background:#f3f4f6}
.modal-caption{
  margin-top:10px;color:#fff;text-align:center;font-weight:600;
}




