*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

*::selection {
  background: #00000069;
  color: rgb(115, 0, 202);
  text-shadow: none;
}

body {
    overflow-x: hidden;
}

    /*navbar start*/

.navbar{
    position: sticky;
    top:0;
    height:75px;
    width:auto;
    background: linear-gradient(black,rgb(44, 21, 128)) top center;
    display:flex;
    box-shadow: 1px 1px 20px 10px;
    z-index: 9999;
}

.navbar p, a{
    color:white;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: none;
    font-size:20px
}

.navbar_menu{
    right:0;
    position:absolute;
    width:auto;
    height:75px;
    flex-direction:row;
    display: flex;
    justify-content: flex-end;
}

.navbar_item{
    display: flex;
    height: 100%;
    align-items: center;
    padding:15px;
    position: relative;
}

#on {
    background-color: rgb(44, 21, 128);
}

#onn{
    background-color: #274fff;
}

.navbar_item:not(#on):hover{
    background: linear-gradient(#5739ff,rgb(41, 3, 255)) top center;
}

.navbar_item img{
    width:20px;
}

.dropdown{
    display: none;
    top:75px;
    width: 100%;
    position:absolute;
    left: 0;
    background-color: rgb(41, 3, 255);
    flex-direction: column;
    height: auto;
}

#Dropdown:hover .dropdown{
    display: flex;
    animation: drop 0.5s;
}

