/* Reset styles */

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
  body {
    
      background-color: #f5f5f5;
    }
/* Define colors using CSS variables */
:root {
    --voiletColor: #522a83;
    --orangeColor: #fb812b;
    --whiteColor: #fff;
    --violetColor: #522a83;
    --lightViolet: #f3e9fb;
}

/* Header styling */
header {
    width: 100%;
    padding: 20px 3%;
    z-index: 1;
    color: #fff;
    position: relative;
    min-height: 8vh;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-image: linear-gradient(to right, #522a83, #a517ba);
}

/* Navigation bar styling */
.nav-bar {
    display: flex;
    justify-content: space-between;
    gap: 2rem;

}

nav {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    width: 100%;
}



nav {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    width: 100%;
}

.navLinks {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 20px 0;
}

/* Logo styling */
.logo img {
    width: 170px;

}

.navLinks a {
    color: var(--whiteColor);
    font-size: 1.4vw;
    font-weight: 900;
    padding: 0 10px;
}

.navLinks a:hover {
    background-color: var(--orangeColor);
}

.joinUs button{
    width: 100px;
    height: 6vh;
    cursor: pointer;
    border: none;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
   border-radius: 5px;
}

/* Menu icon styling */
.menu-icon {
    font-size: 1.5rem;
    width: 100%;
    max-width: 50px;
    text-align: center;
    cursor: pointer;
    display: none;
    right: 0;
    padding: 20px 0;
    position: absolute;

}

/* button to remove nave bar */
.remove-navbar {
    position: absolute;
    display: none;
    top: 5%;
    right: 20px;
    cursor: pointer;
}





/* search bar section */
.search-bar-section {
    padding-top: 5%;
}

.search-bar-section form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;


}

.search-bar-section input {
    width: 100%;
    max-width: 700px;
    height: 7vh;
    outline: none;
    border: solid 2px #522a83;
    padding: 10px;
    border-radius: 10px;
    color: var(--voiletColor);


}

.search-bar-section input::placeholder {
    color: var(--voiletColor);
    font-weight: 700;
}











/* home page banner container styling */
#banner {
    width: 100%;
    min-height: 35vh;
    background-image: linear-gradient(to right, #522a83, #a517ba);
    color: white;
    padding: 7% 5%;

}

.row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* Banner image styling */
.banner-img {
    width: 100%;
    max-width: 500px;
}

.banner-img img {
    width: 100%;
    height: 40vh;

}

/* Banner content styling */
.banner-content {
    width: 100%;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 2.8vw;
    padding-bottom: 2%;
    font-weight: 900;
}

.banner-content p {
    font-size: 1.3rem;
    padding-bottom: 5%;
}

.text-slide .text h1 {
    animation: textslide 0.9s;
}

.text-slide span {
    color: var(--orangeColor);
}

.text-slide .text p {
    animation: textslide2 0.9s;
}

@keyframes textslide {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

@keyframes textslide2 {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
}

/* Award styling home page */
/* Styling for the container of ongoing events */
.ongoin-event {
    padding-top: 3%;
    display: flex;
    justify-content: center;
 
    width: 100%;
}

/* Styling for the heading of ongoing events */
.ongoin-event h2 {
    font-size: 2rem;
    font-weight: 800;
    outline: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5335cf 0%, #de005e 25%, #f66e48 50%, #de005e 75%, #5335cf 100%);
    background-size: 400%;
    border: solid 2px #a517ba;
    padding: 10px;
    border-radius: 25px;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animates 10s linear infinite;
}

@keyframes animates {
    to {
        background-position: 400%;
    }
}

/* Styling for the container of awards */
.award-container {
    padding: 2% 3%;
  
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/* Styling for individual awards */
.award {
    flex-grow: 1;
    width: 100%;
    max-width: 350px;
    min-height: 40vh;
    background-color: var(--whiteColor);
    border: solid 2px #a517ba;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s;
}

/* Cool animation when a user hovers on the award */
/* .award:hover {
    transform: translateY(-5px);
    
} */



/* Styling for award images */
.award img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
}

/* Styling for award text */
.award-text {
    padding: 5%;
    text-align: center;
}

/* Styling for award text heading */
.award-text h5 {
    font-size: 1.5rem;
    font-weight: 900;
    padding: 10px 0;
}

/* this is the loading styling */
.spinner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    margin-bottom: 5%;
    display: none;
    padding: 10px;
    height: 55vh;

}

