/******* Governing body*********/
.container {
    text-align: center;
    /*margin-top: 20px;*/
}

.click-text {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    font-size: 20px;
}
/****************



/* ================= HEADER ================= */





/* ====================Header Container================= */

.header-container{
    width:100%;
    overflow:hidden;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.header-logo{
    width:100%;
    max-width:1400px;
    height:auto;
    max-height:250px;   
    object-fit:contain;
    display:block;
}


@media screen and (max-width:768px){
    .header-logo{
        max-height:180px;
    }
}


@media screen and (max-width:480px){
    .header-logo{
        max-height:120px;
    }
}


/* ====================Header Container end================= */




/* ================= NAVBAR ================= */




.custom-navbar {
    background: #1b263b;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
      position: sticky;
      top: 0;
}


.custom-navbar.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    animation: slideDown 0.5s ease;
     z-index: 999999;
}

.custom-navbar.sticky-nav .nav-menu li {
    background: transparent;
}

.custom-navbar.sticky-nav .nav-menu a {
    color: #1b263b;
}

.custom-navbar.sticky-nav .nav-menu a:hover {
    color: #ef1e2d;
}

.custom-navbar.sticky-nav .dropdown-menu {
    background: #ffffff;
}

.custom-navbar.sticky-nav .dropdown-menu li a {
    background: #ffffff;
    color: #1b263b;
}

.custom-navbar.sticky-nav .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #ef1e2d;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}




.nav-container {
  max-width: 1200px;
  margin: auto;
  background: transparent;
}



.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  }

   

.nav-menu li {
  position: relative;
  background: #1b263b;
  
}

.nav-menu a {
  display: block;
  padding: 16px 18px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
  font-weight: 600;
}



.nav-menu li.active > a,
.nav-menu a.active {
 
  color: #fff;
  width: 100%;
}



.nav-menu a:hover,
.dropdown-menu li a:hover {

 color: #fff;
 background: #1b263b;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .nav-menu a {
    font-size: 12px;
  }
}



.dropdown {
  position: relative;
}


.dropdown-menu,
.dropdown-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 220px;
  background: #1b263b;

  display: none;
   top: calc(100% - 1px);
  z-index: 999999;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.3s ease;

  border: none;
  overflow: hidden;
}




.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}


.dropdown-menu li {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #1b263b;
  white-space: nowrap;
}


.dropdown-menu li a {
  display: block;

  padding: 14px 16px;
  margin: 0;

  color: #ffffff;
  background: #1b263b;

  text-decoration: none;

  line-height: 1.3;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s ease;
}


.dropdown-menu li a:hover {
  background: #1b263b;
  color: #ef1e2d;
}


.custom-navbar,
.nav-container {
  overflow: visible !important;
}






.dropdown {
  position: relative;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   overflow: visible !important; 
}

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color:  white;
  text-decoration: none;
}





.dropdown-menu .submenu {
  position: relative;
}


.submenu-dropdown {
  position: absolute;
       
  left: 100%;       
 
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999999;  
  display: none;    
}

.dropdown-menu .submenu:hover .submenu-dropdown {
  display: block;
}


.submenu-dropdown li {
  width: 100%;
}

.submenu-dropdown li a {
  display: block;
  padding: 12px 20px;
  color:  white;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}


.submenu-dropdown li a:hover {
  background-color: #ef1e2d;
  color: #ffffff;
  padding-left: 24px;
}







.dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;

 
  min-width: 250px;

  list-style: none;
  

  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
 

  transition: 0.3s;
  z-index: 999;
}


.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.dropdown-menu li a{
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: white;
}

.dropdown-menu li a:hover{
  background: #ef1e2d;
  color: white;
}


.submenu{
  position: relative;
}

.submenu-dropdown{
  position: absolute;
  top: 0;
  left: 100%;

  
  min-width: 200px;

  list-style: none;


  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;
}


.submenu:hover .submenu-dropdown{
  opacity: 1;
  visibility: visible;
}


