@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
:root 
{
  --primary: #0B1E4A;
  --secondary: #FF8800;
  --accent: #e67a00;
  --light: #f8f9fa;
  --gold: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --light-bg: #ffffff;
  --light-secondary: #f5f7fb;
}



html {
  scroll-padding-top: 100px; /* Match or slightly exceed the height of your .header-sticky */
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', serif;
  font-weight: 400; /* or 300, 700, 900 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}
h1, h2, h3, h4, h5, h6
{
  /*font-family: 'Nanum Myeongjo', serif;*/
  font-family: 'Marcellus', serif;
  font-weight: 700; /* or 300, 700, 900 */
}

p
{
  font-size: 17px;
}
.site-content {
  flex: 1;
}

.container
{
  max-width: 1450px;
}

#backToTop {
  display: none; /* Hidden initially */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 15px;
  transition: background-color 0.3s;
}
#backToTop:hover {
  background-color: #555;
}

/*LOADER CSS START*/

#siteLoader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary);
  border-top: 2px solid var(--secondary); /* Highlight color */
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  z-index: 1000;
}

.loader-image {
  position: relative;
  width: 80px;
  height: 62px;
  z-index: 1001;
  border-radius: 50%; /* optional: make image circular */
}

@keyframes spin {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg); 
  }
}


/*LOADER CSS END*/



/*------------------------------------------------------------ Header CSS START ------------------------------------------------------------*/

.top-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 14px;
}

.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--text-light);
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--secondary);
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img
{
  height: 55px;
}

.logo-icon {
  background-color: var(--primary);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.navbar-brand
{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.logo-text span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  position: relative;
}

.nav-menu li {
  position: relative;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.75em;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::after {
  content: '';
  width: 0%;
  height: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Submenu Styling with smooth reveal */
.sub-menu {
  display: none;
  position: absolute;
  left: 50px;
  top: calc(100% + 1px);
  min-width: 180px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
  padding: 0;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.submenu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1em;
  cursor: pointer;
  margin-left: 6px;
  user-select: none;
}

/*.menu-item-has-children > a {
  display: inline-block;
}*/

.sub-menu a {
  display: block;
  color: var(--text-dark);
  font-weight: 400;
  padding: 0.65em 1.2em;
  background: transparent;
  transition: color 0.3s, background 0.3s;
}

.sub-menu a:hover,
.sub-menu a:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}

/* Arrow for parents */
.menu-item-has-children > a::after {
  font-family: 'Font Awesome 5 Free'; /* Make sure Font Awesome CSS is imported */
  content: "\f078"; /* Font Awesome arrow-down icon */
  font-weight: 900; /* for solid icons */
  margin-left: 6px;
  font-size: 0.75em;
  transition: color 0.3s;

}

.menu-item-has-children:hover > a::after,
.menu-item-has-children:focus-within > a::after {
  color: var(--primary);
}

.cta-button {
  background-color: var(--secondary);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e67a00;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  position: absolute;
  right: 8px;
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }
  
  .contact-info {
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .top-header {
    display: none;
  }
  
  
  .nav-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: var(--text-light);
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }  
  
}

@media (max-width: 991px) {
  .contact-info {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .nav-menu {
    flex-direction: column;
  }
  .mobile-menu-btn {
    display: block;
  }

  .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: #fff;
    min-width: auto;
  }
  
  /* Show submenu when open */
  .menu-item-has-children.open > .sub-menu {
    display: block;
  }
}

@media(max-width: 991px)
{
  .main-header .cta-button
  {
    display: none;
  }

}


/*------------------------------------------------------------ Header CSS END ------------------------------------------------------------*/


/*-------------------------------------------------- Main Hero Banner CSS START -------------------------------------------------------*/


.hero-banner {
  position: relative;
  height: 65vh;
  padding: 1rem 0;
  overflow: hidden;
  display: flex;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.text-content {
  flex: 1;
  color: var(--text-light);
}

.text-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  background: linear-gradient(90deg, var(--primary) 30%, var(--secondary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 5px;
  background: linear-gradient(to right, var(--secondary), var(--gold));
  border-radius: 3px;
}

.text-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: var(--text-dark);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background-color: var(--secondary);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 136, 0, 0.3);
}

.cta-button.outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  box-shadow: none;
  color: var(--secondary);
}