.spinner p {
    padding: 1% 0;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--voiletColor);
    text-align: center;
}

.skeleton-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 8px solid #fb812b;
    border-top: 8px solid #522a83;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* this is banner on the other pages */
.banners {
    position: relative;
   
   
}




.banners-content {
    background-color: var(--voiletColor);
    width: 100%;
    height: 30vh;

    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor);
    
}
.blog-banner{
    background-color: var(--voiletColor);

    height: 30vh;
margin: 1% 8%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor); 
    border-radius: 20px;
}

.about-image video{
    width: 100%;
    height: 60vh;
}


/* about us page styles */
.about-us-container, .about{
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding:1% 3%;
}
.about h2{
    text-align: center;
    font-size: 3rem;
    color: var(--voiletColor);
    padding: 2% 0;
}
.about{
    text-align: center;
}

.about-us-content h2{
    font-size: 3rem;
}
.about-page h2{
    font-size: 1.5rem;
}
.about-image {
    width: 100%;
    max-width: 800px;
}

.about-ben img {
    width: 100%;
    height: 100vh;
   object-fit: cover;
    border-radius: 10px;
}

.readmore{
    margin: 5% 0;
   
}
.readmore button{
    background-color: var(--voiletColor);
    color: var(--whiteColor);
   width: 200px;
   cursor: pointer;
   min-height: 6vh;
   border-radius: 10px;
   text-align: center;
}
.vote button{
    background-color: var(--orangeColor);
    color: var(--whiteColor);
   width: 200px;
   cursor: pointer;
   min-height: 6vh;
   border-radius: 10px;
   border: none;
}




