
/*
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*/

html {-webkit-text-size-adjust: 100%; text-size-adjust: 100%;}
* {padding: 0; margin: 0; font-size: 16px; box-sizing: border-box;}

body
{ 
    background-image: url("../images/Background-6.jpg");
    background-size: cover;       
    background-position: center;
    background-attachment: fixed; /* From ChatGPT */
    position: relative;
    min-height: 100vh;  /* From ChatGPT */
    overflow-x: hidden; /* From ChatGPT */
}

span, p
{
    color: white; /* text color */
    position: absolute;    /* position relative to the page */
    text-align: left;
    font-family: "Playfair Display", serif; font-weight: 200;
}
/* .sideBar a:hover { background: #555; } */
.sideBar .selItem
{
    background-color: rgb(99, 98, 98); /* Highlight color */
    color: white;           /* Text color when active */
    border-radius: 4px;
}
.sideBar 
{
    display: flex; flex-direction: column;
    position: fixed; left: 0; top: 0; z-index: 10; background: #333;  /* Last 2 From ChatGPT */
}
.menu-btn 
{
    display: none;
    position: fixed;
    top: 10px;
    height: 45px;
    left: 10px;
    z-index: 10;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

/* From here All From ChatGPT */
.sideBar a 
    {
    display: block;
    color: white;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    width: 99%;
    }
.sideBar a:hover { background-color: #555; }

.main-container 
    {
    position: relative;
    margin-top: 10px;
    height: auto; 
    display: grid;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    }
.box-Left 
    {
    background: #8a017e;
    color: white;
    position: relative;
    }

.box-Right { position: relative; }
ul { font-family: "Playfair Display", serif; font-weight: 200; }
ul li { list-style: none; font-style: italic;}
#welcomeGS .leftData, .rightData { font-size: 1.5rem; }
.leftData li, .rightData li, #welcomeGS li { font-size: 1.2rem; line-height: 1.6; }
p { font-style: italic; }
.img-Main { display: block; height: auto; max-width: 100%; }

/* XXXXXXXXXXXX  For Page index.html XXXXXXXXXXXX */

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 460px) 
    {
    .sideBar 
    { display: none; position: fixed; background: #333; top: 65px; left: 4%; width: 45%;
      max-width: 350px; z-index: 5; flex-direction: column; box-shadow: 0 5px 15px
      rgba(0, 0, 0, 0.4); border-radius: 5px; overflow: hidden; 
    }
    .sideBar.show { display: flex; }
    .sideBar a { width: 100%; padding: 12px 15px; font-size: 1rem; text-align: left; }
    .menu-btn { display: block; }
    .main-container { width: 95%; margin-left: 10px; grid-template-rows: 1.19fr 0.81fr; }
    .heads-All { display: flex; align-items: center; margin-top: 20px;}
    .heads-All img { width: 35px; margin-right: 10px; }
    .box-Left, .box-Right { padding-left: 16px; padding-right: 16px; }
    .box-Left {padding-top: 50px; padding-bottom: 25px;}
    .box-Right {padding-top: 15px; padding-bottom: 15px;}
    #welcomeGS, .leftData, .rightData { font-size: 1.2rem; }
    #welcomeGS li, .leftData li, .rightData li { margin-top: 5px; font-size: 0.95rem; line-height: 1.35rem; }
    }

/* =========================================================
   MOBILE DEVICES
   Up to 767px
   ========================================================= */

@media(min-width: 461px) and (max-width: 767px)
 {

    /* Hamburger menu */

    .menu-btn {
        display: block;
    }

    .sideBar {
        display: none;
        position: fixed;
        background: #333;
        top: 65px;
        left: 4%;
        width: 90%;
        max-width: 350px;
        min-height: auto;
        z-index: 999;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        border-radius: 5px;
        overflow: hidden;
    }

    .sideBar.show {
        display: flex;
    }

    .sideBar a {
        width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
        text-align: left;
    }


    /* Main content */

    .main-container {
        display: flex;
        flex-direction: column;
        width: 94%;
        max-width: 600px;
        margin: 75px auto 30px auto;
        min-height: auto;
    }


    /* Left section */

    .box-Left {
        width: 100%;
        padding: 25px 20px 30px 20px;
    }


    /* Right section */

    .box-Right {
        width: 100%;
        padding: 25px 20px 30px 20px;
        background: white;
    }


    /* Text */

    #welcomeGS,
    .leftData,
    .rightData {
        position: static;
        margin: 0 0 25px 0;
        max-width: 100%;
    }

    #welcomeGS {
        font-size: 1.35rem;
    }

    .leftData,
    .rightData {
        font-size: 1.35rem;
    }

    #welcomeGS li,
    .leftData li,
    .rightData li {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 100%;
    }


    /* Images */

    .img-Main {
        position: static;
        width: auto;
        max-width: 120px;
        height: auto;
        margin: 10px auto 15px auto;
    }

    #img-Mission,
    #img-Vision,
    #img-why-Choose {
        position: static;
        width: 90px;
        max-width: 25%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}




