/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Quicksand:wght@300..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    min-height: 100vh;
    position:relative;
    color: #fff;
}
.containerdiv{
    display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      width:100%;
}
a{
    text-decoration: none;
}
.container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.register-form {
    display: flex;
    flex-direction: column;
}
#wf-message-label{
    display:none;
}

.register-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 1px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group input::placeholder {
    color: #ddd;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff512f, #dd2476);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    background: linear-gradient(135deg, #dd2476, #ff512f);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.inactbutton{
    padding: 12px;
    border: none;
    border-radius: 8px;
    background:  #ff512f;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*alertbox*/

.alert-box {
      display:none;
      background-color: #000;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      max-width: 90%;
      width: 400px;
      min-height:100px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .alert-box button {
      background-color: #ff3333;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      margin-top:25px;
    }

    .alert-box button:hover {
      background-color: #ff1a1a;
    }
.logindiv{
    text-align: center;
        margin-top:15px;
}
.spantext{
text-align: center;
}
.logintext{
    color:#fa8eb0;
}
.forgottext{
    color:#f0ba8b;
}
.logintext: hover{
    color:#ff1a1a;
}

.coursep{
    font-size:0.9rem;
    margin-bottom:2%;
}


@media (max-width: 480px) {
    .coursep{
        font-size:0.8rem;
        margin-bottom:3%;
    }
    .container {
        padding: 20px;
    }

    button {
        font-size: 14px;
    }
    .alert-box {
    width:300px;
    }
}

.courseimg{
    width:100%;
    height:60%;
}

/*login css*/

header {
background: linear-gradient(90deg, #4a00e0, #8e2de2);
color: white;
padding: 10px 0;
position: sticky;
top: 0;
z-index: 1000;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}

.menu {
display: flex;
gap: 20px;
justify-content: flex-end;
flex-grow: 1;
}

.menu a {
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s;
}

.menu a:hover {
background-color: rgba(255, 255, 255, 0.2);
}

.toggler {
display: none;
font-size: 24px;
cursor: pointer;
}

.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1.5fr));
gap: 20px;
padding: 40px 20px;
margin: 0 auto;
max-width: 1200px;
}
main{
    text-align: center;
}
.grid-item {
min-height:300px;
background-color: #000;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*footer {
background: linear-gradient(90deg, #8e2de2, #4a00e0);
color: white;
text-align: center;
padding: 10px 0;
margin-top: 20px;
position: relative;
bottom: 0;
}*/


/*footer css*/

.footer {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom:0px;
}

.about-us {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-us .logo {
  max-width: 100px;
  margin-bottom: 15px;
}

.navlogo{
    height: 80px; /* Increased size */
    margin-right: 20px;
}

.about-us h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-us p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-button {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background: transparent;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navlogo{
    height: 60px; /* Increased size */
}

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us {
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-menu {
    justify-content: center;
  }
}



/*video banner*/

.video-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .video-banner video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .video-banner .content {
            font-family: "Quicksand", sans-serif;
            position: absolute;
            bottom: 20%;
            left: 5%;
            z-index: 2;
            text-align: left;
            color: #fff;
        }

        .video-banner h1 {
            font-size: 3rem;
            margin: 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            font-weight: 700;
        }

        .video-banner p {
           font-family: "Quicksand", sans-serif;
            font-size: 1.5rem;
            margin-top: 0.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        @media (max-width: 768px) {
            .video-banner h1 {
                font-size: 1.8rem;
            }

            .video-banner p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .video-banner h1 {
                font-size: 1.5rem;
            }

            .video-banner p {
                font-size: 1rem;
            }
        }













@media (max-width: 768px) {
.menu {
display: none;
flex-direction: column;
background: linear-gradient(90deg, #4a00e0, #8e2de2);
position: absolute;
top: 50px;
right: 0;
width: 100%;
padding: 20px 0;
}

.menu.show {
display: flex;
}

.toggler {
display: block;
color: white;
}
}

/*gallery css*/

.banner-container {
            position: relative;
            width: 100%;
            max-height: 400px;
            overflow: hidden;
        }

        .banner-container img {
            width: 100%;
            height: auto;
        }

/*download css*/
.maincontainer{
    text-align: center;
}
.inactive{
    background-color:lightblue;
}
.subjectdiv
{
margin: 10px;
    background-color: white;
    min-width: 250px;
    height: 50px;
    border-radius: 50px;
    font-family: "Quicksand", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #001;
     font-size:0.7rem;
     position: relative;
     text-transform: capitalize;
}
.subjectdiv:hover{
    background-color:#f0e2e1;
}
.lockimg{
    width:25px;
    height:25px;
    position:absolute;
    right:0;
}

@media (max-width: 450px) {
.subjectdiv{
    font-size:0.5rem;
    vertical-align:centre;
}
.chh2{
    font-size:0.7rem;
}
}

.Selectioncontainer {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: linear-gradient(145deg, #ffffff, #e6e6e6);
            border-radius: 15px;
            box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(255, 255, 255, 0.7);
            overflow: hidden;
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(255, 255, 255, 0.8);
        }
        .card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid #fff;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
        .card h3 {
            font-size: 1.5em;
            margin: 10px 0;
            color: #333;
        }
        .card p {
            font-size: 1em;
            color: #555;
        }



.card2 {
            background:transparent;
            border-radius: 15px;
            box-shadow: -4px -4px 8px rgba(255, 255, 255, 0.2);
            overflow: hidden;
            text-align: center;
            padding: 5px 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card2 img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid #fff;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
        .card2 h3 {
            font-size: 1.5em;
            margin: 10px 0;
            color: #333;
        }
        .card2 p {
            font-size: 1em;
            color: #555;
        }














      .button-green {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745; /* Green color */
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button-green:hover {
    background-color: #218838; /* Darker green on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.12);
}

/*socialicons*/
.social-icons {
    margin-top:5px;
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
        }
        .social-icons a {
            text-decoration: none;
        }
        .social-icons img {
            width: 25px;
            height: 25px;
            transition: transform 0.3s ease;
        }
 .banner {
            position: relative;
            width: 100%;
        }

        .desktop-image {
            display: block;
            width: 100%;
            height: auto;
        }

        .mobile-image {
            display: none;
            width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .desktop-image {
                display: none;
            }
            .mobile-image {
                display: block;
            }
        }
/*collabration css*/

/*.collab-section {*/
/*            display: flex;*/
/*            flex-direction: column;*/
/*            align-items: center;*/
/*            padding: 30px 15px;*/
/*            text-align: center;*/
/*            background: linear-gradient(135deg, #4e54c8, #8f94fb);*/
/*            border:1px solid white;*/
/*            color: white;*/
/*            border-radius: 10px;*/
/*            margin: 20px;*/
/*        }*/

.collab-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 20px;
    text-align: center;
background: linear-gradient(135deg, #ffb366, #ffdb99, #ffe6b3);
    border: 2px solid rgba(255, 215, 0, 0.8);
    color: #fff8e7;
    border-radius: 18px;
    margin: 25px;
    box-shadow: 0 0 25px rgba(255, 183, 0, 0.4),
                0 0 60px rgba(255, 102, 0, 0.2);
    background-image: radial-gradient(circle at top right, #ff6600 10%, transparent 40%),
                      radial-gradient(circle at bottom left, #ffcc33 10%, transparent 40%);
    animation: diyaGlow 3s infinite alternate;
}

/* ✨ Add a glowing animation to feel festive 🪔 */
@keyframes diyaGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5),
                0 0 30px rgba(255, 204, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.8),
                0 0 60px rgba(255, 102, 0, 0.5);
  }
}

/* Optional: Add emojis directly inside your HTML */


        .collab-section h1 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .collab-section p {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 600px;
            line-height: 1.6;
        }
.playimg{
    width:100px;
    height:33px;
}
        .logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .logos img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .logos img:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .collab-section h1 {
                font-size: 1.5rem;
            }

            .collab-section p {
                font-size: 0.9rem;
            }

            .logos img {
                width: 80px;
                height:80px;
            }

            .cta {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
        }

        @media (max-width: 480px) {
            .collab-section {
                padding: 20px 10px;
            }

            .logos {
                gap: 10px;
            }
        }


/* Popup Container */
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 400px;
            background: #111;
            color: #f4f4f4;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            text-align: center;
            padding: 20px;
            display: none;
            z-index: 1000;
            animation: fadeIn 0.5s ease-in-out;
        }

        .popup h2 {
            margin: 0;
            font-size: 1.8rem;
            color: #8f94fb;
        }

        .popup p {
            margin: 15px 0;
            font-size: 1rem;
            color: #ccc;
        }

        .popup button {
            background: #8f94fb;
            color: #111;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            z-index: 999;
        }

        /* Fade-in Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        @media (max-width: 480px) {
            .popup h2 {
                font-size: 1.5rem;
            }
            .popup p {
                font-size: 0.9rem;
            }
        }



/*blog css*/

.bloggrid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1.5fr));
gap: 20px;
padding: 40px 20px;
margin: 0 auto;
max-width: 1200px;
}
.bloggrid-item {
min-height:300px;
background-color: #000;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.bloggrid-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.bloggrid-item img {
width:300px;
height:135px;
object-fit: cover;
}

.blog-card-content {
padding: 20px;
}

.blog-card-title {
font-size: 1.5rem;
color: #fff;
margin-bottom: 10px;
}

.blog-card-description {
font-size: 1rem;
color: #fff;
line-height: 1.5;
margin-bottom: 15px;
}

.blog-card-link {
text-decoration: none;
font-weight: bold;
color: #007bff;
transition: color 0.3s ease;
}

.blog-card-link:hover {
color: #0056b3;
}

@media (max-width: 600px) {
.bloggrid-item img {
width:333px;
height: 150px;
}

.blog-card-content {
padding: 15px;
}

.blog-card-title {
font-size: 1.25rem;
}

.blog-card-description {
font-size: 0.9rem;
}
}
@media (max-width: 400px) {
.bloggrid-item img {
    width:266px;
height: 120px;
}
}