.about-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  
  .about-image img {
    width: 100%;
  
    display: block;
  }
  
  .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.2);
  }
  
  #playBtn {
    background: var(--orangeColor);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 20px;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    cursor: pointer;
    pointer-events: auto;
   
  }



  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }


  
  #transcription {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    margin-top: 20px;
    padding: 15px;
    max-width: 90%;
    border-radius: 10px;
    text-align: center;
    z-index: 1;
  }
  
  .audio-controls {
    display: block;
    width: 100%;
  margin-top: -7%;
  background-color: var(--orangeColor);
  }
  
  .hidden {
    display: none;
  }
  

  .hero-section {
    display: flex;
    height: 100vh;
    overflow: hidden;
    margin: 5%;
  }
  
  .hero-left {
    flex: 1;
   
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .image-wrapper {
    position: relative;
    width: 700px;
   
    z-index: 2;
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 3;
  }
  
  .rotating-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 8s linear infinite;
  }
  
  .dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .dot.blue {
    background-color: blue;
    animation: rotateDot 8s linear infinite;
  }
  
  .dot.pink {
    background-color: pink;
    animation: rotateDot 8s linear infinite;
    animation-delay: 4s; /* Delays second dot's animation */
  }
  
  @keyframes rotateCircle {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  @keyframes rotateDot {
    0% {
      transform: rotate(0deg) translateX(250px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(250px) rotate(-360deg);
    }
  }
  
  .hero-right {
    flex: 1;
    background-color: var(--lightViolet);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-right h5 {
    color: var(--violetColor);
    margin-bottom: 10px;
  }
  
  .hero-right h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1.4;
  }
  
  .hero-right .highlight {
    color: var(--violetColor);
  }
  
  .hero-right p {
    font-size: 16px;
    margin: 20px 0;
    color: #333;
  }
  
  .buttons {
    display: flex;
    gap: 15px;
  }
  
  .primary-btn {
    background-color: var(--violetColor);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .secondary-btn {
    background-color: #e6d8f4;
    color: var(--violetColor);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  @media screen and (max-width: 968px) {
    .hero-section {
      flex-direction: column;
      height: auto;
      margin: 20px 5%;
    }
  
    .hero-left,
    .hero-right {
      flex: unset;
      width: 100%;
      height: auto;
    }
  
    .rotating-circle {
      width: 380px;
      height: 380px;
    }
  
    .image-wrapper {
      width: 100%;
      height: auto;
    }
  
    .dot {
      width: 12px;
      height: 12px;
    }
  
    .hero-right h1 {
      font-size: 28px;
    }
  
    .hero-right p {
      font-size: 14px;
      margin: 15px 0;
    }
  
    .buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .primary-btn,
    .secondary-btn {
      width: 100%;
      padding: 10px 20px;
    }
  }
  



.how-it-works {
    padding: 3%;
    text-align: center;
    background: #fff;
  }

  .step i{
    font-size: 3rem;
  }
  .how-it-works h2 {
    font-size: 3rem;
    color: var(--voiletColor);
    margin-bottom: 1rem;
  }

  .how-it-works p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #444;
  }

  .how-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .step {
    background: var(--whiteColor);
    padding: 1.5rem;
    border-radius: 12px;
    width: 300px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
  }

  .step p {
    font-size: 0.95rem;
    color: #666;
  }

  .arrow {
    width: 30px;
    height: 30px;
    position: relative;
    flex-shrink: 0;
  }

  .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #aaa;
    transform: translateY(-50%);
  }

  .arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #aaa;
    transform: translateY(-50%);
  }

  @media (max-width: 768px) {
    .how-steps {
      flex-direction: column;
    }

    .arrow {
      transform: rotate(90deg);
    }
    .step{
        width: 100%;
    }
  }







.about-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.about-us-content h2 {
    color: var(--voiletColor);
    padding: 3% 0;
}


.flex-container {
    display: flex;
    justify-content: center;
   gap: 2rem;
    margin-bottom: 20px;
  }
  
  .flex-item {
    font-size: 16px;
    font-weight: bold;
   
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .flex-item:hover {
    background-color: var(--orangeColor);
    color: white;
  }
  


.some-hosted-award{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5%;
}




/* .hosted-award-grid{
    padding: 5% 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}
.hosted{
    width: 100%;
    max-width: 100%;
    background-color: var(--lightViolet);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    min-height: 40vh;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.hosted img{

    width: 100%;
    max-width: 300px;
    height: 30vh;
    object-fit: cover;
}
.ho-text{
    text-align: center;
    padding: 2% 0;
    font-size: 1.5rem;
}
.ho-text p:first-child{
    color: var(--orangeColor);
    padding: 10px 0;
}
.ho-text p:nth-child(2)  {
    color: var(--violetColor);
    padding: 10px 0;
}
.view button{
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: var(--violetColor);
    color: var(--whiteColor);
    min-height: 4vh;
} */





/* policy and terms section styling */
.policy-container,
.terms-conndition-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3%;
    gap: 1rem;
    width: 100%;
}

.policy-col,
.terms-col {
    width: 100%;
    max-width: 750px;
    background-color: var(--whiteColor);
    padding: 2% 4%;
    border-radius: 10px;
    min-height: 10vh;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

}

.policy-col h3,
.terms-col h3 {
    color: var(--voiletColor);
    padding-bottom: 2%;
    font-weight: 800;
}

.policy-col p {
    line-height: 23px;
}

.policy-col span {
    color: var(--orangeColor);
}


/* contact us page */
.contact-us {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-media {
    display: flex;
    gap: 2rem;
}

.social-media i {
    font-size: 3rem;
}

/* category and nominee page styling */

.award-category-section,
.nominees-section-container {
    padding: 5% 6%;

}

.award-category-container,
.nominees-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* styling category container */
.category,
.nominees {
    width: 100%;
    max-width: 320px;
    min-height: 40vh;
    background-color: var(--whiteColor);
    border: solid 2px #a517ba;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s;
    padding: 5px;
}


.category img {
    width: 100%;
    height: 35vh;
    object-fit: cover;
}


.nominees img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.category-details,
.nominees-detail {
    display: flex;
    padding-top: 5%;
    align-items: center;
    flex-direction: column;
}

.category-details h2,
.nominees-detail h2 {
    font-size: 1.1rem;
    color: var(--voiletColor);
    text-align: center;
}

.category-details h3,
.nominees-detail h3 {
    font-size: 1rem;
    padding: 10px;
    text-align: center;

}

/* vote button styling */
.vote-button {
    width: 100%;
    padding: 5%;
}

.vote-button a {
    padding: 10px 25px;
    font-weight: 500;
    background-color: var(--voiletColor);

    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 7vh;
    text-align: center;

    border: 2px solid rgb(255, 255, 255);
    z-index: 0;
    color: var(--whiteColor);
    font-weight: 900;
}

.vote-button a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--orangeColor);
    transition: all 0.3s ease;
    border-radius: 25px;
}

.vote-button a:hover {
    color: var(--whiteColor);
    border-radius: 25px;

}

.vote-button a:hover:after {
    top: 0;
    height: 100%;
    border-radius: 25px;
}

