*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fab {
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
.navbar{
    background-color: #417EE8;
}

.fab:hover {
    transform: scale(1.5);
}

.applynow {
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
    
}
.applynow:hover {
    box-shadow: 0 0 15px rgba(9, 9, 15, 0.8);
    transform: translateY(-2px);
}

/* --------------------------- */
/* all animaton */
.anim {
    display: inline-block;
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }

  .anim:hover {
    animation: bounce 0.5s ease-in-out;
    font-weight: bolder;
    
  }

  @keyframes bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
    60% { transform: translateY(3px); }
    100% { transform: translateY(0); }
  }


/* ------------------------- */
.nav-link {
    position: relative;
    transition: color 0.3s ease-in-out;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #417EE8;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.nav-link:hover {
    color: #417EE8;
}
.nav-link:hover::after {
    transform: scaleX(1);
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.dropdown-item:hover {
    background: #417EE8;
    color: white;
    transform: translateX(5px);
}
.navimggg{
    height: 50px;
    
}

/* -------------------------------------------------------------- */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: #f8f8f8;
    position: relative;
}
.left-content {
    max-width: 50%;
    background-image: url(Images/home-bg.png);
    background-size: cover;
}
.right-content {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.carousel-inner img {
    max-width: 100%;
    border-radius: 10px;
}
.search-bar {
    margin-bottom: 20px;
    width: 100%;
}
.search-container {
display: flex;
align-items: center;
}

.search-bar {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
flex-grow: 1; 

}

/* ----------------------------------------------------- */

/* OUR ARRILIATIONS VADI IMG*/
.imgagege{
    background-image:url(Images/separator-yellow.png);
    background-repeat: no-repeat;
    position: relative;
    background-position-x: 100px;
    background-position-y: 40px;
    z-index: 1;
}

/* --------------------------------------- */

.mainin{
    
    padding: 9px;
    font-size: large;
    background-color: #417EE8;
    color: white;
}

.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden; 
}

.search-bar {
    padding: 10px;
    border: none;
    flex-grow: 1; 
    outline: none;
}

.ser {
    padding: 10px 15px;
    background-color: #417EE8;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ser:hover {
    background-color: blue;
}

.mainin:hover{
    background-color: rgb(35, 59, 198);
    color: white;
}

/* ---------------------------------------------------- */

.info-bar {
    background-color: #417EE8;
    color: white;
    padding: 10px 0;

}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 100px;
}
.info-icon {
    font-size: 20px;
}

/* ----------------------------------- */

.affiliations-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 100px;
    z-index: 0;
}
.affiliations-text {
    max-width: 60%;
}
.affiliations-text h2 {
    font-weight: bold;
}
.affiliations-text p {
    color: #666;
}
.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 50%;
    max-width: 55%;
    cursor:pointer;
}
.logo-item img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s;
}
.logo-item img:hover {
    transform: scale(1.1);
}
/* -------------------------------------------- */

