/* hero section start */
:root{
    --primary-color: #150958;
    --secondary-color: #F58220;
}

body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* Hero Section */

.bg-hero{
 background: #DFDAFB;
 background: linear-gradient(90deg, rgba(223, 218, 251, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(253, 235, 220, 1) 100%);
}

.bg-hero-1{
    background-image: linear-gradient(rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.5)), url('/landing-page/ielts-coaching/images/hero-image/Ielts-hero-1.webp');
}

.bg-hero-2{
     background-image:  linear-gradient(rgba(0, 0, 255, 0.5), rgba(0, 0, 255, 0.5)), url('/landing-page/ielts-coaching/images/hero-image/Ielts-hero-2.webp');
}

.bg-hero-3{
     background-image:  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/landing-page/ielts-coaching/images/hero-image/Ielts-hero-3.webp');
}

.bg-hero-1, .bg-hero-2, .bg-hero-3{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 8rem;
    width: 12rem;
    position: relative;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-hero-child-1, .bg-hero-child-2, .bg-hero-child-3{
    padding: 8px 12px;
    border-radius: 10px;
    position: absolute;
    max-width: 12rem;
    left: 10px;
    bottom: -50px;
    z-index: 2;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.call-to-action{
    background-color: var(--secondary-color);
    padding: 25px 0;
    color: #fff;
}

.expert-btn{
    color: #fff;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius:5px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.5s ease-in-out;
}

.expert-btn:hover{
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}

/* IELTS Coaching Section */

.ielts-section{
  background: #FFF;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(253, 235, 220, 1) 25%);
  padding: 25px 50px; 
}

.ielts-section h3{
    font-weight: 500;
    text-align: center;
    margin: 12px;
}

.ielts-section p{
    text-align: center;
}

.ielts-points-wrapper {
    position: relative;
    display: inline-block;
    min-height: 420px;
}

.ielts-points-wrapper::before {
    content: "";
    position: absolute;
    top: -0.01px;
    left: -0.01px;
    right: -0.01px;
    bottom: -0.01px;
    background: #c62029;
    border-radius: 5px;
    z-index: 0;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.ielts-points {
    position: relative;
    z-index: 1;
    min-width: 250px;
    height: 100%;
    padding: 24px 32px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(91, 91, 91, 0.1);
    min-height: 420px;
}

.ielts-points-wrapper:hover::before {
    transform: rotate(5deg);
}

.ielts-points h5{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.ielts-points ul{
    list-style: none;
    padding-left: 0;
    margin-top: 32px;
}

.ielts-points ul li{
    margin: 15px 0;
    font-size: 14px;
}

.ielts-points ul li .fa-circle-check{
   color: var(--secondary-color);
}

/* IELTS PREPARATION COURSES */

.training-section{
 padding: 25px 50px;
}

.training-section h3{
    font-weight: 500;
    text-align: center;
    margin: 12px;
    color: var(--primary-color);
}

.training-section p{
    text-align: center;
}

.training-col{
    border: 1px solid var(--secondary-color);
    padding: 12px 16px;
    box-shadow: 0px 4px 8px 0px #ccc;
    border-radius: 5px;
    min-height: 400px;
    margin-top: 25px;
    transition: all 0.5s ease-in-out;
}

.training-col:hover{
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}

.training-col h4{
    font-size: 18px;
    color: var(--secondary-color);
    text-align: center;
}

.training-col span{
    font-size: 14px;
    font-weight: 500;
}

.training-col ul{
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.training-col ul li{
    margin: 5px 0;
    font-size: 14px;
}

.training-col ul li .fa-circle-check{
    color: var(--secondary-color);
}

/* FAQ Section */

.faq {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform .3s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 0 18px;
    line-height: 1.7;
    color: #666;
}

/* About Section */

.about-section{
background: #FFF;
background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(253, 235, 220, 1) 25%);
padding: 25px 50px;
}

/* Call Button */

.call-link{
    position: fixed;
    bottom: 50px;
    left: 12px;
    padding: 0 20px 0 0;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    z-index: 5;
    box-shadow: 0 0 8px 0 #25D366;
    text-shadow: 0px 1px 0px #25D366;
    animation: zoomIn 1s ease-in-out infinite;
    font-weight: 600;
}

.call-link i{
    font-size: 24px;
    margin-right: 5px;
    padding: 12px;
    border-radius: 50px;
    border: 2px solid #fff;
}

@keyframes zoomIn{
    0%, 100%{
     transform: scale(0.9);
    }

    50%{
        transform: scale(1.025);
    }
}

@media screen and (min-width: 1400px){
    .ielts-points h5, .training-col h4{
        font-size: 24px;
    }

    .training-col span{
      font-size: 20px
    }

    .ielts-points ul li, .training-col ul li{
        font-size: 18px;
    }
}


.hero-img {
    float: right;
    max-width: 30rem;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
}

.hero-heading {
    color: #012169;
}

.hero-heading-2 {
    color: #E4002B;
}

.hero-icon {
    color: #012169;
}

.logo img{
    width: 9rem;
}

.logo{
    text-decoration: none;
    color: #012169;
    font-size: 1.45rem;
    font-weight: 600;
}

.hero-btn {
    background-color: #012169;
    color: #ffffff;
}

.hero-btn:hover {
    background-color: #E4002B;
    color: #fff;
}

.universities .card .card-body i{
    color:#002147;
}

.exam-card{
    background-color: #fff;
    border-radius: 4px;
}

.exam-card img{
    width: 8rem;
}

/* native forn 1 section start */
.form-label {
    font-size: 1rem;
}

.active-form {
    background-color: #E4002B;
}

.text-one {
    font-size: 1.3rem;
    height: 2rem;
    width: 2rem;
    background-color: #E4002B;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
}

.text-two {
    font-size: 1.3rem;
    height: 2rem;
    width: 2rem;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
}

.text-three {
    font-size: 1.3rem;
    height: 2rem;
    width: 2rem;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
}

.native-form-p {
    font-size: 1.3rem;
    color: #fff;
}

.native-heading {
    font-size: 1.6rem;
}


.bg-container {
    background-color: rgba(0, 33, 71, 0.7);
}


/* btn css */
.btn-country {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.btn-country:hover,
.btn-country:active {
    background-color: #E4002B;
    border-color: #012169;
    color: #012169;
}

.btn-status {
    border: 1px solid #dee2e6;
    text-align: left;
    transition: all 0.3s ease;
}

.btn-status:hover,
.btn-status:active {
    background-color: #E4002B;
    border-color: #012169;
}

.btn-program {
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.btn-program:hover,
.btn-program:active {
    background-color: #E4002B;
    border-color: #002147;
    transform: translateY(-2px);
}

.form-label {
    color: #2c3e50;
}

.btn-check:checked+.btn-country,
.btn-check:checked+.btn-status,
.btn-check:checked+.btn-program {
    background-color: #E4002B;
    color: white;
    border-color: #E4002B;
}

.bg-container-2 {
    background-color: rgba(0, 0, 0, 0.6);
}

.country-text,
.admission-text {
    font-size: 12px;
}

.u-heading {
    color: #002147;
}

.u-heading2 {
    font-size: 1.6rem;
    color: #E4002B;
}

.card-content {
    font-size: 12px;
}
.bg-img {
    background-image: url(../images/bg.btn.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.explore-btn {
    text-align: center;
    cursor: pointer;
    background-color: #fff3;
    border: 2px solid #ffffff;
    border-radius: .5rem;
    padding: 1rem;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow .1s ease-in;
    display: block;
}

.explore-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: #E4002B !important;
}

.btn-check+.btn:hover {
    border-color: #E4002B !important;
}

.img {
    border-radius: 1rem;
    width: 3rem;
    height: 3rem;
    position: relative;
    overflow: hidden;
}

.bg-university {
    background-image: url(../images/bg-university.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.card-text {
    font-size: 16px;
}

.admit-heading {
    font-size: 1.6rem;
    color: #fff;
    text-shadow: 3px 2px 1px #000000;
}

.scal-dream {
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.scal-dream:hover {
    transform: scale(1.05);
}

.let-hear {
    color: #012169;
}

.let-hear2 {
    color: #E4002B;
}

.name-heading {
    color: #012169;
}

.got-heading {
    color: #012169;
}

.got-heading-2 {
    color: #E4002B;
}

.form-hide {
    display: none;
}

.fa-circle-arrow-left {
    cursor: pointer;
}
    
    .card {
        transition: all 0.3s ease;
        border: none;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    }
    
    .form-control, .form-select {
        border-left: 0;
        border-radius: 0 0.375rem 0.375rem 0 !important;
    }
    .input-group-text {
        border-right: 0;
        border-radius: 0.375rem 0 0 0.375rem !important;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #012169 0%, #012169 100%);
        border: none;
        transition: all 0.3s ease;
    }
    .btn-primary:hover {
        background: linear-gradient(135deg, #E4002B 0%, #E4002B 100%);
        border: none;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    
    .is-valid {
        border-color: #28a745 !important;
    }
    
    .is-invalid {
        border-color: #dc3545 !important;
    }
    .Copyright
    {
        background-color: #012169;
        font-size: 16px;
    }
    .Copyright-para
    {
        text-align: center;
        padding-top: 12px;
    }

@media screen and (max-width:320px) {
    .form-container{
       margin-top: 100px
    }

  .ielts-points-container{
    flex-direction: column;
  }
    
    .hero-heading {
        font-size: 1.7rem;
        text-align: center;
    }

    h2.hero-heading {
        font-size: 2.1rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.0rem;
        text-align: center;
        padding: 5px 20px;
    }

    .hero-box {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .btn {
        justify-content: center;
        display: flex;
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 0.8rem;
    }

    .let-hear2 {
        font-size: medium;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-btn {
        font-size: 12px;
    }

    .native-heading {
        font-size: 1.3rem;
    }

    .native-form-p {
        font-size: 16px;
    }

    .text-one {
        font-size: 16px;
        height: 1.6rem;
        width: 1.6rem;
        background-color: #E4002B;
        border-radius: 50%;
        text-align: center;
        color: #ffffff;
    }

    .text-two {
        font-size: 16px;
        height: 1.6rem;
        width: 1.6rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .text-three {
        font-size: 16px;
        height: 1.6rem;
        width: 1.6rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .card-text {
        font-size: 11px;
    }
}

@media screen and (min-width:320px) and (max-width:480px) {
    .form-container{
        margin-top: 100px
    }

    .ielts-points-container{
      flex-direction: column;
    }
    
    .hero-heading {
        font-size: 1.7rem;
        text-align: center;
    }

    h2.hero-heading {
        font-size: 2.1rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.0rem;
        text-align: center;
        padding: 5px 20px;
    }

    .hero-box {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .btn {
        justify-content: center;
        display: flex;
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 0.8rem;
    }

    .let-hear2 {
        font-size: medium;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-btn {
        font-size: 12px;
    }

    /* section 2 */
    .native-heading {
        font-size: 1.3rem;
    }

    .native-form-p {
        font-size: 16px;
    }

    .text-one {
        font-size: 16px;
        height: 1.6rem;
        width: 1.6rem;
        background-color: #E4002B;
        border-radius: 50%;
        text-align: center;
        color: #ffffff;
    }

    .text-two {
        font-size: 16px;
        height: 1.6rem;
        width: 1.6rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .text-three {
        font-size: 16px;
        height: 1.6rem;
        width: 1.6rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .form-label {
        font-size: 1rem;
    }

    .card-text {
        font-size: 12px;
    }
}

@media screen and (min-width:480px) and (max-width:768px) {
    .form-container{
        margin-top: 100px
    }

    .ielts-points-container{
      flex-direction: column;
    }
    
    .hero-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    h2.hero-heading {
        font-size: 2.2rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.2rem;
        text-align: center;
        padding: 5px 20px;
    }

    .hero-box {
        display: flex;
        justify-content: center;
    }

    .btn {
        justify-content: center;
        display: flex;
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-icon {
        font-size: 1.3rem;
    }

    .hero-text {
        font-size: 1.0rem;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-box div p {
        font-size: 12px;
    }

    .native-heading {
        font-size: 1.6rem;
    }

    .native-form-p {
        font-size: 17px;
    }

    .text-one {
        font-size: 17px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #E4002B;
        border-radius: 50%;
        text-align: center;
        color: #ffffff;
    }

    .text-two {
        font-size: 17px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .text-three {
        font-size: 17px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .form-label {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 15px;
    }

}

@media screen and (min-width:768px) and (max-width:1024px) {
    .form-container{
        margin-top: 100px
    }

    .ielts-points-container{
      flex-direction: column;
    }

    .hero-heading {
        font-size: 1.9rem;
        text-align: center;
    }

    h2.hero-heading {
        font-size: 2.0rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.1rem;
        text-align: center;
        padding: 5px 20px;
    }

    .hero-box {
        display: flex;
        justify-content: center;
    }

    .btn {
        justify-content: center;
        display: flex;
        font-size: 1.0rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 1.0rem;
        text-align: center;
    }

    .hero-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-img div {
        width: 18rem;
    }

    .hero-section {
        flex-direction: column;

    }

    .hero-box div p {
        font-size: 14px;
    }

    /* section 2 */
    .native-heading {
        font-size: 1.7rem;
    }

    .native-form-p {
        font-size: 18px;
        white-space: nowrap;
    }

    .text-one {
        font-size: 18px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #E4002B;
        border-radius: 50%;
        text-align: center;
        color: #ffffff;
    }

    .text-two {
        font-size: 18px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .text-three {
        font-size: 18px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .card-text {
        font-size: 16px;
    }
    .admit-para{
        font-size: 1.1rem;
    }
}   

@media screen and (min-width:1024px) and (max-width:1280px) {
    .form-container{
        margin-top: 100px
    }
    
    .hero-heading {
        font-size: 1.9rem;
        text-align: center;
    }

    h2.hero-heading {
        font-size: 2.0rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.1rem;
        text-align: center;
        padding: 5px 20px;
    }

    .hero-box {
        display: flex;
        justify-content: center;
    }

    .btn {
        justify-content: center;
        display: flex;
        font-size: 1.0rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 1.0rem;
        text-align: center;
    }

    .hero-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-img div {
        width: 18rem;
    }

    .hero-section {
        flex-direction: column;

    }

    .hero-box div p {
        font-size: 14px;
    }

    /* section 2 */
    .native-heading {
        font-size: 1.7rem;
    }

    .native-form-p {
        font-size: 18px;
        white-space: nowrap;
    }

    .text-one {
        font-size: 18px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #E4002B;
        border-radius: 50%;
        text-align: center;
        color: #ffffff;
    }

    .text-two {
        font-size: 18px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .text-three {
        font-size: 18px;
        height: 1.8rem;
        width: 1.8rem;
        background-color: #ffffff;
        border-radius: 50%;
        text-align: center;
        color: #E4002B;
    }

    .form-label {
        font-size: 1rem;
    }
    .admit-para{
        font-size: 1.1rem;
    }
}


@media screen and (min-width:1280px) and (max-width:1600px) {
    .hero-heading {
        font-size: 1.9rem;
    }

    h2.hero-heading {
        font-size: 2.0rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.1rem;
        padding: 5px 0px;
    }

    .btn {
        font-size: 1.0rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 0.8rem;
    }

    .hero-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 0.8rem;
    }

    .hero-img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-img div {
        width: 18rem;
    }

    .hero-section {
        flex-direction: row-reverse;
    }

    .hero-box div p {
        font-size: 14px;
    }

    .hero-box div p {
        font-size: 14px;
    }

    .admission-left {
        padding-right: 175px;
    }
    .admit-para{
        font-size: 1.3rem;
    }
}
@media screen and (min-width:1601px) {
    .hero-heading {
        font-size: 1.9rem;
    }

    h2.hero-heading {
        font-size: 2.0rem;
        font-style: italic;
    }

    .hero-para {
        font-size: 1.1rem;
        padding: 5px 0px;
    }

    .btn {
        font-size: 1.0rem;
        margin: 0 auto;
    }

    .hero-para2 {
        font-size: 0.8rem;
    }

    .hero-icon {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 0.8rem;
    }

    .hero-img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-img div {
        width: 18rem;
    }

    .hero-section {
        flex-direction: row-reverse;
    }

    .hero-box div p {
        font-size: 14px;
    }

    .hero-box div p {
        font-size: 14px;
    }

    .admission-left {
        padding-right: 175px;
    }
    .admit-para{
        font-size: 1.3rem;
    }
}



/* keyframe */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-img {
    animation: rotate360 60s linear infinite;
}

.bg-container-3
{
    background: rgba(0, 0, 0, 0.6);
}
.bg-form-check
{
    background: rgba(255, 255, 255, 0.2);
}
.form-text
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}