 /* header section starts */




/* scroll bar css starts */


::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
  }
  
  /* Customize the scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px; /* Rounded corners for the thumb */
  }

  /* Customize the scrollbar track */
  ::-webkit-scrollbar-track {
    background-color: var(--secondry-color); /* Track color */
  }
  
:root{
    --primary-color: #fff;
    --secondry-color: #212121;
}
.dark-theme{
     --primary-color: #000106;
    --secondry-color: #fff;
}
body{
    background-color: var(--primary-color);
    -webkit-user-select: none; /* Disable text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Reset default margin and padding for section */

/* pop up css starts  */




#icon{
    width: 40px;
    cursor: pointer;
}

/* side bar section starts  */



.container {
    display: flex;
  }
  
  .menu-icon {
    cursor: pointer;
    padding: 10px;
    color: white;
    
  }
  
  .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);
    /* background-image:linear-gradient(to bottom, #ff9933, #ffffff, #128807); */
    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;
  }
  



/* Style the container within the section */

.max-container {
    /* max-width: 1080px; */
    /* background-color: var(--primary-color); */
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.left-part {
    margin-top: 1.75rem; /* Equivalent to 28px */
    flex: 1;
    max-width: 600px;
    margin-left: 120px;
}

/* Style the title */
.title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 50px;
    color: var(--secondry-color);
    line-height: 1.2;
    
}

/* Style the highlighted text */
.highlight {
    color: #FFA500; /* Orange color */
}

/* Style the description */
.description {
    color: #002057;
    font-size: 19px;
    line-height: normal;
    margin-top: 20px;
    line-height: 30px;
    color: var(--secondry-color);
    /* text-shadow: 0px 0px 1px blue; */
}

/* Style the right part of the section */
.right-part {
    margin-top: 20px;
    flex: 1;
}


.image {
    width: 500px;
    height: 350px;
    margin-top: 40px;
}
.other-section1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Equivalent to lg:grid-cols-4 */
    gap: 1rem; /* Equivalent to gap-4 */
    margin-top: 60px; 
    margin-left: 20px;
    margin-right: 20px;
    /* color: var(--primary-color); */
    /* Equivalent to my-14 */
}


.box1 {
    margin-left: 1rem; 
    margin-right: 1rem;

    max-width: 250px;
    box-shadow: 0 0 10px var(--secondry-color);
    border-radius: 5px;
    padding: 10px;    
    /* background-color: yellow; */
}
:hover.box1-hover{
    border: 2px solid blue;
    transition: 0.5s;
    scale: 1.1;
  }
/* Style the box content */
.box2{
    margin-left: 1rem; 
    margin-right: 1rem;

    max-width: 250px;
    box-shadow: 0 0 10px var(--secondry-color);
    border-radius: 5px;  
    padding: 10px;   
    /* background-color: #FFD700;  */
}
:hover.box2-hover{
    border: 2px solid blue;
    transition: 0.5s;
    scale: 1.1;
  }
.box3{
    margin-left: 1rem; 
    margin-right: 1rem;

    max-width: 250px;
    box-shadow: 0 0 10px var(--secondry-color);
    border-radius: 5px; 
    padding: 10px;    
}
:hover.box3-hover{
    border: 2px solid blue;
    transition: 0.5s;
    scale: 1.1;
  }
.box4{
    margin-left: 1rem; 
    margin-right: 1rem;

    max-width: 250px;
    box-shadow: 0 0 10px var(--secondry-color);
    border-radius: 5px; 
    padding: 10px;    
}
:hover.box4-hover{
    border: 2px solid blue;
    transition: 0.5s;
    scale: 1.1;
  }

/* Style text part within the box content */
.text-part {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Style box titles */
.box-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.375rem; /* Equivalent to text-[1.375rem] */
    color: #0066cc; /* Equivalent to text-blue-600 */
    line-height: 1.2; /* Equivalent to leading-[1.2] */
}

/* Style box descriptions */
.box-description {
    font-family: 'Mullish', sans-serif;
    font-size: 20px; /* Equivalent to text-[20px] */
    color:var(--secondry-color); /* Equivalent to text-#002057 */
    margin-top: 1rem; /* Equivalent to mt-6 */

}

.helper-content{
    display: none;
}
.helper {
    display: none;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: center;
    margin-left: 35%;
    margin-bottom: 50px;
}
:hover.helper-hover{
    border: 2px solid blue;
    transition: 0.5s;
    scale: 1.1;
}


.helper1 {
    color: #ff9900;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-top: 20px;
}
.helper2{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-top: 10px;
    padding: 4px;
    color: blue;
}

.text-2xl {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    
}

.helper-button {
    width: 50%;
    background-color: #0073e6;
    transition: background-color 0.2s ease-in-out;
    color: #ff9900;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 20px;
    
}

.helper-button:hover {
    background-color: #0059b3;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring:focus {
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.5);
}

.focus\:ring-blue-200:focus {
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.5);
}


/* contribution section starts */

/* Style for the video container */
.video-container {
    position: relative;
  }

  /* Style for the video */
  video {
    width: 90%;
    height: auto;
    margin: 0rem 2rem 2rem 4rem;
  }

  /* Style for the button */
  .overlay-button {
    position: absolute;
    top: 77%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border: 2px solid #0059b3;
    border-radius: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 19px;
  }

  .overlay-button:hover {
    background-color: #0059b3;
    transition: 0.5s;
    scale: 1.1;
  }
  /* about us section starts  */

