/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

/* Grids */

.grid-container-group {
   
    display: grid;
    grid-template-columns: 30% 70%;
    grid-gap: 5px;
    /*border: 5px solid green;*/
    /* background: #414e5f; */
    background-image: url('../images/bgimg.png');
    
}

.grid-child-element {
     
    margin: 10px;
    /*border: 5px solid red;*/
    width: 40%;
    background: black;
    

}




/* Banner */
.banner {
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.bannerabout {
    background-image: url('../images/arname.png'); 
    background-size: 90%;
    background-position: center;
    text-align: center;
    padding: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}


/* Responsive Menu */
.menu {
    /*background: #414e5f;*/
    background-color: transparent;
    text-align: center;
    position: relative;

}

.menu-icon {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
    padding: 15px;
}

#menu-toggle {
    display: none;
}

/* Menu List */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.menu-list li {
    padding: 15px 20px;
}

.menu-list li a {
    text-decoration: none;
    color: Black;
    font-weight: bold;
    transition: color 0.3s;
}

.menu-list li a:hover {
    color: #0078d4;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .menu-list {
        display: none;
        flex-direction: column;
        background: #414e5f;      
        position: absolute;
        width: 100%;
        top: 50px;
        left: 0;
    }

    #menu-toggle:checked + .menu-icon + .menu-list {
        display: flex;
    }

    .menu-list li {
        text-align: center;
        width: 100%;
    }
    
    .grid-container-group {

    display: grid;
    grid-template-columns: auto;
    grid-gap: 5px;
    /*border: 5px solid green;*/
    /*background: #414e5f;*/
    background-color: transparent;
    place-items: center;

    }
    .grid-child-element {

    margin: 10px;
   /* border: 5px solid yellow; */
    width: 40%;
    background: black;
    text-align: center;

    }



}

/* Content & About */
.content {
    margin-left:40px;
    margin-right:40px;
    padding: 20px;
    text-align:justify;
    display: flex;
    flex-wrap: wrap; /* Ensures images wrap on smaller screens */
    gap: 10px; /* Adds spacing between images */
    justify-content: center; /* Centers images */
}
.content img {

    max-width: 100%; /* Makes images responsive */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: adds rounded corners */
    
}


.myinfo {
    margin-left:40px;
    margin-right:40px;
    padding: 20px;
    text-align:justify;
    display: flex;
    flex-wrap: wrap; /* Ensures images wrap on smaller screens */
    gap: 10px; /* Adds spacing between images */
    justify-content: justify; /* Centers images */
}
.myinfo img {

    max-width: 100%; /* Makes images responsive */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: adds rounded corners */

}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

 /* Logo */
.logo {
   font-size: 1.5rem;
   font-weight: bold;
   text-decoration: none;
  /* color: #e0d3cd; */
  /* text-align: center; */
  /*  width: 100%; */
  /* background: #414e5f;*/
  /* display:inline-block; */
   background-color: transparent;
   padding: 10px;
}

.logo img {
   width: 60%;      
}


