:root {
    --first-color: #004AAD;
    --second-color: #104573;
    --third-color: #F2BF27;
    --fourth-color: #F2AE2E;
    --White-color2: #F2F2F2;
    --white-color: #fff;
    --white-color3: #f7faff;
    --text-color: #555;
    --text-grey: #999;
    --black-color: #2d2e2e;
    --black-shades1: #3B3C36;
    --Primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Quicksand', sans-serif;
    --Third-font: 'Merriweather', sans-serif;
}

/**********************************************************/
/*                   image and header                    */
/********************************************************/
.new_row{
    display: flex;    
}

.new_row div{
    display: flex;
        align-items: center;
}

.name_school {
    margin-right: 30px; 
    font-size: 70px;
   font-weight: 900;
   color: var(--first-color);
}

.name_image{
    height: 200px;
    width: 200px;
}
.admission_Proceess_Container{
    margin-top: 30px;
    padding: 10px;
    background-color: var(--first-color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.admission_process{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 700;
    margin-left: 20px;
}

.custom-list {
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin-left: 1.5em; /* Add some left margin for better indentation */
  }

  /* Style the list items with custom icons */
  .custom-list li {
    margin-bottom: 1em; /* Add some bottom margin for spacing between items */
  }

  .custom-list li::before {
    content: "\2606"; /* Unicode character for a bullet point */
    color: var(--first-color); /* Change the color to your preference */
    font-size: 1.2em; /* Adjust the font size as needed */
    margin-right: 0.5em; /* Add some space between the bullet point and text */
    display: inline-block; /* Align the bullet point with the text */
    vertical-align: middle; /* Align the bullet point with the text */
  }


/**********************************************************/
/*                    Gallery bar                           */
/********************************************************/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
    padding: 20px;
}

.gallery figure {
    position: relative;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.gallery figure:hover img {
    transform: scale(1.1);
}

.gallery figure:hover figcaption {
    opacity: 1;
}


/**********************************************************/
/*                    fee structur                       */
/********************************************************/


.fee_structure {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.fee_structure th, td {
    border: 1px solid var(--white-color);
    padding: 12px;
    text-align: center;
}

.fee_structure th {
    background-color: #333;
    color: var(--white-color);
}

.fee_structure tr:hover {
    background-color: var(--first-color); /* Blue color on hover */
    color: var(--white-color);
}

.fee_structue_mobile{
    border-collapse: collapse;
    width: 100%;
   
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;

}


.fee_structue_mobile th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.fee_structue_mobile th {
    background-color: #f2f2f2;
}

.fee_structue_mobile ul {
    list-style-type: none;
    padding: 0;
}

.fee_structue_mobile li {
    margin-bottom: 10px;
}



/********************************************************/
/*                     Media Queries                   */
/******************************************************/


@media (max-width: 576px) {
  .name_school{
    font-size: 30px;
  }
  .name_image{
    height: 50px;
    width: 50px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;

}
.fee_structure{
    display: none;
}
.fee_structue_mobile{

    display: block;
}



}

@media (max-width: 768px) {
    .name_school{
        font-size: 30px;
      }
      .name_image{
        height: 100px;
        width: 100px;
    }
    .fee_structure{
        display: none;
    }

    .fee_structue_mobile{

        display: block;
    }
    
    
}

@media (max-width: 992px) {
    
   
}

@media (min-width: 1200px) {
    
}

@media (min-width: 1400px) {
    
}