.vote-button a:active {
    top: 2px;
}

/* nominate button on  styling */
.button {
    display: flex;
    justify-content: center;
    margin-top: 3%;
    width: 100%;
    max-width: 200px;
    align-items: center;
}

.button a {
    padding: 10px 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 7vh;
    text-align: center;
    border-radius: 25px;
    border: 2px solid rgb(255, 255, 255);
    z-index: 0;
    color: white;
    font-weight: 900;
}

.button a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
    border-radius: 25px;
}

.button a:hover {
    color: var(--voiletColor);
    border-radius: 25px;

}

.button a:hover:after {
    top: 0;
    height: 100%;
    border-radius: 25px;
}

.button a:active {
    top: 2px;
}

/*  this styling is for the forms voters will use to vote */
.paymentForm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
    gap: 2rem;
}

.pay-form {
    padding:5% 20%;
}

.paymentForm form {
    display: flex;
    flex-direction: column;

    padding: 10px;
    width: 100%;


    max-width: 100%;
    min-height: 70vh;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
}

.paymentForm input {
    width: 100%;
    min-height: 7vh;
    padding: 5px;

}

.paymentForm button {
    min-height: 7vh;
    background-color: var(--voiletColor);
    cursor: pointer;
    color: var(--whiteColor);
    border: none;
}

.pay-img {
    width: 100%;
    max-width: 100%;
}

.pay-img img {
    width: 100%;
    min-height: 100vh;
}

.paymentForm form label span {
    color: var(--orangeColor);
}

.paymentForm label {
    color: var(--voiletColor);
    font-weight: 800;
}

.alert-amount-to-pay {
    background-color: rgba(165, 23, 186, 0.5);
    width: 100%;
    min-height: 5vh;
    margin-bottom: 2%;
    display: none;
    padding: 10px;
}

.alert {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--voiletColor);
    width: 100%;
    min-height: 7vh;
    margin-bottom: 2%;
    color: var(--whiteColor);
    font-weight: 800;
    padding: 10px;
    margin: 3% 0;
}

.alert i {
    background-color: var(--orangeColor);
    padding: 10px 12px;
    border-radius: 50%;
}

.nominee-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nominee-details img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    border-radius: 50%;
    border: solid 5px #522a83;
}


/* vote-succes-or-fail */
.vote-succes-or-fail {
    width: 100%;
    padding: 5% 2%;
    display: flex;
    justify-content: center;
    align-items: center;


}

.vote-condition {
    width: 100%;
    max-width: 700px;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--voiletColor);
    font-weight: 900;

}

.vote-condition h1 {
    font-size: 2rem;
    padding: 5px 0;
}

.vote-condition i {
    font-size: 3rem;
}

.vote-condition a {
    color: var(--orangeColor);
    text-decoration: underline;
}



/* NOMINATION PAGE FORM */

/* Styles for the nomination form container */
.nomination-forms {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Styles for the heading within the nomination form */
.nomination-forms h3 {
    text-align: center;
    padding-bottom: 4%;
    color: var(--voiletColor);
    font-weight: 900;
    font-size: 1.3rem;
}

/* Styles for the hero section (image display) */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2%;
}

/* Styles for the drop area for image upload */
#drop-area {
    padding: 10px;
    background-color: #f7f8ff;
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

/* Styles for the form container */
.nomination-forms form {
    background-color: var(--whiteColor);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
    border: solid 1px #522a83;
    width: 100%;
    max-width: 900px;
    padding: 2% 3%;
    margin: 2% 1%;
    border-radius: 10px;
}

/* Styles for the image view */
#img-view {
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    border: 2px dashed #522a83;
}

/* Styles for images within the image view */
#img-view img {
    width: 100%;
    max-width: 150px;
    height: 20vh;
    object-fit: cover;
}

/* Styles for the nomination alert section */
.nomination-alert {
    padding: 10px;
    text-align: center;
    color: var(--voiletColor);
    padding-bottom: 5%;
    font-size: 1.1rem;
    background-color: rgba(82, 42, 131, 0.1);
}

/* Styles for the form elements container */
.form {
    display: flex;
    gap: 1rem;
    width: 100%;
    padding: 4% 0;
}

/* Styles for input containers */
.input-container {
    width: 100%;
}

