*{
Margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(61, 61, 66, 0.7),rgba(125, 143, 177, 0.3)),url(Header.jpg);
    background-position: center;
    background-size: cover;
}     
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #f8f8f8;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
.nav-links ul a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 8px;
    width: 100%;
    transition: width 0s ease, background 0.5s ease;
}
.nav-links ul a::after{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 8px;
    width: 0;
    background: rgb(39, 61, 187);
    transition: width 0.7s ease;
}
.nav-links ul li a:hover::before {
    width: 100%;
    background: rgb(13, 168, 207);
    transition: width 0.3s ease;
}
.nav-links ul li a:hover::after{
    width: 100%;
}
    
.text-box{
    width: 90%;
    color: #ca3f3f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box h2{
    font-size: 45px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
    word-spacing: 5px;
}
.text-box {
    border-color: #0e0f11;
    color: rgb(186, 191, 228);
    box-shadow: 0 0 40px, inset #fff;
    transition: all 0.8s ease-in-out;
}

.text-box:hover {
    box-shadow: 0 0 40px 0 #195b9c inset, 0 0 40px 4px #3891bb;
}

    
.hero-btn{
    display:inline-block;
    text-decoration: none;
    text-align: justify;
    color: #fff;
    border: 1px solid #fff;
    padding: 35px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;    
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #173f5f;
    transition: 1s;
}

nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
.nav-links ul li{
    display: block;
}
.nav-links{
    position: absolute;
    background: #3891bb;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
    
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
}
/*----- course -------*/
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: rgb(62, 144, 165);
}
h2 {
    text-align: center;
    color: rgb(22, 78, 92);
    font-size: 30px;
}
p {
    color: rgb(8, 8, 10);
}
.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.row1 {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.row2{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.course-col{
    flex-basis: 31%;
    background: rgb(126, 165, 216);
    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;
    color: white;
}
.course-col:hover{
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
}
@media(max-width: 700px){
    .row{
        flex-flow: column;
    }
}
@media(max-width: 700px){
    .row1{
        flex-flow: column;
    }
}
@media(max-width: 700px){
    .row2{
        flex-flow: column;
    }
}
/*------- Campuses --------*/

.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img{
    width: 100%;
    height: 1000px;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba(78, 182, 223, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color:#fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-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: center;
}
.facilities-col img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
/*---------------Testimonials------------*/
.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonials-col{
    flex-basis: 28%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: block;
}
.testimonials-col img{
    height: 80px;
    margin-left: 5%;
    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;
}

@media(max-width: 700px){
    .testimonials-col img{
        margin-left: 5%;
        margin-right: 30px;
    }
}

/*------------------- CALL TO ACTION------------*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(156, 151, 151, 0.7), rgba(0, 0, 0, 0.7)), url(carrers.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;

    }
}

/*-------------------Footer-----------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #23c0d4;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #23c0d4;
}

/*--------------------------------------LEARNINGCENTERPAGE------------------------------------------*/

.header1 {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(121, 143, 158, 0.7), rgba(0, 0, 0, 0.7)), url(learningcenter1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.learning-center {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: transparent;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease-in-out;
}
.learning-center:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
}

.tutorial-section, .exercise-section, .languages-section, .projects-section, .trends-section {
    margin-bottom: 20px;
}
.trends-section {
    width: 90%;
    color: #ca3f3f;
    top: 50%;
    left: 50%;
    text-align: center;
}
.fun-section:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.fun-section:hover::after {
    content: '';
    display: block;
    font-size: 4em;
    text-align: center;
    margin-top: 10px;
    color: #ffcc00;
}
/*----------------------------------LearningCenter--------------------*/
.section-text{
    color: #e0eaf1;
}
.learning_center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
}

.learning_center {
    width: 80%;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature {
    padding: 2em;
    border-bottom: 1px solid #ddd;
    transition: transform 0.3s ease-in-out;
}
.feature:hover {
    transform: translateY(-5px);
}
.rich-repository {
    background-color: #f8f8f8;
}
.interactive-exercises {
    background-color: #e8f7ff;
}
.coding-languages {
    background-color: #faffeb;
}

.real-world-projects {
    background-color: #fff4e3;
}
.tech-trends {
    background-color: #f0f8ff;
}
.section-text1{
    color: #080808;
}
@media (max-width: 700px) {
    .learning_center {
        width: 90%;
    }

    .feature {
        padding: 1.5em;
    }
}
/*----------------------------------CallToActionLearningCenter---------------------*/


@media(max-width: 700px){
    .learning_center-container h1{
        font-size: 24px;

    }
}
@media(max-width: 700px){
    .ctalearning p{
        font-size: 24px;

    }
}
@media(max-width: 700px){
    .ctalearning {
        flex-flow: column;
    }
}

/*--------------------------------------Careercorner------------------------------------------*/
.header2 {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(61, 61, 66, 0.7),rgba(125, 143, 177, 0.3)),url(header1.jpg);
    background-position: center;
    background-size: cover;
}     
/*--------------------------------------TechNews------------------------------------------*/
.text-box1{
    width: 40%;
    color: #ca3f3f;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box1 h1{
    font-size: 62px;
}
.text-box1 h2{
    font-size: 45px;
}
.text-box1 p{
    margin: 10px 0 40px;
    font-size: 16px;
    color: #fff;
    word-spacing: 5px;
}
.text-box1 {
    border-color: #0e0f11;
    color: rgb(186, 191, 228);
    box-shadow: 0 0 40px 40px #c0ccd1,inset black;
    transition: all 0.8s ease-in-out;
}



.tech-header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(61, 61, 66, 0.7),rgba(125, 143, 177, 0.3)),url(technews.jpg);
    background-position: center;
    background-size: cover;
}     