/* =========================================================
   TABLETS
   768px - 991px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .sideBar {
        width: 22%;
        height: 100vh;
    }

    .sideBar a {
        font-size: 1.1rem;
    }

    .main-container {
        width: 74%;
        margin-left: 24%;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }

    .box-Left,
    .box-Right {
        width: 100%;
        padding: 30px;
    }

    .img-Main {
        width: 100px;
        height: auto;
        margin: 15px auto;
    }

    #img-Mission,
    #img-Vision,
    #img-why-Choose {
        position: static;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        position: static;
        margin: 0 0 25px 0;
        max-width: 100%;
    }

    #welcomeGS {
        font-size: 1.7rem;
    }

    .leftData,
    .rightData {
        font-size: 1.7rem;
    }

    #welcomeGS li,
    .leftData li,
    .rightData li {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}


/* =========================================================
   LAPTOP
   992px - 1199px
   ========================================================= */


@media (min-width: 992px) and (max-width: 1199px) {

    .sideBar {
        width: 18%;
        height: 100vh;
    }

    .sideBar a {
        font-size: 1.1rem;
    }

    .main-container {
        width: 78%;
        margin-left: 20%;
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .box-Left,
    .box-Right {
        padding: 25px;
    }

    .img-Main {
        width: 80px;
        height: auto;
    }

    #img-Mission,
    #img-Vision,
    #img-why-Choose {
        position: static;
        margin: 10px auto;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        position: static;
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        font-size: 1.3rem;
    }

    #welcomeGS li,
    .leftData li,
    .rightData li {
        font-size: 1rem;
        line-height: 1.5;
    }
}



/* =========================================================
   DESKTOP
   1200px - 1399px
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {

    .sideBar {
        width: 14.2%;
        height: 100vh;
    }

    .sideBar a {
        font-size: 1.2rem;
    }

    .main-container {
        width: 83%;
        margin-left: 15.7%;
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .box-Left,
    .box-Right {
        padding: 30px;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        position: static;
        margin: 0 0 25px 0;
        max-width: 100%;
    }

    .img-Main {
        width: 90px;
        height: auto;
        margin: 10px auto;
    }

    #img-Mission,
    #img-Vision,
    #img-why-Choose {
        position: static;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        font-size: 1.4rem;
    }

    #welcomeGS li,
    .leftData li,
    .rightData li {
        font-size: 1.1rem;
        line-height: 1.55;
    }
}


/* =========================================================
   LARGE DESKTOP
   1400px and above
   ========================================================= */

@media (min-width: 1400px) {

    .sideBar {
        width: 14.2%;
        height: 100vh;
    }

    .sideBar a {
        font-size: 1.2rem;
    }

    .main-container {
        width: 82.8%;
        margin-left: 15.7%;
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .box-Left,
    .box-Right {
        padding: 30px;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        position: static;
        margin: 0 0 25px 0;
        max-width: 100%;
    }

    .img-Main {
        width: 100px;
        height: auto;
        margin: 10px auto;
    }

    #img-Mission,
    #img-Vision,
    #img-why-Choose {
        position: static;
    }

    #welcomeGS,
    .leftData,
    .rightData {
        font-size: 1.5rem;
    }

    #welcomeGS li,
    .leftData li,
    .rightData li {
        font-size: 1.2rem;
        line-height: 1.55;
    }
}