.cta-button:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 122, 0, 0.4);
}

.cta-button.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.visual-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-slider-container {
  width: 500px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.owl-carousel .owl-stage-outer {
  height: 100%;
  border-radius: 20px;
}

.slider-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.slider-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(11, 30, 74, 0.9), transparent);
}

.slider-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--text-light);
  width: 100%;
}

.slider-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.slider-content p {
  font-size: 1rem;
  opacity: 0.9;
}

.owl-theme .owl-dots .owl-dot span
{
  display: none;
}

.image-slider-container .owl-dots {
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background-color: var(--secondary) !important;
  transform: scale(1.3);
}



@media (max-width: 1299px) {
  .image-slider-container
  {
    height: 410px;
    width: 410px;
  }
  .slider-item
  {
    height: 410px;
  }
}
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 3rem;
  }
  .visual-content
  {
    display: none;
  }
  .text-content h1
  {
    font-size: 2rem;
  }

  .text-content {
    margin-bottom: 3rem;
  }

  .text-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }


}

@media (max-width: 768px) {
  .text-content h1 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

 
}

@media (max-width: 480px) {

  .slider-content {
    padding: 1.5rem;
  }

  .slider-content h3 {
    font-size: 1.3rem;
  }
}

/*-------------------------------------------------- Main Hero Banner CSS END -------------------------------------------------------*/
/*-------------------------------------------------- VIDEO SECTION CSS START -------------------------------------------------------*/

        .community-section {
            padding: 20px 0;
        }
        .community-inner-section {
            width: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(11, 30, 74, 0.2);
            background: var(--light-bg);
            position: relative;
        }

        .section-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
            clip-path: polygon(0 0, 100% 0, 100% 30%, 0 50%);
            z-index: 0;
        }

        .video-section-content {
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        .video-section-header {
            text-align: center;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-section-header h1 {
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .video-section-header p {
            font-size: 1.2rem;
            color: var(--gold);
            line-height: 1.6;
            font-weight: 300;
        }

        

        .video-hero {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(11, 30, 74, 0.3);
            transition: transform 0.5s ease;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: var(--primary);
            overflow: hidden;
        }

        .video-player {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 30, 74, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-align: center;
            padding: 20px;
            transition: opacity 0.3s ease;
        }

        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-btn {
            width: 90px;
            height: 90px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 2.2rem;
            margin-bottom: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 15px 30px rgba(255, 136, 0, 0.4);
        }

        .play-btn:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .video-overlay h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--gold);
            font-weight: 600;
        }

        .video-overlay p {
            font-size: 1.2rem;
            max-width: 400px;
            opacity: 0.9;
        }

        .video-controls {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            align-items: center;
            background: rgba(11, 30, 74, 0.85);
            padding: 12px 25px;
            border-radius: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .video-controls.visible {
            opacity: 1;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
        }

        .control-btn:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }

        

        .video-community-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
            border-radius: 20px;
        }

        .video-stat-item {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .video-stat-item:hover {
            transform: translateY(-5px);
            background: var(--primary);
        }

        .video-stat-item:hover .video-stat-number,
        .video-stat-item:hover .video-stat-label {
            color: var(--text-light);
        }

        .video-stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .video-stat-label {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        #progressBarContainer {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 10px 0;
  cursor: pointer;
  position: absolute;
  z-index: 99999;
  bottom: -10px;
}
#progressBar {
  width: 0;
  height: 100%;
  background: #1c7ed6;
  border-radius: 4px;
  transition: width 0.1s linear;
}


        /* Responsive styles */
        @media (max-width: 1100px) {


            .video-container {
                height: 450px;
            }
        }

        @media (max-width: 992px) {


            .video-hero {
                order: -1;
            }
            
            .video-section-header h1 {
                font-size: 2.8rem;
            }
            
            .video-community-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .video-section-content {
                padding: 40px 30px;
            }
            
            .video-section-header {
                margin-bottom: 40px;
            }
            
            .video-section-header h1 {
                font-size: 1.8rem;
            }

            .video-section-header p {
                font-size: 1.1rem;
            }

            .video-container {
                height: 400px;
            }

            .play-btn {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .video-overlay h3 {
                font-size: 1.7rem;
            }

            
            .video-community-stats {
                margin-top: 40px;
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .video-section-content {
                padding: 30px 20px;
            }
            
            .video-section-header h1 {
                font-size: 1.5rem;
            }

            .video-section-header p {
                font-size: 1rem;
            }

            .video-container {
                height: 350px;
            }

            .video-overlay h3 {
                font-size: 1.5rem;
            }

            .video-overlay p {
                font-size: 1rem;
            }

            .video-controls {
                bottom: 20px;
                padding: 10px 20px;
            }

            .control-btn {
                width: 45px;
                height: 45px;
            }

            
            .video-stat-number {
                font-size: 1.8rem;
            }
            
            .video-community-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
        }
/*-------------------------------------------------- VIDEO SECTION CSS END -------------------------------------------------------*/
/*-------------------------------------------------- About Us Section CSS START -------------------------------------------------------*/
.about-section {
  padding: 20px 0;
  margin: 0 auto;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--gold));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(11, 30, 74, 0.15);
}

