*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif
}

body {
  overflow-x: hidden;
}
.header{
    min-height: 100vh;
    width: 100%;    
    background-image:linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)) ,url(https://res.cloudinary.com/dfmyfwyqe/image/upload/v1744554407/img1_poagbr.webp);
    /*background-image:linear-gradient(rgba(1, 5, 20, 0.886),rgba(2, 10, 42, 0.7)) ,url(https://res.cloudinary.com/dfmyfwyqe/image/upload/v1747726680/AI_t5ckxf.jpg);
    background-image:url(https://res.cloudinary.com/dfmyfwyqe/image/upload/v1747726680/AI_t5ckxf.jpg); */
    background-position: center;
    background-size: cover;
    position: relative;    
}
.nav-links-right{
    color: rgb(165, 42, 42);
}
.nav-links-left {
     
    color: white;
    font-size: 20px;
}

.logo{
    width: 100px;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.nav-links-right{
    flex: 1;
    text-align: right;
}
.nav-links-right ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links-right ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.nav-links-right ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links-right ul li:hover::after{
    width: 100%;
}
.text-box{
width: 90%;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.text-box h1{
    font-size: 50px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
.hero-btnsyllabus{
    display: inline-block;
    text-decoration: none;
    color: rgba(83, 70, 47, 0.953);
    border: 1px solid rgb(152, 126, 55);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 5%;
}
.hero-btnsyllabus:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}



@media (max-width: 768px) {

  nav {
    flex-direction: column;
    text-align: center;
  }

  .nav-links-right ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links-left {
    margin-bottom: 10px;
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .text-box h1 {
    font-size: 28px;
  }

  .text-box p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .course-col {
    width: 90%;
    margin-bottom: 20px;
  }

  .course-col img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .testimonials .row {
    flex-direction: column;
  }

  .testimonials-col {
    width: 90%;
    margin: 10px auto;
  }
}

@media (max-width: 768px) {

  #chatbox {
    width: 95%;
    height: 70%;
    right: 2.5%;
    bottom: 80px;
  }

  #chatToggle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  #userInput {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #whatsappButton {
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/*-------------------------------course-----------------------*/
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 100px;

} 
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;

}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.course-col{
    flex-basis: 32%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;

}
.campuse-col{

    flex-basis: 32%;
    border-radius: 10%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campuse-col img{
    width: 100%;
    display: block;
}
.campuse-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(226,0,0,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color:#fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
/*------------------facilities-----------------------*/
.Facilities{
width: 80%;
margin: auto;
text-align: center;
padding-top: 100px;
}
.Facilities-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.Facilities-col img{
    width: 100%;
    border-radius: 10px;
}
.Facilities-col p{
    padding: 0;
}
.Facilities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*----------------------Testimonial---------------------------*/
.testimonials{
    width: 80%;
    margin: auto;
    /*padding-top: 100px;*/
    text-align: center;
    color: rgb(9, 9, 130)
}

.testimonials-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    box-sizing: border-box;
    background: #fff3f3;
    padding: 25px;

    /*background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;*/
}
.testimonials-col img{
    height: 90px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonials-col p{
    padding: 0;
}
.testimonials-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonials-col.fa{
    color: #f44336;
}


/*-----------Call to Action------------*/
.cta{
    margin: 100px auto;
    width: 90%;
    /*background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(https://res.cloudinary.com/dfmyfwyqe/image/upload/v1744790971/cont_khafi1.jpg);*/
    background-image: linear-gradient(rgba(231, 223, 223, 0.255),rgba(240, 228, 228, 0.7)),url(https://res.cloudinary.com/dfmyfwyqe/image/upload/v1747726680/AI_t5ckxf.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 40px;


}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}


.python{
    background-color: bisque;
    opacity: 1;
    transition: 2s;
}
.contact-container{
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color: #a363aa;
    font-size: 40px;
    margin-bottom: 5px;

}
.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border:none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.contact-left textarea{
    height: 190px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
    color: #a9a9a9;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border:none;
    border-radius: 50px;
    background: linear-gradient(270deg,#ff994f,#fa6d86);
    cursor:pointer;
    width: 400px;
}
.contact-right{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-right-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-right-title h2{
    font-weight: 400;
    color: #a363aa;
    font-size: 20px;
    margin-bottom: 0px;
}
.contact-right-title{
    font-weight: 100;
    color: #a363aa;
    font-size: 20px;
    margin-bottom: 5px;
    text-align: left;
    gap: 30px;
}
.phone-volume{
font-weight: 100;
    color: #a363aa;
    font-size: 20px;
}
/*.contact-right-title h5{
    font-weight: 600;
    color:#a363aa;
    font-size: 40px;
    margin-bottom: 5px;
} */

.footer-about{
    width: 80%;
    margin: auto;
    /*padding-top: 100px;*/
    text-align: center;
    color: rgb(9, 9, 130);
    
}

.footer{
   /* width: 100%;
    height: 100vh;*/
    text-align: center;
    padding: 30px 0;   
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


.footer-par{
   /* margin: 0;
    padding: 15px 15px;
    border: 3px solid green;
    text-align: center;*/

    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    box-sizing: border-box;
    background: #fff3f3;
    padding: 25px;
}
.footer-par p{    
   /* font-weight: 15;
    font-size: 20px;
    color:black; */
    text-align:justify;
    flex-basis: 32%;
    border-radius: 10%;
   /* margin-bottom: 30px;*/
    position: relative;
    overflow: hidden;
}
.footer -par h2{
    text-align:justify;
    margin: 0;
    padding: 15px 15px; 

}
.footer-CEO{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
   /* text-align: left;*/
    text-align:justify;
    box-sizing: border-box;
    background: #fff3f3;
    padding: 25px;    
}
.footer-CEO-par{
   /* text-align:justify;*/
    flex-basis: 32%;
    border-radius: 10%; 
   /* margin-bottom: 30px;*/
    position: relative;
    overflow: hidden;
    text-align: left;

}

.registration-form {
  background-color:#fff3f3;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  width: 400px;
}

.registration-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #4a148c;
}

.registration-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.registration-form input,
.registration-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.registration-form button {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background-color: #7b1fa2;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.registration-form button:hover {
  background-color: #4a148c;
}

.course-enrolled{
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
     

}
.scrolling-wrapper {
      width: 100%;
      overflow: hidden;
      /*background: #fff;*/
      padding: 10px 0;
    }

    .scrolling-images {
      display: flex;
      animation: scroll 20s linear infinite;
    }

    .scrolling-images img {
      width: 1000px;
      height: 600px;
      margin-right: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    @keyframes scroll {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

footer{
  background-color:#222;
  color:#fff;
  text-align: center;
  padding:30px 20px;
}
.footer-nav a{
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-size: 15px;
}
.footer-nav a:hover{
  color: #00aced;
}
.social-icons{
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.social-icons a{
  display:inline-flex;
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  justify-content: center;
  align-items: center;  
  border-radius: 50%;
  background-color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  width: 45px;
  height: 45px;
}
.social-icons a:hover{
  /*color: #00aced; */

  background-color: #00aced;
  color: #fff;
  transform: scale(1.2);
  box-shadow: 0 8px 12px rgba(0, 172, 237, 0.4);
}
.footer-bottom{
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

#chatToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 1000;
}
 /* virtual Assistance */
#chatbox {
  width: 430px;
  height: 540px;
  position: fixed;
  bottom: 90px;
  right: 20px;
  border-radius: 12px;
  overflow: hidden;  
  background: #fff3f3;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  z-index: 999;
}

.hidden {
  display: none;
}
    #chatbox {
      width: 360px;
      margin: 30px auto;
      border-radius: 12px;
      overflow: hidden;
      background: #fff3f3;
      box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    }

    #header {
      background: #25D366;
      color: white;
      padding: 14px;
      text-align: center;
      font-weight: bold;
      font-size: 18px;
    }

    #messages {
      height: 420px;
      overflow-y: auto;
      padding: 12px;
      background: #f9f9f9;
    }

    .msg {
      margin: 8px 0;
      padding: 10px 12px;
      border-radius: 10px;
      max-width: 85%;
      white-space: pre-line;
      line-height: 1.4;
    }

    .bot {
      background: #e9ecef;
      color: #222;
    }

    .user {
      background: #25D366;
      color: white;
      margin-left: auto;
      text-align: right;
    }

    #inputArea {
      display: flex;
      border-top: 1px solid #ddd;
    }

    #userInput {
      flex: 1;
      padding: 12px;
      border: none;
      outline: none;
      font-size: 14px;
    }

    #sendBtn {
      border: none;
      background: #25D366;
      color: white;
      padding: 0 18px;
      cursor: pointer;
      font-size: 14px;
    }

/* WhatsApp Button */

#whatsappButton{
position:fixed;
bottom:20px;
left:20px;
background:#25D366;
color:white;
font-size:26px;
padding:14px 16px;
border-radius:50%;
text-decoration:none;
box-shadow:0 0 10px rgba(0,0,0,0.3);
}