@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 {
    text-align: center;
    font-family: Poppins, 'Segoe UI', sans-serif;
    background: whitesmoke;
}

a {
    text-decoration: none;
}

select {
    height: auto;
}

/* Style the nav bar*/
.navbar {
    /* make it stick */
    position: sticky;
    position: -webkit-sticky;
    top: 30px;
    /* in front of all other elements */
    z-index: 1;
    /* set background */
    background-color: whitesmoke;
    border-bottom: 2px solid #e3e3e3;
    padding: 0.8% 5%;

    /* define flex */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu a{
    text-decoration: none;
    color: #929292;
    margin: 0 20px;
  }

.navbar a:hover{
    color: black;
}

.navbar a.active{
    color: black;
}

.logo-image {
    display: block;
    height: 48px;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
}

.menu-item {
    display: inline-block;
    margin-left: 20px;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: black;
    margin: 4px auto;
}

.menu-icon {
    display: none;
}

/* 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 zalp button*/
.registerbtn {
    color: whitesmoke;
    background: royalblue;
    font-weight: 600;
    padding: 0.4em 1.5em;
    border-radius: 0.5em;
}

.registerbtn:hover {
    background: #00a2ed;
}

.topNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #0F172A;
    color: whitesmoke;
    font-size: 0.9rem;
}

/* Style the nav bar on mobile view*/
@media only screen and (max-width: 750px) {
    .navbar {
        flex-direction: column;
    }

    .logo-container {
        width: 100%;
    }

    .mylogin {
        position: absolute;
        margin-top: 10px;
        margin-left: 20%;
    }

    .nav-menu {
        display: none;
        margin-top: 10px;
        width: 90%;
        background-color: #E5E5E5;
        border-radius: 5px;
    }

    .menu-item {
        display: block;
        width: 90%;
        padding: 5px 0;
        text-align: end;
    }
    
    .menu-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 5%;
    }

    .menu-icon:hover .bar {
        background-color: darkcyan;
    }
    
    .active {
        display: block;
    }
}

/* Style the nav bar logo on small mobile view*/
@media only screen and (max-width: 500px){
    .logo-image {
    width: 30%;
    }
}

/* Style the header*/
header{
    padding-top: calc(38px + 0.6rem);
  }
  
header h1{
    margin-top: 1%;
    font-size: 2.5rem;
    font-weight: bold;
}
  
/* Style the footer*/
footer{
    margin-top: 2%;
    font-size: 0.8rem;
    padding: 1%;
    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: 35px;
}

.infoItem {
    font-size: 1rem;
}
/*  
.infoIcon{
    height: 20px;
    width: 25px;
    margin-right: 1%;
}
  
.infoText {
    margin-right: 2%;
    font-size: 0.8rem;
}
  
.info a {
    text-decoration: none;
    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;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../chart/banner.png");
}

.productContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.productContainer2{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(to right,#d99ff7, lightskyblue);
}

.alternateContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.alternateContainer:nth-child(even) {
  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;
}

.oneItem ul {
    margin-top: 1%;
    list-style-position:inside;
    margin-left: 1%;
    list-style-type:square;
}

.oneItem ul li {
    margin-bottom: 1%;
}

.oneItem2 {
    width: min(900px, 90%);
    box-sizing: border-box;
    height: auto;
    padding: 2%;
    margin-bottom: 2%;
}

.oneItem2 h4 {
    font-weight:400;
}

/* 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*/
.prevTop, .nextTop {
cursor: pointer;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
margin: 2%;
padding: 1%;
}