/* .aboutus {
    width: 90%;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}


.underline1 {
    width: 80px;
    height: 1px;
    background-color: #0073e6;
    margin: auto;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.rahul, .kunal, .shubh {
    text-align: center;
    margin-bottom: 20px;
}

.fa-github, .fa-linkedin, .fa-twitter {
    font-size: 2rem;
} */



/* about us section starts */


.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* box-sizing: border-box;
    box-shadow: 0px 0px 10px yellow; */
}
/* .container:hover{
    transition: 0.5s;
    scale: 1.2;
} */


/* FAQ section starts  */

.faq-container {
    max-width: 800px;
    margin: 20px auto;
    box-sizing: border-box;
    
    
}
#faq{
    text-align: center;
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 6rem;
    color: var(--secondry-color);
}

.faq-item {
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
:hover.faq-item {
    border: 2px solid blue;
    transition: 0.5s;
    scale: 1.1;
  }
.faq-item:hover {
    background-color: var(--primary-color);
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-style: oblique;
}

.answer {
    display: none;
    margin-top: 10px;
    font-size: 20px;
    font-style: oblique;
}
.faq-papers a{
    font-weight: bolder;
    text-decoration: none;
    
}
.question p{
    color:var(--secondry-color);
}
.answer p{
    color: var(--secondry-color);
}
/* FAq section ends  */

.heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: var(--secondry-color);
    margin-top: 20px;
}

.sub-heading {
    font-weight: bold;
    color: #FFA500;
    font-size: 24px;
}

/* .divider {
    width: 250px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 20px;
} */

.container .team-members {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(to right, lightskyblue, #FF69B4, orange);
    box-shadow: 0px 0px 10px black;
    padding: 20px;

}

.team-member {
    text-align: center;
    margin-bottom: 20px;

}


.member-image {
    width: 200px;
    height: 200px;
    margin-top: 16px;

}

.member-name {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: oldlace;
    margin-top: 10px;
    text-shadow: 0px 0px 10px black;
}

.member-role {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: navy;
    text-shadow: 0px 0px 10px yellow;
}

.member-education {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-shadow: 0px 0px 10px yellow;
}

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

.social-link {
    font-size: 30px;
    margin-left: 5px;
    color: #000;
}

:hover.social-link{
    
    font-size:36px;
    transition: 0.5s;
}

/*Kunals Links for team section   */
.flex-center {
    display: flex;
    justify-content: center;
     align-items: center;
  } 
.social-linkss {
    display: flex;
  }
  
  .social-btnn {
    cursor: pointer;
    height: 50px;
    width: 50px;
    font-family: 'Titillium Web', sans-seriff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    background: white;
    margin: 5px;
    transition: 1s;
  }
  
  .social-btnn span {
    width: 0px;
    overflow: hidden;
    transition: 1s;
    text-align: center;
  }
  
  .social-btnn:hover {
    width: 150px;
    border-radius: 5px;
  }
  
  .social-btnn:hover span {
    padding: 2px;
    width: max-content;
  }
  
  #portfolio svg {
    fill: #1da1f2;
  }
  
  #linkedin svg {
    fill: #0e76a8;
  }
  
  #github {
    fill: #333;
  }

  #fixunderline{
    text-decoration: none;
  }
/*ended links   */
/* slideshow css section starts */

.slide-container{
    background: linear-gradient(to right, #bb33ff,   #00ffff);
    height: 430px;
    /* margin-left: 2rem;
    margin-right: 2rem; */
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px black;
    /* margin-top: 5rem; */
}

.slider-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: var(--secondry-color);
    margin-top: 50px;
    
}

.slider-sub-heading {
    font-weight: bold;
    color: #FFA500;
    font-size: 30px;
}
.slideshow-container {
    display: flex;
   overflow: hidden;
    width: 90%;
    /* max-width: 800px; */
    margin: 0 auto;
    margin-top: 0rem;
    gap: 20px;
    margin-bottom: 2rem;
    /* background-color: lightskyblue; */
    
}
.slideshow-container img{
    /* margin-top: 2rem; */
    /* margin-bottom: 2rem; */
    height: 300px;
    width: full;
   
}

.slide-container video{
    height: 300px;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.slide {
    flex: 0 0 33.33%; /* Three images visible at a time */
    transition: transform 0.5s ease;
    width: 250px;
    height: 360px;
    background-color: black;
    margin-top: 2rem;
}
.slide h3{
    font-size: 18px;
    text-align: center;
    margin-top: 0px;
    color: white;
}
/* .slide img{
    gap: 20px;
} */
 img {
    width: 100%;
    height: auto;
    /* gap: 20px; */
} 

.nav {
    margin-top: 20px;
}

/* Add styles for dots */
.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

.goodies-content{
    text-align: center;
}
.goodies-content p{
    font-size: 22px;
    font-weight: 800;
    color: blue;
}
.goodies-content button{
    font-size: 16px;
    background-color: orange;
    font-weight: bold;
    padding: 5px;
}
.goodies-content button:hover{
   background-color: cyan;
}
/* contact section starts */

.feedback h1{
    margin-top: 50px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color:blue;
}
.contact-line{
    width: 150px;
    height: 2px;
    background-color: #FFA500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 44%;
}