.highlight-box p {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
  color: var(--text-light);
  text-align: center;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  height: 500px;
}


@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image {
    width: 100%;
    height: 400px;
  }

}



/*-------------------------------------------------- About Us Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Our Values Section CSS START -------------------------------------------------------*/
.values-section {
  margin: 0 auto;
  padding: 20px 0;
}

.values-section .section-header
{
  flex: 1;
}

.values-section .section-header .cta-button
{
  margin-top: 20px;
}

.values-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 25%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--gold));
  border-radius: 2px;
}
.section-header p {
  font-size: 1.2rem;
  color: #666;
  margin: 0 auto;
  margin-top: 10px;
}
.value-inner-content
{
  display: flex;
  align-items: center;
}

.circle-container {
  position: relative;
  width: 750px;
  height: 750px;
  margin: 0 auto;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(11, 30, 74, 0.4);
  border: 6px solid var(--secondary);
  animation: pulse 4s infinite ease-in-out;
}


.center-circle h3 {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-item {
  position: absolute;
  width: 160px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.value-item:hover {
  z-index: 20;
}

.value-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.value-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 30, 74, 0.9) 0%, rgba(255, 136, 0, 0.9) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-item:hover .value-circle::before {
  opacity: 1;
}

.value-item:hover .value-circle {
  border-color: var(--gold);
  box-shadow: 0 12px 35px rgba(255, 136, 0, 0.4);
}

.value-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.value-item:hover .value-icon {
  opacity: 1;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease;
}

.value-item:hover .value-description {
  opacity: 1;
  max-height: 100px;
}

.value-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4);
  z-index: 3;
  transition: all 0.3s ease;
}

.value-item:hover .value-number {
  transform: scale(1.2);
  background: var(--gold);
  color: var(--primary);
}

/* Position values around the circle */
.value-1 { top: 5%; left: 40%; transform: translateX(-50%); animation-delay: 0.1s; }
.value-2 { top: 20%; right: 12%; animation-delay: 0.2s; }
.value-3 { bottom: 20%; right: 12%; animation-delay: 0.3s; }
.value-4 { bottom: 5%; left: 40%; transform: translateX(-50%); animation-delay: 0.4s; }
.value-5 { bottom: 20%; left: 12%; animation-delay: 0.5s; }
.value-6 { top: 20%; left: 12%; animation-delay: 0.6s; }

/* Outer circle */
.outer-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 2px dashed rgba(11, 30, 74, 0.2);
  border-radius: 50%;
  z-index: 0;
}