.prev,  .next, .prevTop, .nextTop {
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, .prevTop:hover, .nextTop:hover {
background-color: lightskyblue;
}
  
  /* The dots/bullets/indicators */
  .dotContainer {
    width: 100%;
  }
  .dot, .dotTop {
    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, .topactive, .dotTop:hover {
    background-color: #717171;
  }

/* Style item flex box for banner only*/
.titleItem {
    width: 80%;
    color: whitesmoke;
    margin-top: 2%;
}

.slidingContainer {
    width: 70%;
    display: flex;
    justify-content: center;
    position: relative;
    display: none;
    border-radius: 20px;
    z-index: 0;
}

.slidingContainer::before {
    content: "";
    border-radius: 20px;
    position: absolute;
    inset: 0;
    background-color: whitesmoke;
    opacity: 0.9;
    z-index: -1;
}

.showSliding {
    display: flex;
}

.slideImg {    
    width: 100%;
    height: auto;
    object-fit: scale-down;
    max-height: 250px;
    opacity: 1;
}

.slidingItem{
    width: 50%;
    max-width: 650px;
    padding: 3%;
    box-sizing: border-box;
    color: black;
    height: auto;
}

.bannerItem{
    width: calc((80% - 20px) / 2);
    max-width: 650px;
    padding: 3%;
    box-sizing: border-box;
    color: whitesmoke;
    height: auto;
}

.bannerItem h2, .titleItem h2 {
    font-size: 2.2rem;
    font-weight: 500;
}

.bannerItem h4, .slidingItem h4, .titleItem h4 {
    font-size: 1.4rem;
    font-weight: 300;
}

.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 p, .largeTwoItem p {
    margin-top: 2%;
}

.courseItem ul, .largeTwoItem ul {
    margin-top: 2%;
    list-style-position:inside;
    margin-left: 2%;
    list-style-type:square;
}

.courseItem ul li, .largeTwoItem ul li {
    margin-bottom: 2%;
}

.courseItem2 {  
    width: min(600px, 90%);
    box-sizing: border-box;
    height: auto;
    border-radius: 10px;
    padding: 2%;
    margin-bottom: 2%;    
    text-align: left;
}

.courseItem2 h4 {
    font-weight: 400;
}

/* Short item - Style two item flex box with two different items*/
.cImgItem{
    width: 25%;
    max-width: 420px;
    min-width: 323px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    background-color: lightgray;
    margin-bottom: 2%;
}

.cImgItem2{
    width: 30%;
    height: auto;     /* keeps aspect ratio */
    object-fit: cover; /* or contain depending on need */
    flex-shrink: 0;
    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-top: 2%;
    margin-bottom: 2%;
}

.flex-image {
  width: 100%;      /* or fixed width like 200px */
  max-width: 420px;
  min-width: 323px;
  height: 100%;     /* keeps aspect ratio */
  object-fit: cover; /* or contain depending on need */
  flex-shrink: 0;  /* prevents shrinking if needed */
  border-radius: 10px;
}

/* 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: 1%;
    background-color: white;
    margin-bottom: 2%;
}

.threeItem h3{
    margin-bottom: 2%;
    color: rgb(6, 6, 134);
}
  
.threeItem > h4{
    margin-bottom: 2%;
}
 
.pImg {
    width: 20%;
    height: 25%;
    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: 30%;
}

/* 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;
    color: black;
}

.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%;
    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, .featureItem2 p{
    font-size: 0.9rem;
    color: #555;
}

.shade1 {
    background-color: #ADD8E6;
}

.shade2 {
    background-color: #B0C4DE;
}

.shade3 {
    background-color: #87CEFA;
}

/* Style the filter button on training page*/
.FilterBtn{
    margin-bottom: 10px;
}
  
.btn {
    border: grey;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
}
  
.btn:hover {
    background-color: #ddd;
}
  
.btn.highlight {
    background-color: lightgrey;
}

/* 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: 3%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.gridTable > span {
    padding: 8px 4px;
    border-top: 1px solid grey;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: 1px solid grey;
}

.cName {
    text-align: left;
}

/* Style the Input form design for student 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;
}

.textBox {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid lightgray;
    border-radius: 5px;
}

/* 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;
    align-items: center;
    justify-content: center;
    padding: 2%;
    gap:4%;
    margin-bottom: 2%;
}
  
.clientImg{
    width: 10%;
    height: 10%;
}

 
/* Style the paragraph inside h1 header*/
h1 + p{
    margin: 35px 20px;
}

/* Style the Blogs page*/
.aPage {
    font-weight: 400;
    font-size: 22px;
    text-align: left;
}

/* Style the pricing */
.price-container {
    margin-top: 10px;
}

.old-price {
    font-size: 1.1rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
}

.new-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f766e;
}

.discount {
    display: inline-block;
    background: #f43f5e;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    margin-left: 8px;
}

.rightMargin {
    margin-right: 20px;
}
 
/* 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%;
  }
  .titleItem {
    width: 90%;
  }
  .slidingContainer {
    width: 90%;
    flex-wrap: wrap;
  }
  .slidingItem {
    width: 90%;
  }
  .bannerItem {
    min-width: 90%;
  }
  .cImgItem2 {
    width: 90%;
    margin-bottom: 0;
  }
  .twoItem {    
    min-width: 90%;
  }
  .largeTwoItem {
    min-width: 90%;
  }
  .cImgItem {
    min-width: 90%;
  }
  .threeItem {
    min-width: 90%;
    margin-bottom: 0;
  }
  .fourItem {
    min-width: 45%;
    padding-top: 4%;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 0;
  }
  .search-wrapper {
    width: 85%;
  }
  .searchBar {
    width: 75%;
  }
  .formItem {
    width: 90%;
   }
   .open-modal {
    margin-bottom: 2%;
   }
  .info {
    margin-left: 2%;
    flex-direction: column;
    gap: 10px;
  }
  .secondaryHead .clientLogo .clientImg{
    width: 15%;
    height: 15%;
  }
}


/* 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;
  }
}


  
