/* ---- Define the body level styles -----*/
@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;
  }

body {
    font-family: Poppins, 'Segoe UI', sans-serif;
    background: whitesmoke;
    text-align: center;
}

a {
  text-decoration: none;
}

/* ---- Two level responsive top navbar portion -----*/
.navbar {
    /* make it stick */
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    /* set background */
    background-color: whitesmoke;
    border-bottom: 2px solid #e3e3e3;
    padding: 10px 5%;

    /* define flex */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
  list-style: none;  
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  display: inline-block;
}

.nav-menu a{
  color: #929292;
  margin: 0 20px;
  font-size: 16px;
}

.nav-menu a:hover {
  color: black;  
}

.nav-menu a.active{
    color: black;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  border-radius: 4px;
  z-index: 1000;
}

.dropdown-menu li:hover {
    background: lightgray;
}

.dropdown-menu li a {
  padding: 5px;
  float: left;
  width: 210px;
  text-align: left;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: black;
    margin: 4px auto;
}

.menu-icon {
    display: none;
}

/* Style company logo*/
.logo-image {
    display: block;
    height: 48px;
}

/* Style the login button*/
.loginbtn {
  color: white;
  background: linear-gradient(to right,#D786FF, #722CFF);
  font-weight: 600;
  padding: 0.4em 1.5em;
  border-radius: 3em;
}


/* Style the nav bar on mobile view*/
@media only screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .logo-container {
        width: 100%;
    }

    .mylogin {
        position: absolute;
        margin-top: 10px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 10px;
        background-color: #E5E5E5;
        border-radius: 5px;
    }

    .nav-menu li {          
        width: 100%;
        padding: 5px 0;
        text-align: end;
    }
    
    .nav-menu a {
        display: block;
    }

    .dropdown-menu {
        position: relative;
        background: none;        
        background: white;
    }

    .dropdown-menu li a {
        width: 90%;
        border-radius: 5px;
        font-size: 15px;
        text-align: right;
    }

    .dropdown-menu li:hover {
        background: whitesmoke;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 5%;
    }

    .menu-icon:hover .bar {
        background-color: darkcyan;
    }    
    
    .open {
        display: block;
    }
}

/* Style the nav bar logo on small mobile view*/
@media only screen and (max-width: 500px){
    .logo-image {
    width: 30%;
    }
}

/* ---- Styling the pages portion -----*/
/* Style the header*/
header{
    padding-top: calc(8px + 0.6rem);
  }
  
header h1{
    margin-top: 1%;
    font-size: 2.5rem;
    font-weight: bold;
}
  
/* Style the footer*/
footer{
    margin-top: 2%;    
    padding: 1%;
    font-size: 0.8rem;
    background-color: whitesmoke;
    border-top: 2px solid #c4c1c1;
}
  
.footerIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 1%;
}
  
.footerImg {
    font-size: 30px;
    color: rgb(106, 105, 105);
}

.info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
    gap:30px
}

.infoItem {
    font-size: 1rem;
}
/*  
.infoIcon{
    height: 20px;
    width: 25px;
    margin-right: 1%;
}
  
.infoText {
    margin-right: 2%;
    font-size: 0.8rem;
}
  
.info a {
    font-size: 0.8rem;
}
*/
/* Style the search bar */
.search-wrapper{
    display: flex;
    width: min(600px, 100%);
    justify-content: left;
    border: 1px solid lightgray;
    border-radius: 25px;
    padding: 10px;
    background: white;
}

.searchBar {
    border: none;
    font-size: 14px;
    margin-left: 10px;
    width: min(550px, 100%)
}

.searchBar:focus {
    outline: none;

}

/* Create all the flex containers*/
.bannerContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../chart/banner.png");
}

.productContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.productContainer2{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(to right,#d99ff7, lightskyblue);
}

.alternateContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.alternateContainer:nth-child(odd) {
  flex-direction: row-reverse;
}

/* Style one item flex box*/
.oneItem{  
    width: 80%;
    max-width: 1340px;
    box-sizing: border-box;
    height: auto;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 2%;
    background-color: white;
    margin-bottom: 2%;
    text-align: left;
}

.oneItem2 {
    width: min(1100px, 90%);
    box-sizing: border-box;
    height: auto;
    padding: 2%;
    margin-bottom: 2%;
    text-align: left;
}

.oneItem2 h4 {
    font-weight:400;
}

.oneItem ul {
    margin-top: 1%;
    list-style-position:inside;
    margin-left: 1%;
    list-style-type:square;
}

.oneItem ul li {
    margin-bottom: 1%;
}

/* Style two item flex box*/
.twoItem{
    width: calc((80% - 20px) / 2);
    max-width: 650px;
    min-width: 400px;
    box-sizing: border-box;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 3%;
    background-color: white;
    margin-bottom: 2%;
    display: none;
}

.showItem {
    display: block;
}

.quote {
    color: gray;
    font-size: 25px;
    float: left;
}
  
.star {
    color: goldenrod;
    font-size: 20px;
    float: right;
}
  
.textContainer {
    margin-top: 7%;
    text-align: left;
}

.twoItem p {
    color: black;
}

.twoItem h3 {
    color: rgb(6, 6, 134);
}

/* Style the prev and next button for testimonial*/
  .prev,  .next {
    cursor: pointer;
    color: grey;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    margin: 2%;
    padding: 1%;
  }
  
  .prev:hover, .next:hover {
    background-color: lightskyblue;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .dotactive, .dot:hover {
    background-color: #717171;
  }

/* Style two item flex box for banner only*/
.bannerItem{  
    width: calc((80% - 20px) / 2);
    max-width: 650px;
    min-width: 400px;
    box-sizing: border-box;
    padding: 3%;
    color: whitesmoke;
    margin-top: 3%;
}

.bannerItem h1 {
    font-size: 3rem;
    font-weight: 500;
}

.bannerItem h2 {
    font-size: 1.6rem;
    font-weight: 500;
}

.bannerItem h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

.bannerItem a {
    color: wheat;
    font-weight: 600;
}

.bLeft {
    text-align: left;
    margin-top: 3%;
}

.bdown {
    margin-top: 8%;
}

/* Long item - Style two item flex box with two different items*/
.courseItem {  
    width: 880px;
    box-sizing: border-box;
    height: auto;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 2%;
    margin-bottom: 2%;
    background-color: white;
    text-align: left;
}

.largeTwoItem {
    width: 54%;
    max-width: 880px;
    min-width: 667px;
    box-sizing: border-box;
    height: auto;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 2%;
    margin-bottom: 2%;
    background-color: white;
    text-align: left;
}

.courseItem h4, .largeTwoItem h4 {
    font-weight: 400;
}

.courseItem p, .largeTwoItem p {
    margin-top: 2%;
}

.courseItem ul, ol {
    margin-top: 2%;
    list-style-position:inside;
    margin-left: 2%;
}

.largeTwoItem ul, ol {
    margin-top: 2%;
    list-style-position:inside;
    margin-left: 2%;
}

.courseItem ul li, ol li {
    margin-bottom: 2%;
}

.largeTwoItem ul li, ol li {
    margin-bottom: 2%;
}

/* Short item - Style two item flex box with two different items*/
.cImgItem{
    width: 25%;
    max-width: 420px;
    min-width: 323px;
    box-sizing: border-box;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin-bottom: 2%;
}

/* Style three item flex box*/
.threeItem{
    width: calc((80% - 40px) / 3);
    max-width: 433px;
    min-width: 333px;
    box-sizing: border-box;
    border: 1.5px solid lightgrey;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background-color: white;
    margin-bottom: 2%;
}

.threeItem h3{
    margin-bottom: 2%;
    color: rgb(6, 6, 134);
}
  
.threeItem > h4{
    margin-bottom: 2%;
}
 
.pImg {
    width: 100%;
    height: auto;
    object-fit: scale-down;
    max-height: 80px;
    margin-bottom: 1%;
}
  
.threeItem p{
    font-size: 0.9rem;
    color: black;
}

/* Style four item flex box*/
.fourItem {
    width: calc((80% - 60px) / 4);
    max-width: 315px;
    min-width: 242px;
    box-sizing: border-box;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 1%;
    margin-bottom: 3%;
    background-color: white;
}

.fourItem h2 {
  color: rgb(85, 85, 243);
}

.fourItem h4 {
    color: rgb(6, 6, 134);
    margin-bottom: 3%;
}
  
.fourItem p {
    font-size: 0.9rem;
}
  
.uspImg{
    width: 25%;
    height: 25%;
}

/* style the modal dialog window*/
dialog{
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    float: center;
    border: none;
    overflow: hidden;
    border-radius: 1.5%;
}
  
/* style the modal window content*/
.modal-content{
    width: 100%;
    height: 100%;  
}
  
/* style the button to open modal window linear-gradient(to right,rgb(73, 73, 233), #722CFF)*/
.open-modal{
    border: none;
    display: inline-block;
    background: linear-gradient(to right,#00a2ed, blue);
    color: white;
    border-radius: 20px;
    padding: 8px 10px;
    margin-top: 2%;
    font-weight: 600;
}

.open-modal:hover {
    background: #00a2ed;
}

.centerBtn {
    text-align: center;
}
  
/* Add hover on button to open modal window*/
.open-modal:hover{
    cursor: pointer;
}
  
/* style the button to close modal window #00a2ed */
.close-modal{
    float: right;
    color: white;
    background: #0071ff;
    border: none;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 0.2% 0.6% ;
    border-radius: 50%;
    cursor:pointer;
}
  
/* Add hover on button to close modal window*/
.close-modal:hover{
    cursor: pointer;
}

/* Style the home page*/
.secondaryHead {
    padding: 2%;
}  
  
.secondaryHead h2 {
    font-size: 1.5rem;
}

/* Style the training and Workshop page banner*/
.featureItem {  
    width: min(180px, 80%);
    box-sizing: border-box;
    border: 1.5px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 0.5%;
    margin-bottom: 2%;
    margin-top: 1%;
    background-color: white;
    text-align: center;
}

.featureItem2 {  
    width: min(180px, 80%);
    box-sizing: border-box;
    margin-bottom: 2%;
    margin-top: 1%;
    background-color: white;
    text-align: center;
}

.featureItem h2 {
  color: rgb(85, 85, 243);
}

.featureItem2 h3 {
  color: rgb(85, 85, 243);
}
 
.featureItem p{
    font-size: 0.9rem;
    color: #555;
}

.featureItem2 p{
    font-size: 0.9rem;
    color: #555;
}

/* Style the filter button on training page*/
.FilterBtn{
    margin-bottom: 10px;
}
  
.btn {
    border: grey;
    outline: none;
    padding: 12px 16px;
    background-color: lightgray;
    cursor: pointer;
}
  
.btn:hover {
    background-color: gray;
    color: white;
}
  
.btn.highlight {
    background-color: gray;
    color: white;
}

/* Style the course details page*/
#pContent {
    padding: 3%;    
}

.leftContent  {
    text-align: left;
}

#removePad {
    padding: 0;
}

.related {
    margin-top: 1%;
    margin-bottom: 1%;
}

.skillCnt{
    margin-top: 2%;
}

.skill {
    display: inline-block;
    background-color: rgb(240, 238, 238);
    padding: 3px 5px;
    border-radius: 5px;
    margin-right: 1.5%;
    margin-bottom: 2%;
}

.featureCnt {
    display: flex;
    justify-content: space-between;
}


/* Style the contact us page*/
.GroupImg {
    width: 80px;
    height: 90px;
}

/* FAQ section */
.faqItem {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faqQuestion {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    color: #007bff;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
.faqQuestion:focus {
    outline: none;
}
  
.icon {
    font-size: 1.5rem;
    color: #007bff;
}
  
.faqAnswer {
    padding: 10px;
    font-size: 1rem;
    color: #555;
    display: none;
    text-align: left;
}

.faqAnswer ul{
    list-style-position:inside;
    margin-left: 1%;
}

.faqAnswer li {
    margin-bottom: 1%;
}
  
.faqAnswer.faqactive .icon {
    content: "-";
}

/* Style schedule grid table*/
.gridTable {
    margin-top: 1%;
    display: grid;
    grid-gap: 1px;    
    grid-template-columns: 1fr 2fr 2fr;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.gridTable > span {
    padding: 8px 4px;
    background-color: rgb(212, 234, 243);
}

.cName {
    text-align: left;
}

/* Style the Input form design for customer enquiry*/
.inputForm {
    margin: 0 auto;
    width: 80%;
    background: white;
    padding: 2%;
    border-radius: 10px;
}

.formHeading{
    text-align: left;
    border-bottom: 1px solid gray;
    padding-bottom: 5px;
}

.formItem {
    width: 40%;
    box-sizing: border-box;
    align-items: center;
    text-align: left;
}

.formItem2 {
    width: 82%;
    box-sizing: border-box;
    align-items: center;
    text-align: left;
}

.textBox {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid lightgray;
    border-radius: 5px;
    margin-top: 2px;
}

/* Style the spinner*/
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: none;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Style the index page section*/
.indexLinks {
    text-align: center;
}

.indexLinks a {
    color: white;
    outline: none;
    padding: 5px 12px;
    background: linear-gradient(to right, gray, #A9A9A9);
    cursor: pointer;
    border-radius: 15px;
    margin-right: 20px;
}

.indexLinks a:hover {
    background: #00a2ed;
}

/* Style the client and partners section in Home page*/
.clientLogo {
    display: flex;
    width: min(1340px, 100%);
    align-items: center;
    justify-content: center;
    gap:4%;
    margin-bottom: 2%;
}
  
.clientImg{
    width: 10%;
}

/* Style the paragraph inside h1 header*/
h1 + p{
    margin: 35px 20px;
}

/* Style the product details page*/
.courseItem2 {  
    width: min(900px, 90%);
    box-sizing: border-box;
    height: auto;
    border-radius: 10px;
    padding: 2%;
    margin-bottom: 2%;    
    text-align: left;
}

.courseItem2 h4 {
    font-weight: 400;
}

.priceChart {
    color: #0071ff;
    cursor: pointer;
}

/* Style the academy page*/
.aPage {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
}

#c2 {
    display: none;
}

/* Style the diagrams */
.diagram {
    width: 100%;
    height: auto;
}


/* Style all items width for mobile view*/
@media only screen and (max-width: 768px) {
  .oneItem {
    width: 90%;
    padding: 3%;
  }
  .alternateContainer {
    gap: 0px;
  }
  .courseItem {
    width: 90%;
    padding: 3%;
    margin-bottom: 10%;
  }
  .courseItem2 {
    width: 90%;
    margin-left: 2%;
  }
  .cImgItem {
    min-width: 90%;
    margin-bottom: 0;
  }
  .largeTwoItem {
    min-width: 90%;
  }
  .twoItem {
    min-width: 90%;
  }
  .threeItem {
    min-width: 90%;
  }
  .fourItem {
    min-width: 45%;
    padding-top: 4%;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 0;
  }
  .search-wrapper {
    width: min(665px, 85%);
  }
  .searchBar {
    width: min(600px, 75%);
  }
  .info {
    margin-left: 2%;
    flex-direction: column;
    gap: 10px;
  }  
  .secondaryHead .clientLogo .clientImg{
    width: 15%;
  }
  .formItem, .formItem2 {
    width: 80%;
  }
  .open-modal {
    margin-bottom: 2%;
   }
   #c2 {
    display: block;
   }
   #c1 {
    display: none;
   }
}

/* Style all items width for mobile view*/
@media only screen and (max-width: 600px) {
    .fourItem {
    min-width: 80%;
    padding-top: 4%;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 0;
  }
}