/* Animations */
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Mobile version */
.mobile-values {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.mobile-value {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mobile-value:hover {
  transform: translateY(-5px);
}

.mobile-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.mobile-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.mobile-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mobile-description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .value-inner-content
  {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .circle-container {
    display: none;
  }

  .mobile-values {
    display: grid;
  }

}

@media (max-width: 480px) {
  .mobile-values {
    gap: 1.5rem;
  }

  .values-section {
    padding: 2rem 1rem;
  }
}
/*-------------------------------------------------- Our Values Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Counter Section CSS START -------------------------------------------------------*/

.counters-section {
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}


.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
  padding: 50px;
  border-radius: 15px;
}

.counter-item {
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.counter-suffix {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
}

.counter-title {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }


  .counter-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .counters-grid
  {
    padding: 15px;
  }
  .counter-icon
  {
    font-size: 1.5rem;
  }

}

/*-------------------------------------------------- Counter Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Events Section CSS START -------------------------------------------------------*/
.events-section
{
  padding: 20px 0;          
}
.events-slider {
  position: relative;
}
.events-section .section-header
{
  text-align: center;
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 30, 74, 0.1) 0%, rgba(255, 136, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.event-card:hover {
  transform: translateY(-15px);
}

.event-card:hover::before {
  opacity: 1;
}

.event-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.event-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(11, 30, 74, 0.9), transparent);
}

.event-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
}

.event-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 2;
}

.event-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

.event-content {
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.event-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.event-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #555;
  font-size: 0.9rem;
}

.event-detail svg {
  width: 20px;
  color: var(--secondary);
  font-size: 1rem;
}

.event-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-top: auto;
}

.event-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.event-price .free {
  color: var(--secondary);
}

.event-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.event-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
}

/* Owl Carousel Customization */
.events-section .owl-carousel .owl-stage
{
  padding: 40px 0;
}
.owl-theme .owl-dots .owl-dot span
{
  display: none;
}

.events-section .owl-carousel .owl-stage {
  display: flex;
}
.events-section .owl-carousel .owl-item {
  display: flex;
  align-items: stretch;
  /* Ensures items are stretched to same height */
}
.events-section .owl-carousel .item-card {
  /* Replace .item-card with your actual card class */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: calc(100% + 6rem);
  left: -3rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev, .owl-next {
  background: white !important;
  color: var(--primary) !important;
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  pointer-events: all;
}

.owl-prev:hover, .owl-next:hover {
  background: var(--secondary) !important;
  color: white !important;
  transform: scale(1.1);
}

.owl-dots {
  text-align: center;
}

.owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd !important;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: var(--secondary) !important;
  transform: scale(1.3);
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 1rem;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--primary);
  padding: 1rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.view-all-button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 30, 74, 0.2);
}

@media (max-width: 1024px) {
  .events-slider {
    padding: 0 1rem;
  }

  .owl-nav {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}

@media (max-width: 768px) {

  .owl-nav {
    display: none;
  }

}

@media (max-width: 480px) {
  .event-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .event-button {
    width: 100%;
    justify-content: center;
  }
}

/*-------------------------------------------------- Events Section CSS END -------------------------------------------------------*/
/*-------------------------------------------------- Sponsors Section CSS START -------------------------------------------------------*/

.sponsors-section {
  padding: 20px 0;
}

.sponsors-section .section-header
{
  text-align: center;
  margin-bottom: 10px;
}
.sponsors-container {
  display: flex;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Vertical Tabs */
.sponsor-tabs {
  flex: 0 0 250px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a7a 100%);
  padding: 2rem 0;
}

.tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
}

