body{
    height:70%;
    margin: 0px;  
}

/* header for all pages */
.header{
    background-color: aquamarine;
    color: darkblue;
    padding: 2px;
    margin: auto;
}

.list1{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.list1 li{
    display: inline;
}

.list1 a{
    text-decoration: none;
    font-weight: bold;
}

/* footer for all pages */
.footer{
    background-color: aquamarine;
    color: darkblue;
    padding: 2px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items:flex-start;

}

.footerl li{
    display: block;
    text-align: center;
}

.footerl a{
    text-decoration: none;
}

.footerc{
    text-align: center;
}

.footerc p{
    color: black;
    font-weight: bold;
}

.footerc li{
    display: inline;
}

.footerc a{
    text-decoration: none;

}

.footerr li{
    display: inline;
    color:black;
    font-weight: bold;
}

/* Home page */
.grid-container{
    display: grid;
    grid-template-rows: 1.5fr 1.5fr 1.5fr;
    grid-template-columns: 1.5fr 1.5fr 1.5fr;
    grid-gap: 20px;
    padding: 5px;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    text-decoration: none;
    width: 1000px;
    height: 700px;
}

.grid-container a{
    text-decoration: none;

}

.item {
    border: 2px solid grey;
    box-shadow: 2px 2px 3px grey;
    text-align: center;
    overflow: hidden; 
}

.item h3 {
    display: block;
    font-size: 20px;
    font-family: inherit;
    font-weight: bold;
    color: purple;
    margin: 0;
    padding: 0;
}

.item p{
    color: black;
    text-decoration: bold ;
}

.item img {
    margin: auto;
    display: block;
    height: auto;
    width: 100%;
    max-height: 150px;
    object-fit: cover; 
}

.item .button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: purple;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.item .button:hover {
    background-color: darkorchid;
    cursor: pointer;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    background-color: #f0f8ff;
}

/* This is for courses  pages*/
.container{height: 800px;
    width: 80%;
    display:grid;
    grid-template-areas:
        "header header header"
        "list2 list3 list4"
        "list2 list5 list6"
        "footer footer footer";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-gap:10px;
    align-content: space-between;
    margin: auto;
    padding:10px;}

.list{
    background-color: lightblue;
    border:1px solid grey;
    box-shadow: 3px 3px 7px grey;
    text-align: center;
}

.list1{
    grid-area: header;
}

.list2{
    grid-area:list2;
}

.list3{
    grid-area:list3;
}

.list4{
    grid-area:list4;
}

.list5{
    grid-area:list5;
}

.list6{
    grid-area:list6;
}

.list7{
    grid-area:footer;
}


.list .button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: purple;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.list .button:hover {
    background-color: darkorchid;
    cursor: pointer;
}

.list:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    background-color: rgb(208, 230, 238) ;
}

/* Fee page */
.course-page{
    background-image: url(../images/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
}

.welcome {
    color: #e6e9ec;
    text-align:center;
    padding: 30px;
    background-color: rgba(8, 0, 0, 0.705);
}
.fees {
    font-size: 1.3em;
}


.course-table-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 ;   
}

/* Table Container */
.course-table-wrapper .table-container {
    display: flex;
    flex-direction: column;
    width: 60%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px 30px;
    background-color: #f0f8ff;
    border-radius: 10px;
}

/* Header Row */
.course-table-wrapper .table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #8bc34a;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

/* Data Rows */
.course-table-wrapper .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    padding: 0px 0;
}

/* Row Background Colors */
.course-table-wrapper .row1 {
    background-color: #a7f3d0; 
}

.course-table-wrapper .row2 {
    background-color: #fecaca; 
}

.course-table-wrapper .row3 {
    background-color: #d1fae5; 
}

.course-table-wrapper .row4 {
    background-color: #bfdbfe; 
}

.course-table-wrapper .row5 {
    background-color: #eca6d4; 
}

.course-table-wrapper .row6 {
    background-color: #f0c4cb; 
}


/* Cell Styles */
.course-table-wrapper .cell {
    padding: 10px;
}

.fees{
    text-align: center;
}


/* Pictures Page*/
.pictures-section {
    padding: 30px;
    background-color: #f9f9f9;
}

/* Title styling */
.pictures-title {
    font-size: 3rem;
    color: #0a0a76;
    margin-bottom: 20px;
    font-family: "Lucida Calligraphy", cursive;
    text-align: center;
}


/* Container styling */
.pictures-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; 
    margin: 0 auto;
    max-width: 1300px;
    padding: 20px;
}

.pictures-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; 
    margin: 0 auto;
    max-width: 1300px; 
    padding: 30px;
}

/* Image styling */
.pictures-container img {
    width: 260px; 
    height: 260px;
    border-radius: 30px; 
    object-fit: cover; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.pictures-container1 img {
    width: 260px; 
    height: 260px;
    border-radius: 30px; 
    object-fit: cover; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.pictures-container .pictures-container1 img:hover {
    box-shadow: 0 12px 17px rgba(0, 0, 0, 0.3); 
}

/* Contact Page */
.contact h1{
    font-size: 3rem;
    color: #4caf50;
    text-align: center;
}
.contact-page {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

  /* Contact Us Heading */
.contact-page h1 {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 20px;
}

  /* Skills Section */
.skills-section {
    margin-bottom: 30px;
}

.skills-section h2 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.skills-section p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.skills-section h3 {
    font-size: 1.2rem;
    color: #333;
    text-align: left;
    margin-bottom: 10px;
}

.skill-item {
    background-color: #f9f9f9; 
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 1rem;
    color: #333;
}

  /* Highlight Skill Titles */
.skill-item strong {
    color: #4caf50;
}


.contact-section h2 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
}


