body{
    font-family: Arial, sans-serif;
    background:#fff;
}

/* Desktop-specific layout */
@media (min-width: 992px) {
  .dropdown-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -1px;
  }
}

/* Mobile-specific layout */
@media (max-width: 991.98px) {
  .dropdown-menu .dropdown-menu {
    position: static;
    margin-left: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
  }
}

/**/

#mainNavbar {
    background: #fff;
    width: 100%;
    padding: 7px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    background: #fff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
    z-index: 9999;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo {
   height: 55px;
}

.site-name {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}
.brandname1 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 19px;
    display: block;
}
.list-group-item a {
    text-decoration: none;
    color: #483c8f;
}
#enqr {
    background: #ddd;
    padding: 10px;
    border-radius: 10px;
}

.quicklinks
{
    text-align: center;
    background: #4c4c4c;
    padding: 7px;
    color: #c6ccff;
    border-radius: 5px 20px 0px 20px;
}

/*

*/

.ticker {
    height: 182px;
    overflow: hidden;
}

.ticker-content {
    animation: scroll-up 10s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}

/**/

.menu {
    list-style: none;
    display: inline-block;
    background: #ddd;
    width: 100%;
}
.menu li {
    position: relative;
}

.menu a {
    display: block;
    padding: 17px;
    text-decoration: none;
    background: #ddd;
    color: #000;
   /* margin-left: 10px;
    min-width: 100px;*/
    width: 100%;
}

.menu a:hover {
    background: #444;
    border-radius: 4px;
}

/* Dropdown */
.submenu {
   display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
}

.submenu li {
    border-bottom: 1px solid #444;
    text-align: left;
}

.dropdown:hover .submenu {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #222;
    }

    .menu.active {
        display: flex;
    }

    .submenu {
        position: static;
        display: none;
        background: #333;
    }

    .dropdown.active .submenu {
        display: block;
    }
}

.menu,
.submenu,
.submenu-level2 {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 10px;
}

.menu > li {
    position: relative;
    display: inline-block;
}


/* First dropdown */

.dropdown:hover > .submenu {
    display: block;
}

/* Second dropdown */
.dropdown-sub {
    position: relative;
}

.submenu-level2 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #444;
    width: 100%;
}

.dropdown-sub:hover > .submenu-level2 {
    display: block;
}

.menu a:hover {
    background: #ddd;
    color: #0d6efd;
}


.logo {
   height: 55px;
}

.site-name {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}


/**/

.foot_letnews_img {
    width: 100%;
    height: auto;
}


/* Slider */
.carousel-item img{
    height:400px;
    object-fit:cover;
    border-radius:10px;
}

.news-box{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    height: auto;
}

.news-box h4{
    border-bottom:2px solid #0d6efd;
    padding-bottom:10px;
    margin-bottom:20px;
}

.news-item{
    margin-bottom:20px;
    padding-bottom:15px;
    border-bottom:1px solid #ddd;
}

/* About */
.about-section{
    padding:80px 0;
}

.section-title{
    font-weight:700;
    margin-bottom:20px;
}

/* Counter */
.counter-section {
    padding: 40px;
    margin-top: 10px;
    background: #ddd;
}
.counter-box{
    background: #3abefb;
    color: #fff;
    text-align:center;
    border:1px solid #ddd;
    border-radius: 10px;
}

.counter-box h2 {
    font-size: 26px;
    font-weight: bold;
    margin-top: 15px;
}

.boxcolor1{
    background: #96ca4b;
}
.boxcolor2{
    background: #ffbf43;
}
.boxcolor3{
    background: #3abefb;
}
.boxcolor4{
    background: #ff7e66;
}
.icon {
    float: left;
    font-size: 50px;
    height: 94px;
    padding-top: 13px;
    width: 100px;
}

/* Courses */

.course-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.course-box{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.course-box:hover{
    transform:translateY(-5px);
}

.course-box img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.course-content{
    padding:20px;
}

.course-content h3{
    margin-bottom:15px;
    color:#333;
}

.course-info{
    display:flex;
    justify-content:space-between;
    color:#666;
    font-size:15px;
}

.admission-cta {
    background: #ddd;
    padding: 42px;
    text-align: center;
}


/* Testimonials Section */

.testimonials {
    padding: 27px;
    background: #fff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 10px;
}

.section-title p {
    color: #64748b;
    font-size: 16px;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
    flex-shrink: 0;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #0f172a;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
}

@keyframes scrollTestimonials {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 768px) {

    .section-title h2 {
        font-size: 28px;
    }

    .testimonial-card {
        width: 280px;
        padding: 25px;
    }
}

.testimonial-card {
    position: relative;
    width: 465px
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.08),
        0 1px 2px rgba(0,0,0,0.04);
    transition: all .4s ease;
    overflow: hidden;
}

/* Top Gradient Border */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #2563eb,
        #7c3aed,
        #ec4899
    );
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(37,99,235,0.15);
}

.quote-icon {
    font-size: 60px;
    line-height: 1;
    color: #2563eb;
    opacity: 0.15;
    margin-bottom: 10px;
}

.testimonial-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.rating {
    color: #fbbf24;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.student-info h4 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
}

.student-info span {
    color: #64748b;
    font-size: 14px;
}


.location {
    background: #ddd;
    padding: 10px;
    margin-top: -42px;
    position: static;
    font-size: 22px;
    float: right;
    display: flex;
}
.sname{
    font-size: 16px;
}


.footer {
    background-color: #2e3742;
    padding: 40px;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
}



/* Page Header */

.page-header{
     background-color: rgba(0,0,0,.7);
    min-height: 50px;
    padding: 40px 0;
    display: inline-block;
    width: 100%;
    text-align: center !important;
}

.page-header h1 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #c6ccff;
    font-weight: bold;
}

.page-header p{
    font-size:18px;
    opacity:0.9;
}

/* About Section */


.about-image{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    height: 320px;
}




.breadcrumbs li {
    float: right;
    color: #fff;
}

.breadcrumbs li a{
   text-decoration: none;
    color: #fff;
}

p{

    text-align: justify;
}

.faculty_block {
    border: 2px solid #e5e5e5;
    margin-bottom: 0px;
    padding: 10px;
    width: 100%;
    text-align: center;
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.alink {
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
}

.form-control {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: .7rem 1rem;
margin-bottom: 20px;
margin-top: 20px;
}
.form-enq{
    padding: 10px;
}

#contact-icon {
    background: #ccced0;
    padding: 10px;
    border-radius: 10px;
    color: #0d6efd;
    margin-bottom: 10px;
}


/* Mobile Responsive */
@media screen and (max-width: 768px) {

.site-name {
    font-size: 17px;
    font-weight: bold;
    color: #000;
    margin-top: 16px;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.navbar-toggler {
    float: right;
    display: inline-block;
    margin-top: -12rem;
}

.navbar-brand {
    text-align: center;
}

#mainNavbar {
    background: #fff;
    width: 100%;
    padding: 7px;
    border-radius: 0;
    margin-top: 15px;
    padding-left: 30px;
    border: 1px solid #ddd;
}

.counter-section {
    padding: 15px;
    margin-top: 10px;
    background: #ddd;
    padding-top: 35px;
    padding-bottom: 35px;
}
.counter-box
{
    margin-bottom: 15px;
}
img.img-fluid.rounded.shadow {
    margin-top: 35px;
}
.courses {
    padding: 20px;
    margin-top: -2rem;
}
}