.dropdown_item{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown_item:hover{
    background-color: rgb(128, 119, 255);
}

.navbar_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.navbar_logo p{
    transition: color 0.3s, transform 0.3s;
    color:white;
}

.navbar_logo p:hover{
    transform: scale(110%);
    color:rgb(209, 208, 208);
}

.resize{
    width:80px;
    height: auto;
}

.resize:hover{
    animation-name:spin;
    animation-duration: 3s;
    animation-direction: alternate;
}

@keyframes drop {
    0%{
        transform: translatey(-30px);
        opacity: 0;
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
.navbar_menu{
    display: none;
}

.phone_nav{
    display: flex;
    align-self: center;
    justify-content: center;
    flex-direction: column;
    align-items:center;
    gap:5px;
    right:10px;
    width: 50px;
    height: 50px;
    position: absolute;
}

.line1{
    width: 90%;
    height: 12%;
    background-color: white;
    border-radius:10px;
        
}

.topnav {
  overflow: auto;
  width: 100%;
  background: linear-gradient(rgb(44, 21, 128),rgba(11, 31, 212, 0.815)) top center;
  position: fixed;
  z-index: 9999999999;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: rgb(255, 255, 255);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  display: block;
  right: 3px;
}

.arrow{
    height: 10px;
}

}
@media (min-width: 601px) {
.phone_nav{
    display: none;
}

.line1{
    display: none;
        
}

.topnav {
 display: none;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
 display: none;
}

.topnav a.icon {
  display: none;
}

.arrow{
    display: none;
}
}


    /*navbar end*/

    /* Slideshow */
 
.ts-slideshow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
 
.ts-slideshow-wrap .hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
 
.ts-slideshow-wrap .hero-text h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
 
.ts-slideshow-wrap .hero-text p {
  margin: 10px 0 0;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
 
.ts-slideshow-wrap .slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh - 75px);
  overflow: hidden;
}
 
.ts-slideshow-wrap .slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
 
.ts-slideshow-wrap .slide {
  min-width: 100%;
  height: 100%;
}
 
.ts-slideshow-wrap .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.ts-slideshow-wrap .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ts-slideshow-wrap .nav:hover { background: rgba(0,0,0,0.7); }
.ts-slideshow-wrap .prev { left: 12px; }
.ts-slideshow-wrap .next { right: 12px; }
 
.ts-slideshow-wrap .dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
 
.ts-slideshow-wrap .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ts-slideshow-wrap .dot.active {
  background: white;
  transform: scale(1.2);
}
 
    /* Slideshow end */
 /*section1 end*/



    /*about us start*/


.about_us_background{
    display:flex;
    flex-direction:column;
    min-height:calc(100vh - 75px);
    width:100%;
    background: linear-gradient(rgb(7, 2, 68,0.8),rgb(8, 8, 8)),  url(Images/pattern2.png);
}

.about_us{
    display:flex;
    flex-direction:column;
    min-height:calc(100vh - 75px);
    width:100%;
    padding-top: 10%;
    
}

.about_us_container{
    display: flex;
    position:relative;
    align-self: center;
    padding-bottom: 90px;
    padding-top: 50px;
    height: auto;
    width: 80%;
    border-width: 7px;
    flex-direction: column;
    background : linear-gradient(0deg,rgb(0, 0, 0,0.2),rgb(14, 1, 87,0.2));
    border-radius: 40px;
    backdrop-filter: blur(3px);
    
}

.about_us_container img{
    display: flex;
    left:-120px;
    bottom:50px;
    position: absolute;
    height: auto;
    max-width: 42%; 
    bottom: 10%;
}

.about_us_container h1{
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size:70px;
    color:white;
    width: 400px;
    text-align: center;
    padding:10px;
    border-bottom: 5px solid rgb(109, 0, 233);
    margin: 20px 25% 20px ;
}

.about_us_container h2{
    width:100%;
    padding:20px;
    border-radius: 10px;
}

.about_us_textc{
    width:auto;
    margin: 20px 20px 20px 25%;
    align-self: center;
    text-align: justify;
    border-left: 3px solid rgb(109, 0, 233);
}

.about_us_container p{
    display: flex;
    flex-direction: column;
    font-size:20px;
    color:white;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
   
}

@media (max-width: 800px) {

    .about_us_container img{
        display: none;
}


    .about_us_container h1{
        font-size: 40px;
        align-self: center;
        text-align: center;
        width: 80%;
    }

    .about_us_textc{
        width: 95%;
        margin-right:15%;
        align-self: center;
       
}

.about_us_container p{
    font-size:15px;
    text-align: center;
}
}


@media (min-width: 801px) and (max-width: 1759px) {
    .about_us_container img{
        display: none;
    }
    .about_us_container h1{
        align-self: center;
    }
    .about_us_textc{
        margin: 10px 2% 0;
        width: 95%;
}
}
    /*about us end*/


    /*sponsors start*/

.sponsors {
    margin-top: 100px;
    width: auto;
    height:auto;
    
}

.sponsors_header {
    display: flex;
    height: 40%;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

.sponsors_header p{
    color:white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: bold;
    font-size: 70px;
    height: 120px;
    width: 1200px;
    text-align: center;
    margin-bottom: 80px;
    border-bottom: 5px solid rgb(109, 0, 233);
    text-shadow: 0 0 10px rgb(109, 0, 233);
    animation: color-change 5s infinite;
}

@keyframes color-change {
  0% { text-shadow: 0 0 25px red; }
  20% { text-shadow: 0 0 25px blue; }
  50% { text-shadow: 0 0 25px rgb(255,215,0);}
  70% { text-shadow: 0 0 25px rgb(66, 114, 70); }
  100% { text-shadow: 0 0 25px red; }
}

.sponsors_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:30px;
    height:100%;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

.box {
    background: linear-gradient(-45deg,rgb(0, 0, 0,0.5),rgb(12, 5, 37,0.9),rgb(0, 0, 0,0.5)) top center;
    width: 40vh;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    align-content: space-around;
    border-style: solid;
    border-color: rgb(70, 70, 70,0.5);
    border-radius: 30px;
    box-shadow: 4px 4px 20px rgba(56, 56, 56, 0.877);

    transition: 0.5s transform,  0.5s border-color;
}

.box:hover {
    
    transform: scale(1.05);
    background: linear-gradient(-45deg,rgb(0, 0, 0,0.8),rgb(12, 5, 37,0.9)) top center;
    border-color: rgba(173, 173, 173, 0.5);
}

.box img{
    height: 20vh;
}

.sponsors_footer {
    display: flex;
    flex-direction: column;
    height: 40%;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

.sponsors_footer p{
    font-weight: bold;
    font-family: arial;
    font-size: 40px;
    background: linear-gradient(#ffffff, #8b8b8b);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    .sponsors_header p{
       font-size: 30px;

    
}
}

/* footer start */



.footer{
    display: flex;
    position: relative;
    height: 30vh;
    background-color: rgb(12, 12, 12);
}

.ftc{
    top:0;
    height: 100%;
    width: 45%;
    position: relative;
    left:5%;
    align-content: center;
}

.ftc img{
    position: relative;
    width: 90%;
}

.contact{
    position: absolute;
    top:0;
    height: 100%;
    width: 50%;
    right:0;
    
}


.links{
    display: flex;
    position: absolute;
    top:calc(15vh - 50px);
    height: 50px;
    gap:30px;
    width: 40%;
    justify-self: center;
    justify-content: center;
}

.links_box{
    height: 50px;
}

.links_box img{
    position: relative;
    left:0;
    height: 100%;
    transition: all 0.6s;
}

.links_box img:hover{
    transform: scale(130%);
}

.email{
    position:absolute;
    width:40%;
    bottom:calc(15vh - 60px);
    display: flex;
    height: 50px;
    justify-self: center;
    justify-content: center;
    align-items: center;
}

.email p{
    color:white;
    font-size: 160%;
    font-family:monospace ;
}

.copyright{
    display: flex;
    color: white;
    position: absolute;
    height: 50px;
    bottom: 0;
    left:0;
    right: 0;
    justify-self: center;
    align-items: center;
    font-family: monospace;
}

@media (max-width:600px){
    
.ftc{
    display: flex;
    width: 100%;
    left: 0;
    right:0;
    justify-items: center;
    height: 30%;
}

.ftc img{
    top:20px;
    position: absolute;
    right: 0;
    left: 0;
    justify-self: center;
}

.contact{
    top:30px;
    position: absolute;
    width:100%;
    height:fit-content;
}
    
.email{
    top:107px;
}

}