@media (max-width: 768px){

  .dropdown-menu{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu{
    display: block;
  }

  .submenu-dropdown{
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .submenu.active .submenu-dropdown{
    display: block;
  }
}



/* ================= NAV END ================= */
/* ================= MOBILE MENU start  ================= */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 420px;
  height: 100vh;
  background: #ef1e2d;
  z-index: 99999;

  transition: right 0.4s ease;

  pointer-events: none;
}

.mobile-menu-overlay.active {
  right: 0;
  pointer-events: auto;
}

.mobile-menu-overlay__body {
  height: 100%;
  padding: 24px 18px 30px;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-menu-overlay__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-overlay__body ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.mobile-menu-overlay__body ul li.active > a {
  color: yellow;
}



.menu-toggle {
  position: relative;
  font-size: clamp(30px, 3vw, 39px);
  color: white;
  cursor: pointer;
 /* padding: 10px;*/
  z-index: 1000000;
  display: none;
}



.close-btn {
  font-size: 30px;
  color: #222;
  text-align: right;
  cursor: pointer;
  margin-bottom: 16px;
  line-height: 1;
}



.mobile-menu-overlay .dropdown-menu {
  position: static;
  background: transparent;
  min-width: 100%;
  display: none;
  margin: 0;
  padding: 0 0 6px;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay .dropdown-menu.open {
  display: block;
}

.mobile-menu-overlay .dropdown-menu li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay .menu-arrow {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1023px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-overlay__body ul li a {
    font-size: 20px;
    padding: 18px 0;
    color: #ffffff;
  }

  .mobile-menu-overlay .dropdown-menu li a {
    font-size: 15px;
    padding: 12px 14px;
  }

  .mobile-menu-overlay .menu-arrow {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .menu-toggle {
  
  color: black;
  
}
}

@media (max-width: 768px) {

  .mobile-menu-overlay__body {
    padding: 20px 20px 60px;
  }

  .mobile-menu-overlay__body ul li a {
    font-size: 18px;
    padding: 14px 10px;
    line-height: 1.4;
  }
}

/* ================= ACTIVE COLORS ================= */

.nav-menu li.active > a,
.nav-menu a.active {
  color: #ef1e2d;
}

.dropdown-menu li.active > a,
.dropdown-menu a.active {
  color: #ef1e2d;
}

.mobile-menu-overlay li.active > a,
.mobile-menu-overlay a.active {
  color: #ffff00;
}
/* ================= MOBILE MENU END================= */



/* ================= SCROLLING BAR ================= */

#customScrollLeft {
  overflow: hidden;
  background: linear-gradient(to right, #131a5a, #8c0e36c4);
}

.scrolling-inner {
  display: flex;
  animation: scrollLeft 20s linear infinite;
}

.scrolling-item {
  color: white;
  padding: 10px 30px;
  white-space: nowrap;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
/***********************SCROLLING BAR END*******************************/

/************** header end **************/


/********************************Footer Section********************/
.footer{

    background:#0b1120;

    color:#fff;

    padding:60px 8%;

}
 
.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}
 
.footer-col h4{

    font-size:22px;

    margin-bottom:20px;

    color:#00bfff;

}
 
.footer-col p{

    line-height:1.8;

    color:#ccc;

}
 
.footer-col ul{

    list-style:none;

    padding:0;

}
 
.footer-col ul li{

    margin-bottom:12px;

}
 
.footer-col ul li a{

    color:#fff;

    text-decoration:none;

    transition:0.3s;

}
 
.footer-col ul li a:hover{

    color:#00bfff;

    padding-left:5px;

}
 
.newsletter-form{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:15px;

}
 
.newsletter-form input{

    padding:12px;

    border:none;

    border-radius:5px;

    outline:none;

}
 
.newsletter-form button{

    background:#00bfff;

    color:white;

    border:none;

    padding:12px;

    border-radius:5px;

    cursor:pointer;

    transition:0.3s;

}
 
.newsletter-form button:hover{

    background:#009acd;

}
 
.footer-bottom{

    text-align:center;

    margin-top:40px;

    border-top:1px solid rgba(255,255,255,0.2);

    padding-top:20px;

    color:#aaa;

}
 

/********************************Footer Section End********************/


/***************************** social icons start *************************************************/


.social-icons {
    position: fixed;
    top: 50%;
    right: 0; 
    transform: translateY(-50%);
    z-index: 9999;
    
   
    background: #ffffff;
    padding: 15px 8px; 
    border-radius: 8px 0 0 8px; 
    box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.1); 
    
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

.social-link {
    width: 32px; 
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}


.social-link i {
    font-size: 18px;
    color: #ef1e2d; 
    transition: color 0.2s ease;
}


.social-link:hover {
    transform: scale(1.15);
}

.social-link:hover i {
    color: #0f172a; 
}
/***************************** social icons end *************************************************/


/* Notice Container */
#customScrollLeft {
    background: #002147;
    padding: 10px 0;
    overflow: hidden;
}

/* Scrolling Row */
.scrolling-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Notice Item */
.scrolling-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.scrolling-item:hover {
    background: rgba(255,255,255,0.1);
}

/* Status Dot */
.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff66;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Notice Text */
.notice-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* NEW GIF */
.new-gif-badge {
    height: 28px;
    width: auto;
    margin-left: 8px;
    position: relative;
    top: -4px;
    animation: pulse 1.2s infinite;
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}