.tab-item {
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.tab-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tab-item.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tab-icon {
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

.platinum-icon {
  color: var(--platinum);
}

.gold-icon {
  color: var(--gold);
}

.silver-icon {
  color: var(--silver);
}

/* Sponsor Content */
.sponsor-content {
  flex: 1;
  padding: 3rem;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-header {
  margin-bottom: 2.5rem;
}

.content-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Sponsor Grid - Logo Only */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.sponsor-logo-card {
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}


.platinum-sponsor::before {
  background: linear-gradient(to right, var(--platinum), #b8b8b8);
  opacity: 1;
}

.gold-sponsor::before {
  background: linear-gradient(to right, var(--gold), #daa520);
  opacity: 1;
}

.silver-sponsor::before {
  background: linear-gradient(to right, var(--silver), #a8a8a8);
  opacity: 1;
}

.sponsor-logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.sponsor-logo-card:hover .logo-image {
  transform: scale(1.1);
}




/* Mobile Responsive */
@media (max-width: 968px) {
  .sponsors-container {
    flex-direction: column;
  }

  .sponsor-tabs {
    flex: none;
    width: 100%;
    padding: 0.5rem 0;
  }

  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem;
  }

  .tab-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  

  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .sponsor-content {
    padding: 1rem;
  }


}

@media (max-width: 480px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-title {
    font-size: 1.5rem;
  }

}

/*-------------------------------------------------- Sponsors Section CSS END -------------------------------------------------------*/

/*-------------------------------------------------- Footer CSS START -------------------------------------------------------*/
.footer-section
{
  background: linear-gradient(135deg, var(--primary) 0%, #0d265c 100%);  
}

.footer-logo
{
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-logo img
{
  height: 90px;
}

.gswa-footer-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}


.gswa-footer-main {
  color: var(--text-light);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.gswa-footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.gswa-footer-logo {
  position: relative;
}

.gswa-footer-logo h2 {
  font-size: 2rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.gswa-footer-logo p {
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.gswa-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.gswa-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.gswa-footer-social a i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}



.gswa-footer-social a:hover i {
  transform: rotate(360deg);
}

.gswa-footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.gswa-footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.gswa-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gswa-footer-links li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}

.gswa-footer-links li:hover {
  padding-left: 8px;
}

.gswa-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.gswa-footer-links a:hover {
  color: var(--secondary);
}

.gswa-footer-links a i {
  margin-right: 12px;
  font-size: 0.9rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.gswa-footer-links a:hover i {
  transform: translateX(5px);
}

.gswa-footer-contact p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1.05rem;
}

.gswa-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gswa-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.gswa-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.gswa-contact-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}

.gswa-contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gswa-contact-label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 1rem;
}

.gswa-contact-value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.gswa-contact-hours {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}


.gswa-footer-bottom {
  background: linear-gradient(135deg, #0a1835 0%, #09142c 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.gswa-footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.gswa-copyright {
  font-size: 1rem;
}

.gswa-footer-bottom-links {
  display: flex;
  gap: 25px;
}

.gswa-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.gswa-footer-bottom-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.gswa-footer-bottom-links a:hover {
  color: var(--secondary);
}

.gswa-footer-bottom-links a:hover::after {
  width: 100%;
}

@media (max-width: 1100px) {
  .gswa-footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .gswa-footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .gswa-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gswa-footer-main {
    padding: 10px;
  }
  .footer-logo img
  {
    height: 65px;
  }

  .gswa-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .gswa-footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gswa-footer-logo h2 {
    font-size: 1.5rem;
  }
}

/* Animation for elements on load */
.gswa-footer-section, .gswa-footer-logo, .gswa-footer-contact {
  opacity: 0;
  transform: translateY(20px);
  animation: gswaFadeInUp 0.6s ease forwards;
}

.gswa-footer-logo { animation-delay: 0.1s; }
.gswa-footer-section:nth-child(2) { animation-delay: 0.2s; }
.gswa-footer-section:nth-child(3) { animation-delay: 0.3s; }
.gswa-footer-contact { animation-delay: 0.4s; }

@keyframes gswaFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------------------------------------- Footer CSS END -------------------------------------------------------*/


/*All Responsive CSS*/

@media(max-width: 991px)
{
  .text-content p
  {
    font-size: 1rem;
  }
  .cta-buttons
  {
    justify-content: center;
  }
}
@media(max-width: 767px)
{
  .gswa-footer-logo p, .gswa-footer-contact p, .section-header p, .about-text p
  {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .about-section .section-header
  {
    margin-bottom: 0;
  }
  .about-text h3 {
    font-size: 1.8rem;
  }
  .highlight-box
  {
    padding: 1rem;
    margin: 0;
  }

}
@media(max-width: 474px)
{
  .breadcrumb-link.active
  {
    font-size: 0.8rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .about-text h3 {
    font-size: 1.4rem;
    text-align: center;
  }
  .view-all-button
  {
    padding: 0.5rem 1rem;
  }
}