/* Styles for text input fields */
.input input {
    width: 100%;
    min-height: 7vh;
    margin: 5% 0;
    padding: 10px;
    caret-color: var(--voiletColor);
    outline: none;
    border: solid 2px #522a83;
    color: var(--voiletColor);
}

/* Styles for input placeholders and textareas */
.input input::placeholder,
.textarea textarea::placeholder {
    color: var(--voiletColor);
}

/* Styles for input labels and textarea labels */
.input label,
.textarea label {
    color: var(--voiletColor);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Styles for textareas */
.textarea textarea {
    padding: 10px;
    caret-color: var(--voiletColor);
    color: var(--voiletColor);
    width: 100%;
    height: 15vh;
    resize: none;
    outline: none;
    margin: 3% 0;
    border: solid 2px #522a83;
}

/* Styles for the submit button */
.nomination-forms button {
    width: 100%;
    margin: 3% 0;
    min-height: 6vh;
    background-color: var(--voiletColor);
    border: none;
    color: var(--whiteColor);
    cursor: pointer;
}

.alert-user-submition {
    position: fixed;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(165, 23, 186, 0.5);
    display: none;
}

.alert-message {
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--whiteColor);
    width: 100%;
    max-width: 600px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.remov-alert {
    position: absolute;
    background-color: var(--orangeColor);
    padding: 11px 10px;
    border-radius: 50%;
    color: var(--whiteColor);
    top: 10%;
    right: 10%;
    cursor: pointer;
}


/* contact us page styling */
.contact-us-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;

    padding: 5%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    background-color: var(--voiletColor);
    min-height: 30vh;
    box-shadow: 1px 0 9px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;

}

.socials {
    display: flex;
    gap: 2rem;
}

.contact-details i {
    margin: 3% 0;
    color: var(--orangeColor);
    font-size: 1.3rem;
    padding: 10px;
    background-color: var(--whiteColor);
    border-radius: 50%;
}

.contact-details p {
    color: var(--whiteColor);
    font-size: 1.2rem;
    font-weight: 900;
}


/* result page styling */
.nominees-result-section {
    padding: 5% 10%;
    text-align: center;
}

.nominees-result-section h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--voiletColor);
}

.nominee-result {
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: rgba(82, 42, 131, 0.5);
    ;
    padding: 20px 4%;
    min-height: 20vh;
    border-radius: 10px;
}

.nominee-img img {
    width: 90px;
}






/* styling for footer */
   .footer {
      background-color: var(--voiletColor);
      color: #fff;
    }

    .footer-top {
      background-color: var(--orangeColor);
      text-align: center;
      padding: 15px;
    }

    .footer-top p {
      margin: 0;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      margin: 0 10px;
      color: white;
      font-size: 1.2rem;
      text-decoration: none;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 30px 8%;
      background-color: var(--violetColor);
    }

    .footer-box {
      flex: 1;
      min-width: 200px;
      margin-bottom: 20px;
    }

    .footer-box h4 {
      margin-bottom: 15px;
      font-size: 1.1rem;
      font-weight: bold;
    }

    .footer-box p, .footer-box a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .footer-box a:hover {
      color: white;
    }

    .footer-bottom {
      background-color: var(--voiletColor);
      text-align: center;
      padding: 15px;
      font-size: 0.9rem;
      color: #aaa;
    }
    .footer-box .logo img{
        width: 100px;
    }

    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
      }

      .footer-box {
        width: 100%;
      }

      .social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
      }
    }



/* admin login form style */
.adminLogin-form {
    width: 100%;
    margin: 5% 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.adminLogin-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    min-height: 45vh;
    padding: 4%;
    border-radius: 25px;
    border: 3px solid transparent;
    animation: rotateBorder 5s linear infinite;
}

.adminLogin-form form input {
    margin: 2% 0;
    border: solid 2px #5335cf;
}

.welcome-area {
    width: 100%;
    height: 20vh;
    background-image: linear-gradient(to right, #522a83, #a517ba);
    margin-bottom: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor);
}

@keyframes rotateBorder {
    0% {
        border-color: var(--orangeColor);

    }

    25% {
        border-color: var(--voiletColor);

    }

    50% {
        border-color: var(--orangeColor);

    }

    75% {
        border-color: var(--voiletColor);

    }

    100% {
        border-color: var(--orangeColor);

    }
}














.donate-section-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 7% 6%;
    margin-bottom: 7%;
    min-height: 100vh;
}

.donate-secs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    min-height: 55vh;
    background-color: var(--whiteColor);
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);

}