.mainincard{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background-color: #f0f1f4;
}
.maincard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    max-width: 900px;
    width: 100%;
    background-color: #f0f1f4;
    

}
.card {
    width: 18rem;
    height: 400px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card img {
    transition: transform 0.3s ease-in-out;
}
.card:hover img {
    transform: scale(1.1);
}
.animated-heading {
text-align: center;
font-size: 2.5rem;
font-weight: bold;
opacity: 0;
animation: fadeSlideIn 1.5s ease-out forwards;

}

@keyframes fadeSlideIn {
0% {
    opacity: 0;
    transform: translateY(50px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
.animated-button {
    background-color: #417EE8;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    padding: 10px 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.animated-button:hover {
    background-color: rgb(5, 82, 214);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    

}

.cardbutton {
    padding-top: 80px;
    display: flex;
    padding-bottom: 80px;
    justify-content: center;
    background-color: rgba(240,241,245,255);
}

@media (max-width: 992px) {
    .maincard {
       /* grid-template-columns: repeat(2, 1fr);*/ /* 2 columns for tablets */
    }
}


@media (max-width: 600px) {
    .maincard {
       grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .coursesection {
        font-size: 40px;
        padding-top: 100px;
    }
}

@media (max-width: 500px) {
    .coursesection {
        font-size: 30px;
        padding-top: 80px;
    }
}

/* ------------------------------------------ */
.divider{
    height: 150px;
    width: 100%;
    position: relative;
    
}
.imager{
    height: 400px;
    width: 100%;
    z-index: 1;
    
}
/* ------------------------------------------------------- */

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    background-color: #417EE8;
}

.animated-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    padding-top: 70px;
    color: black;
    opacity: 0;
    animation: fadeSlideIn 1.5s ease-out forwards;
    /* background-color: #f0f1f5; */
}


@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding-top: 100px;
}

.card {
    width: 100%;
    max-height: 380px;
    background: white;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid white; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.1);
}

/* ------------------------------------------------- */

.animated-buttonn {
    background-color: white;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.animated-buttonn:hover {
    background-color: rgb(9, 81, 225);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cardbuttonn {
    padding-top: 50px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    background-color: #417EE8;

}
.endimg{
    height: 200px;
    width: 100%;
    background-color: orange;

}
.end{
    position: relative;
    height: 200px;
    width: 100%;
}
/* ------------------------------------------------------ */


.tesstestimonials-clean {
    color: #313437;
    padding: 50px 0;
    padding-left: 120px;
}

.tesstestimonials-clean p {
    color: #7d8285;
}

.tesstestimonials-clean h2 {
    font-weight: bold;
    color: inherit;
}

.tesstestimonials-container {
    display: flex;
    align-items: center;
}

.tesstestimonials-intro {
    flex: 1;
    max-width: 300px;
    text-align: left;
    padding-right: 30px;
}

.tesstestimonials-content {
    flex: 2;

}

.tesstpeople {
    display: flex;
    flex-wrap: wrap;
    
}

.tesstitem {
    margin-bottom: 32px;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    transform: translateY(30px);
    animation: tessfadeInUp 1s ease-in-out forwards;
}

.tesstitem:nth-child(1) {
    animation-delay: 0.3s;
}

.tesstitem:nth-child(2) {
    animation-delay: 0.6s;
}

.tesstitem:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes tessfadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tesstitem .tesstbox {
    padding: 30px;
    background-color: #f8f9fa;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.tesstitem .tesstbox:hover {
    transform: translateY(-5px);
}

.tesstauthor {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.tesstauthor img {
    max-width: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.tesstname {
    font-weight: bold;
    margin-bottom: 2px;
}

.tessttitle {
    font-size: 13px;
    color: #9da9ae;
}

@media only screen and (max-width: 787px) {
    .tesstestimonials-clean {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tesstestimonials-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tesstestimonials-intro {
        max-width: 100%;
        padding-right: 0;
    }

    .tesstpeople {
        flex-direction: column;
        align-items: center;
    }

    .tesstitem {
        max-width: 100%;
    }

    .tesstauthor {
        flex-direction: column;
        text-align: center;
    }

    .tesstauthor img {
        margin-bottom: 10px;
    }
}

/* ------------------------------------------- */

.why {
    padding-top: 50px;
    text-align: center;
    font-size: 50px;
    font-weight: bolder;  
    display: flex;
    text-indent: 300px;
    align-items: flex-start;
}

.mainboxji {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px;

}

.boxjii {
    width: 50%;
    background-color: #F0F5F8;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.8;
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    
    
    
}

.boxjii ul {
    padding: 0;
    list-style-position: inside;
}

.framimg {
    height: 250px;
    width: 300px;
    position: absolute;
    right: 230px;
    border-radius: 10px;
    margin-top: 60px;
}
@media (max-width: 992px){
    .framimg{
        position: absolute;
        left: 30px;
    }
}

@media (max-width: 992px){
    .why{
        font-size: 20px;
        text-align: center;
        display: block;
    }
}

/* --------------------------------------- */

.mainbooxx{
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            padding-left: 240px;
}
        .form-wrapper {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 800px;
        }
        .btn-submit {
            background-color: #417EE8;
            border: none;
        }
        .btn-submit:hover {
            background-color: #1f67e4;
        }

        @media (max-width: 992px) {
            .mainbooxx {
                padding: 30px;
            }
        
            .form-wrapper {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .mainbooxx {
                padding: 20px;
            }
        
            .form-wrapper {
                padding: 20px;
            }
        
            .row {
                /* flex-direction: column; */
            }
        
            .btn-submit {
                width: 100%;
                font-size: 1rem;
                padding: 10px;
            }
        }
        
        @media (max-width: 500px) {
            .mainbooxx {
                padding: 10px;
            }
        
            .form-wrapper {
                padding: 15px;
            }
        
            .btn-submit {
                padding: 12px;
                font-size: 1rem;
            }
        }
/* ------------------------POP UP IMAGE-------------------- */

  .image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    z-index: 5;
    padding: 100px;
}

.popup-container {
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 650px;
}

.popup-image {
    border-radius: 10px;
    max-width: 100%;   
    height: 400px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.close-btn:hover {
    background: darkred;
}

.image-overlay.show {
    opacity: 1;
    visibility: visible;
}
/* ---------------------BUTTON BOTTOM----------------------- */

.whatsapp-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: #25D366;
    padding: 5px;
    border-radius: 70%;
    font-size: 24px;
    cursor:text;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 2;

}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.inquiry-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #1f67e4;
    color: black;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.inquiry-btn:hover {
    transform: scale(1.1);
}
/* -----------------page up button----------------------- */
#scrollTopBtn {
    position: fixed;
    bottom: 70px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-color: #1f67e4;;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

#scrollTopBtn:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}
/* ------------------------------------------------------ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .social-icon {
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .social-icon:hover {
    transform: scale(1.2);
    color: #1166fa;; 
  }

  .slide-in {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .hover-link {
    position: relative;
    transition: color 0.3s ease-in-out;
  }

  .hover-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1f67e4;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }

  .hover-link:hover {
    color: #105ee5;; 
  }

  .hover-link:hover::after {
    transform: scaleX(1);
  }


  .course-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
}
.course-card:hover {
    transform: scale(1.05);
}
.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.course-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* ------------------------------------ */

.footanim {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }

  .footanim:hover {
    animation: bounce 0.5s ease-in-out;
    font-weight: bolder;
    
  }

  @keyframes bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
    60% { transform: translateY(3px); }
    100% { transform: translateY(0); }
  }


  .maininini {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.form-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.form-box .text {
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
}

.form-box .form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 600px;
}

.form-box .form input,
.form-box .form select {
    width: calc(50% - 10px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-box .form button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #1f67e4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-box .form input,
    .form-box .form select {
        width: 100%;
    }
}
/* ----------------------------------- */

/* Response */


@media (max-width: 992px) {
    .fab{
        display: none;
    }
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .applynow {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .left-content, .right-content {
        max-width: 100%;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 8px;
    }

    .whatsapp-btn img {
        width: 45px;
        height: 45px;
    }

    .info-bar {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .left-content{
        max-width: 100%;
    }

    .search-bar {
        width: 100%;
        padding: 8px;
    }

    .applynow {
        width: 90%;
        margin: 10px auto;
    }

    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        padding: 5px;
    }

    .whatsapp-btn img {
        width: 40px;
        height: 40px;
    }

    .info-bar {
        text-align: center;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    footer{
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-bottom: 20px;

    }
}

/* ---------------------------------------------------------- */

@media (max-width: 768px) {
    .hero-section {
        padding-left: 20px !important;
        text-align: center;
    }

    .upereditsec p {
        font-size: 32px !important; 
        line-height: 1.2 !important;
        text-indent: 0 !important;
        display: block;
    }

    .mediaaa {
        padding-right: 0px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mediaaa .col-sm-auto {
        width: 100%;
        text-align: center;
    }

    .mediaaa ul {
        padding-left: 0;
    }

    .input-group {
        width: 100%;
    }

    .btn-main {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 30px !important; 
    }
    .right-content {
        max-width: 100%;
        
    }
    .heading {
        padding-left: 20px !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .info-bar .info-item {
        text-align: center;
        padding: 10px;
    }

    .info-bar .info-item span {
        font-size: 20px;
    }

    .carousel img {
        height: auto;
        max-width: 100%;
    }
    .whatsapp-btn{
        position: fixed;
        bottom: 70px;
        right: 25px;
    }
}

@media (max-width: 576px) {
    .info-bar .row {
        flex-direction: column;
        align-items: center;
    }

    .info-bar .col-sm-6 {
        width: 100%;
        margin-bottom: 15px;
    }

    .carousel img {
        height: 250px; 
    }

    .affiliations-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .affiliations-text {
        max-width: 800px;
        margin-bottom: 20px;
    }
    .logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .logo-item img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}


/* ---------- */
@media (max-width: 1024px) {
    .logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .affiliations-text h2 {
        font-size: 32px;
    }

    .right-content{
        width: 100%;
    }

    .fas{
        line-height: 10px;
        padding: 20px;
    }
    .coursesection{
        padding-right: 100px;
    }
}

@media (max-width: 480px) {
    .logos {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 30px;
    }

    .affiliations-text h2 {
        font-size: 39px;
    }

    .affiliations-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .col-sm-4 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .coursesection {
        font-size: 40px;
        padding-top: 30px;
    }
}


@media screen and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .animated-heading {
        font-size: 44px;
    }

    .animated-buttonn {
        font-size: 16px;
        padding: 10px 20px;
    }
}


@media screen and (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .animated-heading {
        font-size: 20px;
    }

    .animated-buttonn {
        font-size: 14px;
        padding: 8px 16px;
    }
}


@media (max-width: 768px) {
    .boxjii{
        width: 800px;
     
    }
    .framimg{
        display: none;
    }
    .coursesection{
        padding-left: 30%;
    }
    .animated-heading {
        font-size: 44px;
    }
    .why{
        font-size: 30px;
        text-indent: 50px;
    }
}




@media (max-width: 768px) { 
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        width: 100%; 
    }
}

@media (max-width: 768px) { 
   

    .navbar {
        position: fixed !important; 
        top: 0;
        left: 0;
        width: 100%;

    }
    .navbar-brand img {
        max-width: 150px; 
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        width: 30px;
        height: 30px;
    }

    .offcanvas {
        width: 80%; 
    }

    .offcanvas-header {
        text-align: center;
    }
}

