

/* dark mode section starts  */


:root{
    --primary-color:white;
    --secondry-color: #212121;
  }
  .dark-theme{
     --primary-color: #212121;
     --secondry-color:white;
  }
  body{
    background-color: var(--primary-color);
    -webkit-user-select: none; /* Disable text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  #icon{
    width: 40px;
    cursor: pointer;
  }




 nav {
    background-color: #333; /* Background color for the menu */
  }
  
  .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .menu li {
    flex: 1;
    text-align: center;
  }
  
  .menu li a {
    display: block;
    text-decoration: none;
    color: #fff; /* Text color for menu items */
    padding: 15px 20px; /* Adjust padding to change button size */
    transition: background-color 0.3s;
  }
  
  .menu li a:hover {
    background-color: #555; /* Background color on hover */
  }

 /* Reset default margin and padding for header */
header {
    margin: 0;
    padding: 0;
    margin-top: 7%;
}

/* Style the header with a gradient background */
.header {
    background-image: linear-gradient(to right, #4b0082, #800080, #ff69b4);
    color: #fff;
    padding: 10px 0;
}

/* Style the container within the header */
.header1 {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Style the "code crush" heading */
.header1 h2 {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #008080;
}
/* .header1 img{
    height: 100px;
    width: 100px;
} */

/* Style the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the button that toggles the dropdown */
.dropdown-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Style the dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the dropdown menu items */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown menu items on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu when the button is hovered */
.dropdown:hover .dropdown-content {
    display: block;
}

 /* Style the dropdown container */

 .dropdown {
    position: relative;
    display: inline-block;
}

/* Style the button that toggles the dropdown */
.dropdown-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Style the dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Style the dropdown menu items */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown menu items on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}


.dropdown:hover .dropdown-content {
    display: block;
}


/* side bar starts  */

.container {
    display: flex;
  }
  
  .menu-icon {
    cursor: pointer;
    padding: 10px;
    color: white;
    margin-right: 20px;
    
  }
  
  .bar {
    width: 25px;
    height: 2px;
    background-color: orange;
    margin: 4px 0;
    transition: 0.4s;
  }
  
  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: -250px;
    background-image:linear-gradient(to left, #4b0082, #800080, #ff69b4);
    overflow-x: hidden;
    transition: 0.4s;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .sidebar li {
    margin: 10px 0;
  }
  
  .sidebar a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
  }
  
  .sidebar a:hover {
    color: #007bff;
  }
  
  .sidebar.active {
    width: 250px;
    left: 0;
  }

  .close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }
  
  .close-icon:hover {
    color: #007bff;
  }
  


/* header down side starts */



.aboutus{
    /* max-width: 90%; */
    margin: 3rem 3rem 3rem 3rem;
}
.vision{
    display: flex;
    gap: 10%;
   
}
.vision-desc{
    width: 60%;
}
.vision-desc h2{
    font-size: 30px;
    font-family: bold;
    color: var(--secondry-color);
    text-align: center;
}
.vision-desc p{
    font-size: 20px;
    line-height: 30px;
    opacity: 0.7;
    color: var(--secondry-color);
}
.vision-img{
    margin-top: 2rem;
}

.our-story{
    display: flex;
    gap: 10%;
    margin-top: 4rem;
   
}
.our-story-desc{
    width: 60%;
}
.our-story-desc h2{
    font-size: 30px;
    font-family: bold;
    color: var(--secondry-color);
    text-align: center;
}
.our-story-desc p{
    font-size: 20px;
    line-height: 30px;
    opacity: 0.7;
    color: var(--secondry-color);
}
.our-story img{
    margin-top: 4rem;
}

.ppt-images img{
    height: full;
    max-width:1280px;
}


/* footer css starts */


.footer {
    /* background-color: #ccc; */
    height: 230px;
    background-color: slategray;
}

.footer1 {
    display: flex;
    justify-content: space-around;
}

.footer2 {
    width: 300px;
}

.footer2 h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin-top: 30px;
    color: #FFA500;
}
.footer2 p{
    font-size: 17px;
    color: white;
}

.header-line {
    width: 210px;
    height: 2px;
    background-color: #FFA500;
   
}

/* .text-white {
    color: #fff;
} */

.footer-quotes {
    width: 150px;
    font-weight: bold;
    color: #fff;
    margin-top: 5px;
}

.copyright {
    width: 92%;
    height: 0.5px;
    background-color: #fff;
    margin: auto;
    margin-top: 8px;
}

.copyright-text {
    font-weight: bold;
    color: #fff;
    margin-left: 12px;
    margin-top: 5px;
}

.quick-links h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #FFA500;
    margin-top: 35px;
}

.quick-links a {
    text-decoration: none;
    color: #fff;
    display: block;
    margin-top: 5px;
    font-size: 18px;
}