.donate-btn {
    background-color: #a517ba;
    padding: 10px;
    margin: 2% 5px;
    color: var(--whiteColor);
    border: none;
    cursor: pointer;
    width: 100%;
    min-height: 6vh;
    font-size: 19px;
}


/* -------------blog styles start---------- */

@import url('https://fonts.googleapis.com/css?family=Merriweather|Open+Sans');

.my-container {
    display: flex;
    justify-content: center;
    padding: 80px;
}

.square:hover {
    -webkit-transform: translate(20px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.00);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.00);
}

.square {
    width: 460px;
    height: 430px;
    background: white;
    border-radius: 4px;
    box-shadow: 0px 20px 50px #D9D8DF;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mask{
  clip: rect(0px, 460px, 220px, 0px);
  border-radius: 4px;
  width: 460px;
  height: 220px;
}



.blog-h1 {
    text-align: left;
    font-family: 'Merriweather', serif;
    font-size: 24px;
    color: #000;
    padding: 4px;
}

.blog-p {
    text-align: justify;
    padding-right: 30px;
    font-family: 'Open Sans' sans-serif;
    font-size: 12px;
    color: #000;
    line-height: 18px;
    padding: 4px;
}

.blog-button {
    background-color: #5335cf;
    color: white;
    width: 90px;
    padding: 10px 18px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 20px;
    margin-right: 70px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Merriweather';

}
.blog-containers{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding:2% 8%;
    gap: 1rem;
}
.blog-detail-container{
    margin: 0 8%;
}
.blog-detail-container .heading{
    font-size: 1.3rem;

    padding: 1% 0;
    margin: 2% 0;
    border-bottom: 4px solid #fb812b;
}
.blog-date{
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 10px 0;

}
.reconmended{
    border-radius: 10px;
    border: solid 1px rgba(0, 0, 0, 0.3);
    padding: 10px ;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blog-rec{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.blog-rec img{
    width: 150px;
    height: 10vh;
object-fit: cover;
border-radius: 7px;
}
.td{
    background-color: var(--orangeColor);
    color: #000;
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.blogs-d{
    display: flex;
    gap: 2rem;
}
.the-blogs{
    width: 100%;
    max-width: 75%;
}
.socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 10px 0;
}
.socials i{
    font-size: 2rem;
}
.blog-side{
   width: 100%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
     gap: 2rem;
}
.blog-share{
 width: 100%;
    height: 15vh;
    border-radius: 25px;
    border: solid 1px rgba(0, 0, 0, 0.6);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.blog-big-image img{
width: 100%;
height: 80vh;
object-fit: cover;
margin: 2% 0;
border-radius: 10px;
}
.blog-sub{
    width: 100%;
    max-width: 100%;
    border: solid 2px rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 10px;
    background-color: var(--whiteColor);
    position: relative;
}
.blog-sub img{
    width: 100%;
    border-radius: 10px;
    height: 40vh;
    object-fit: cover;
}

.blog-text .date{
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    color: #000;
}

.trending{
position: absolute;
top: 5%;
right: 15px;
background: var(--whiteColor);
width: 100px;
height: 25px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 7px;
color: var(--violetColor);

}
.blog-head h1{
    font-size: 1.1rem;
    padding: 10px 0;
    color: var(--voiletColor);
}
.read-detail a{
color: var(--orangeColor);
padding: 10px 0;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards_items {
    display: flex;
    padding: 1rem;
}

@media (min-width: 40rem) {
    .cards_items {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .cards_items {
        width: 33.3333%;
    }
}






.ticket-main{
    padding: 5% 10%;
    background-color: var(--lightViolet);
}
.t-head{
    padding: 3% 0;
    font-size: 1.3rem;
}
.ticket-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  
}

.ticket{
    width: 100%;
    max-width: 100%;
    min-height: 30vh;
    background-color: var(--whiteColor);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
   
}
.ticket img{
    width: 100%;
    height: 25vh;
    
}

.ticket-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 10px;
}

.ticket-text h3{
    font-size: 1.2rem;
    color: var(--violetColor);
}


.ticket-forms{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
 
}

.ticket-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    background-color: var(--whiteColor);
    padding: 10px;
    border-radius: 10px;
}
.t-form, .t-input{
    
    width: 100%;
}
.t-form select, .t-form input{
    width: 100%;
    height: 6vh;
    margin: 3% 0;
    outline: none;
    padding: 10px;
}

.t-form button{
    width: 100%;
    cursor: pointer;
    height: 6vh;
    background-color: var(--violetColor);
    color: var(--lightViolet);
    border: none;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  text-align: center;
}

.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
.t-name{
   padding-bottom: 4%;
   font-size: 1.4rem;
}
.ticket-form p{
    padding: 2% 0;
}
@media(max-width:950px){
    .ticket-container{
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px){
    .ticket-container{
        grid-template-columns: 1fr;
    }
    .ticket-main{
        padding: 5% ;
    }
    .ticket-form{
        max-width: none;
    }
}


 .join-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
  }

  .join-left {
    background-color: var(--voiletColor);
    color: white;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
  }

  .join-left h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .join-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .join-right {
    flex: 1;
    min-width: 300px;
    padding: 30px;
  }

  .join-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .join-button {
    flex: 1;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
  }

  .btn-organizer {
    background-color: var(--orangeColor);
    color: var(--lightViolet);
  }

  .btn-influencer {
    background-color: white;
    border: 2px solid black;
  }

  .join-form-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }

  .join-form-textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
    height: 80px;
  }

  .event-type-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
  }

  .event-type-option {
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .event-type-option input {
    margin-right: 6px;
  }

  @media (max-width: 768px) {
    .join-container {
      flex-direction: column;
      padding: 10px;
    }

    .join-left,
    .join-right {
      width: 100%;
    }

    .join-button-group {
      flex-direction: column;
    }
  }



  





@media(max-width:930px) {
    .blog-detail-container{
        margin: 2% ;
    }
    .blog-big-image{
        height: auto;
    }
    .blogs-d{
        flex-direction: column;

    }
    .the-blogs, .blog-side{
        max-width: none;
    }
    header {
        border-bottom: solid 1px rgba(101, 100, 100, 0.5)
    }

    .navLinks {
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        flex-direction: column;
        background-image: linear-gradient(to right, #a517ba, #522a83);
        width: 100%;
        height: 100vh;
        z-index: 100;
        animation: slideIn 0.4s;
    }

    @keyframes slideIn {
        0% {
            transform: translate(-10px);
        }
    }

    .remove-navbar {
        display: block;
    }

    .navLinks a {
        font-size: 1.2rem;
    }

    .navLinks li {
        padding: 1%;
    }

    .navLinks.showNavLinks {
        display: flex;
    }

    .menu-icon {
        display: block;

    }

    .logo a {
        font-size: 2rem;
    }

    nav form {
        padding-right: 5%;
    }

    .about-us-container {
        flex-direction: column;
    }
    .about-us-container video{
        max-width: none;
    }

    .about-image,
    .about-us-content {
        max-width: none;
    }

    .paymentForm {
        flex-direction: column;
        padding: 1px;

    }

    .paymentForm form {
        box-shadow: none;
    }

    .pay-img {
        display: none;

    }
    .blog-containers{
        grid-template-columns: 1fr 1fr;
    }

}

/* media queries  */
@media (max-width:750px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    nav {
        flex-direction: column;
    }

    nav form input {
        max-width: none;
    }

    .award,
    .category,
    .nominees,
    .contact-details {
        max-width: none;
    }

    .award img,
    .category img,
    .nominees img {
        height: auto;
    }

    .voting-form-section {
        padding: 0;
    }

    .ongoin-event h2 {
        font-size: 1.2rem;
    }

    .input-container {
        flex-direction: column;
    }

    .nominee-information-section {
        padding: 5%;
    }

    .contact-us-section {
        flex-wrap: wrap;
    }

    .nominees-result-section {
        padding: 2%;
    }

    .banner-img {
        display: none;
    }

    .form {
        flex-direction: column;
    }

    .nomination-forms {
        margin: 0;
    }
    .about-us-content h2{
        font-size: 2rem;
    }
    .how-it-works h2{
        font-size: 1.5rem;
    }
    .about-image img{
        height: auto;
    }
    .banners{
        padding: 0;
    }
    .banners-content{
        border-radius: 0;
    }

    .blog-containers{
        grid-template-columns: 1fr;
    }

}
@media (max-width:650px) {
    .banner-content h1 {
        font-size: 1.9rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .logo img {
        width: 120px;
    }

    .award-category-container,
    .nominees-container,
    .award-container {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5%;
    }

    .banners-content h1 {
        font-size: 1.2rem;
    }
}


