@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    

}

html,body{
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    overflow-x: hidden; 
}





/* ########   utility class ########## */

.obj-width{
    max-width: 1200px;
    margin: auto;
}

/* ############  NAVBAR STYLING ######## */




.navbar{
    height: 50vh;
    position: relative;
    /* background-color: rgb(50, 47, 47); */
    background-image: url('./BG IMAGES/pexels-eberhardgross-1367192.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 

}



.header{

    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;

    
}

.nav-link {
    display: inline-block;
    position: relative;

  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }


.nav-link {
    color: #ffffff; 
    text-decoration: none; 
    font-weight: 600;
}

/* #############    DROP DOWN MENU   ############# */




.nav-item {
    position: relative; 
}

.dropdown-menu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0;
    background-color: #ffffff; 
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    border-radius: 5px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    width: 150px;
    z-index: 1000;

}

.dropdown-menu li {
    margin: 0; 
}

.dropdown-menu a {
    display: block; 
    padding: 10px; 
    color: rgb(0, 0, 0); 
    text-decoration: none; 
    font-size: 0.8rem;
    font-weight: 600; 
}

.dropdown-menu a:hover {
    background-color: #949596; /* Change background on hover */
}

/* Show dropdown menu on hover */
.nav-item:hover .dropdown-menu {
    display: block; /* Show the dropdown menu when hovering over the nav-item */
}







/* ############################################### */



.logo img {
    width: 100px; 
    height: auto; 
    margin: 5px 20px;
}





.header-items {
    width: 30%;
    list-style-type: none;
    display: flex;
    justify-content: space-around; 
}



.navbar h1{
    color: white;
    font-size: 4rem;
    text-align: center;
    letter-spacing: 4px;
    margin-top: 10rem;
}


@media screen and (max-width: 500px){
    .search-result{
        width: 100%;
    }
    
    .logo img {
        width: 60px;
        height: auto;
        margin: 5px 20px;
    }

    .header-items{
        font-size: small;
        font-weight: 500;
        width: 300px;
    }

    .navbar h1{
        
        font-size: 1.8rem;
    }

}

.doc-header {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.doc-header h1 {
    margin: 0;
}

.doc-main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3 {
    margin-top: 20px;
}

h4 {
    margin-top: 20px;
}

pre {
    background: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    overflow-x: auto;
}

code {
    font-family: monospace;
}

.visit-link {
    color: #007bff;
    text-decoration: none;
}

.visit-link:hover {
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.section {
    margin-bottom: 20px;
}

.section ul, .section ol {
    margin: 10px 0;
}
