body{
    background-color:#eeeefa;  
}


.full-content {
    margin-left: 10%;
    margin-right: 10%;
}

.lan-button {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.lang-btn {
    background-color: #004a8d;
    color: #ffffff;
    padding: 15px 25px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* course highlight */

.course-highlight {
    padding: 80px 0;
    text-align: center;
}

.container-item {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}


.highlight-list {

    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;

}


.highlight-item {

    /* background-color: #84bcf0; */
    background-color: #074885;
    background-color: white;
    width: 300px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 16px;
    line-height: 1.6;
}


.enroll-now {
    margin-top: 60px;
    color: black;
}

.enroll-now p {
    font-size: 22px;
    margin-bottom: 20px;
}

.btn-enroll {
    background-color: #0962b4;
    display: inline-block;
    color: #eff2f3;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;

}

.clock {
    position: relative;
    top: 50%;
    left: 35%;
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 50%;

}

.hand {
    position: absolute;
    width: 50%;
    height: 2px;
    background: #333;
    top: 50%;
    transform-origin: 100%;
    transform:rotate(0deg);
    animation-timing-function: steps(60);
}
.hour{
    height: 3px;
    animation:rotate-hour 43200s infinite linear;

}

.minute{
    animation: rotate-minute 3600s infinite linear;
}
.second{
    background: red;
    animation:rotate-second 60s infinite linear;
}
.center-point{
    position: absolute;
    width:4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.sec-title {
    color:#103E59;
    font-size: 30px;
}
@keyframes rotate-hour{
    from {transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}

@keyframes rotate-minute{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}

@keyframes rotate-second{
    from{transform:rotate(0deg);}
    to{transform: rotate(360deg);}
}

@media (max-width:768px) {
    .full-content {
        margin: 0;
    }
}
.popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:  #F5F5F5 ;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.popup-form input,textarea{
    border: 1px solid black;
}

/* Style the link */
.popup-link {
    display: inline-block;
    padding: 15px 25px;
    background-color: #103e59;
    color: white;
    text-decoration: none;
    font-weight: bold;
    /* transition: background-color 0.3s ease, transform 0.2s ease; */
    cursor: pointer;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    margin-top: 5%;
    margin-bottom: 5%;
 
}


.close{
margin-bottom: 30px;
position: relative;
left: 100%;
}
.popup-link:hover {
    
    transform: scale(1.05);
}



.form-tit{
    color:#2e8f9d;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}
.form-area{
    /* border:2px solid orangered; */
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    flex-wrap: wrap;
}
.img-area{
    /* border: 2px solid yellow; */
}
.enq-form{
    max-width: 500px;
    padding: 50px ;
}

.enquiry-form-name{
    color: white;
}


.transform{
    display: flex;
    align-items: center;
    justify-content:center;
   
    margin-bottom: 10px !important;
    
}

.bad-write{
    display:inline-block;
   
}

.good-write{
    display: inline-block;
  
}


.four-paragraph{
    margin-top: 10%;
    margin-bottom: 10%;
}

.para1{
    margin-bottom: 30px;
} 


.para-title{
    margin-bottom: 20px !important;
    color:#103E59;
}
.banner-iih{
    position: relative;
}
.banner-butn{
    position: absolute;
    top:70%;
    left: 38%;
   
}

.banner-butn button{
    padding: 20px 50px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    background:radial-gradient(rgb(207, 116, 41),rgb(255, 94, 0),rgb(231, 135, 70));
}

.banner-butn button:hover{
transform: scale(1.05);
}


.arrow-sec img{
    
}



@media  (max-width:1024px){
    .form-area{
        justify-content: space-evenly;
    }

.img-area img{
    max-width: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
@media  (max-width:768px){
.full-content{
    margin: 0 auto;
    padding: 30px;
}
}

@media  (max-width:912px){

.enq-form{
    max-width:70%;
   
}
.img-area{
  display: none;
}
}

@media  (max-width:540px){
.highlight-list{
    flex-direction: column !important;
    margin: 0;
    max-width: 100% !important;

}
    .highlight-item{
        width: 100%;
        /* border: 2px solid red; */
    }

    .sec-title{
       margin-bottom: 30px;
    }
    .banner-butn {
        left: 30%;
    }
    .banner-butn button{
        padding:15px 15px ;
    }
}

@media  (max-width:430px){
.popup-link{
padding: 18px;
font-size: 18px;
}

.lan-button{
    justify-content: space-between;
    flex-wrap: wrap;
}

.lang-btn{
    padding:18px 40px ;
}

.hindi-btn{
    margin-left:15%;
    margin-top: 30px;
    width: 250px;
   
}
.sec-title{
    margin-bottom: 20px;
}
.enq-form{
    max-width: 100%;
}
.full-content{
    margin: 0;
}
.highlight-item{
    max-width: 100%;
}

.para-title{
    
}

.banner-butn{
    top:68% !important;
}
}
@media  (max-width:414px){
    .hindi-btn{
        margin-top: 0;
        width: 300px;
        margin-left: 0;

    }
.lang-btn{
    margin-bottom: 30px;
    margin-left: 8%;

}
.lan-width{
    width: 300px;
}
}

@media  (max-width:414px){
.popup-link{
   font-size: 16px; 
}
.course-highlight{
    max-width: 100%;
}
}


@media  (max-width:344px){

    .popup-link{
        font-size:14px ;
    }
}