.tech-header1 {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(228, 228, 240, 0.7),rgba(125, 143, 177, 0.3)),url(career.jpg);
    background-position: center;
    background-size: cover;
}     

.tech-head {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.tech-col {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.tech-col {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.tech-col{
    flex-basis: 31%;
    background: rgb(151, 172, 194, 0.3);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h2 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color:rgb(135, 204, 221)
}
.tech-col:hover{
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
}
.tech-mid {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.tech-mid-col {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.tech-mid-col {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.tech-mid-col{
    flex-basis: 31%;
    background: rgba(34, 88, 160, 0.3);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.tech-mid-col:hover{
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
}
.tech-bottom {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.tech-bottom-col {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.tech-bottom-col {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.tech-bottom-col{
    flex-basis: 31%;
    background: rgba(34, 88, 160, 0.2);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.tech-bottom-col:hover{
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
}



/*--------------------------------------COntactANDFeedback----------------------------------------*/


.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(61, 61, 66, 0.7),rgba(125, 143, 177, 0.3)),url(Header.jpg);
    background-position: center;
    background-size: cover;
}     



/*--------------------------------------Login-and-Register----------------------------------------*/

.login-text {
    text-align: center;
    color: #fff;    
}
.login-box {
    position: absolute;
    top:67%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px;
  }
  
  .login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
  }
  
  .login-box .user-box {
    position: relative;
  }
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
  }
  
  .login-box form a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #03e9f4;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
  }
  
  .login-box a:hover {
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 100px #03e9f4;
  }
  
  .login-box a span {
    position: absolute;
    display: block;
  }
  
  .login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }
  

/*--------------------------------------RegistrationFormHidden------------------------------------------*/  

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;

}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expand-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.expand-button:hover {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

.hidden-registration-form {
    display: none;
}

#registrationForm {
    max-width: 400px;
    margin: 20px auto;
}

#registrationForm label,
#registrationForm input,
#registrationForm button {
    display: block;
    margin: 10px 0;
}

/*--------------------------------------ContactForm------------------------------------------*/

.container {
    max-width: 600px;
    margin: 50px auto;
    top: 65%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(226, 197, 197, 0.1);
}
.container:hover {
    box-shadow: 0 0 40px 0 #195b9c inset, 0 0 40px 4px #3891bb;
}

form {
    display: grid;
    gap: 20px;
}

label {
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #2667bb;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(19, 168, 64);
    transition: all 0.4s ease-in-out;
    
}
