html,
body {
    overflow-x: hidden;
}
.main-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .mob-bnr{
    display: none !important;
  }

  .overlay-text {
    position: absolute;
    bottom: -1%; 
    right: -10%; 
    background: rgb(58, 15, 15);
    padding: 15px 20px;
    border-left:4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 18px;
    animation: upDown 1.5s ease-in-out infinite;
    color: orange;

  }

  .highlight-number {
    font-size: 22px;
    color: white;
    font-weight: bold;
  }
  @keyframes upDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

.container-box h3 {
    color: rgb(63, 25, 15);
  font-size: 1.3rem;

}

.container-box h3 img{
    background-color: #612908;
    color: white;
    border-radius: 50%;
    padding: 7px;
    margin-right: 8px;
   
}

.banner-sub {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.banner-box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.container-box {
    background:#E6D5B8;
  background-color: #fbf7ec;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    width: 300px;
   
    color: rgb(6, 25, 43);
}

.accreditation {
    background-color: rgb(29, 6, 6);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    background-image: url("../images/acc-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.section-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 16px;
    color: #aaa;
    color: rgb(255, 255, 255);
    margin: 0 auto 40px;

}

.accreditation-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.accreditation-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.accreditation-track {
    display: flex;
    gap: 20px; 
    width: max-content;
    animation: scroll 10s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Duplicate content to create a seamless loop */
.accreditation-track::after {
    content: "";
    display: flex;
    gap: 20px;
}


.accreditation-item {
    min-width: 300px;
    text-align: center;
    padding: 10px;
    margin: 0 15px;
    background: rgba(41, 39, 39, 0.1);
    background-color: white;
    border-radius: 20px;

}


.accreditation-item:hover {
    transform: scale(1.1);
}

.accreditation-item img {

    height: auto;

    margin-bottom: 10px;
}

.accreditation-item p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.program-overview {
    padding: 50px 0;


}

.container-prg {
    max-width: 1200px;
    margin: auto;

}

.prg-title {

    border-bottom: 3px solid rgb(243, 108, 29) !important;
    display: inline-block;
}

.overview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.overview-text {
    width: 50%;

}

.overview-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;

}

.number {
    font-size: 60px;
    font-weight: bold;

    margin-right: 15px;
    color: white;
    -webkit-text-stroke: 3px #f77d27;

}

.text-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #612908;


}

.text-content p {
    font-size: 16px;
    color: #555;
}

.overview-visual {
    width: 40%;
    position: relative;

}

.image-container img {
    width: 100%;

    border-radius: 10px;

}

.scrolling-content {
    position: absolute;
    bottom: 10px;
    left: 50%;
    background: rgb(51, 14, 14);
    color: white;

    padding: 20px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    gap: 20px;
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.specializations {

    padding: 60px 20px;
    text-align: center;
    background-image: url('../images/mba-special.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
  
    color: white;
}

.section-description {

    color: white;
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;

}

.specialization-card {
    background: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;

}

.specialization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


.specialization-card img {
    font-size: 10px;
    margin-bottom: 10px;
}

.specialization-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;

}

.specialization-card p {

    color: #666;
}

.spec-btn {
    background-color: #f77d27;
    display: inline-block;
    padding: 10px;
    color: white !important;
    border-radius: 10px;
}

.university-container {
    text-align: center;
    padding: 40px 20px;
}



.university-text p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 30px;
}

.universities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.university-card {
    background: rgba(255, 255, 255, 0.2);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
}

.university-card:hover {
    transform: translateY(-5px);
}

.university-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.university-card h3 {
    font-size: 1.8rem;
    color: #222;
    margin-top: 10px;
}

.un-btn {
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    background-color: #270404;
    color: white;
}



.container-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.row-data {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}


.hexagon {
    position: relative;
    width: 55px;
    height: 55px;
    background-color: #d2833f;
    margin-right: 20px;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 27.5px solid #d2833f;
}

.hexagon:after {
    top: 100%;
    width: 0;
    border-top: 27.5px solid #d2833f;
}

.box-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
}

.text-box {
    background-color: #f5d5b2;
    border-radius: 25px;
    padding: 20px;
    flex: 1;
    color: #2b2b2b;
    display: flex;
    align-items: center;
}

.text-box p {
    margin: 0;
}

.icon-compass:before {
    content: "\1F9ED";
}


.icon-lightbulb:before {
    content: "\1F4A1";
}

.icon-gavel:before {
    content: "\1F3D1";
}

.icon-briefcase:before {
    content: "\1F4BC";
}

.icon-book:before {
    content: "\1F4DA";
}

.service-point {
    background: #612908;
    padding: 4px 40px;
    border-radius: 15px;
    width: 54%;
    position: absolute;
    left: 20%;
    bottom: -75px;
}

.service-point h2 {
    color: #f2a502;
}

.service-point p {
    font-size: 0.889em;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 300;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.custom-list li {
    font-size: 1.4rem;
    color: white;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-list i {
    color: #f2a502;
    /* Blue Check Icon */
    font-size: 2rem;
}

.img-mob {
    border-radius: 20px;
}

.admission-process {
    text-align: center;
    padding: 50px 20px;

}


.adm-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.adm-title strong {
    color: #ff7f00;
    border-bottom: 3px solid #ff7f00;
    padding-bottom: 3px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.container-adm {
    padding: 60px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;

}

.circle {
    width: 50px;
    height: 50px;
    background-color: #ff7f00;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.line {
    height: 3px;
    width: 100px;
    background-color: #fa6019;
}

.step h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    color: #333;
}

.step p {
    font-size: 1.6rem;
    color: #666;
    margin-top: 5px;
}

.career {
    background-color: #270404;
}
.testimonials-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    border-radius: 10px;

    overflow: hidden;
}

.test-title {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: rgb(41, 6, 6);
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.test-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #ff6600;
    margin:  auto;
    border-radius: 2px;
}


.swiper {
    width: 100%;
}

.swiper-slide {
    background: #1d1008;
    border-radius: 12px;
    padding: 30px 40px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    text-align: center;
   
}

.testimonial-content {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    word-wrap: break-word;
   
 
}

.student-info {
    font-weight: bold;
    font-size: 24px;
    color: #d3c7c7;
}

.str i{
    color: rgb(223, 171, 30);
}

.student-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 4px solid #ff6600;
}

.swiper-pagination-bullet {
    background: #ff6600 !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #f36c11 !important;
    opacity: 1;
}

.bottom-sec{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
 
}


.call-action{
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ebce98;
    padding: 35px;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.content-box{
    flex: 1;
    text-align: left;
}

.content-box p{
    font-size: 16px;
    line-height:2;
    color:rgb(30, 46, 77);
    text-align: justify;
    
}


.cta-section{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


.cta-btn{
    background: #160d0b;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.cta-btn:hover{
    background:rgb(233, 145, 30) ;
}

.img-box{
    flex: 1;
    display: flex;
    justify-content: center;
}

.img-box img{
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}


.bottom-sec {
    position: relative;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.bottom-sec::before,
.bottom-sec::after {
    content: "";
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    background: #c25d1a;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
    z-index: -1;
}

.bottom-sec::before {
    left: 0;
}

.bottom-sec::after {
    right: 0;
    transform: scaleX(-1);
}




@media (max-width: 768px) {
    .call-action {
        flex-direction: column;
        text-align: center;
    }

    .img-box img {
        max-width: 100%;
    }

    .cta-section {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .test-title {
        font-size: 2rem;
    }

    .swiper-slide {
        padding: 20px;
    }

    .testimonial-content {
       width: 600px;
       margin-left: 0;
       text-align: center;
    }

    .student-info {
        font-size: 18px;
    }
}

@media (max-width: 600px) {

    .testimonial-content {
        width: 450px;
    }

}





@media (max-width: 480px) {
    .test-title {
        font-size: 1.8rem;
    }

    .swiper-slide {
        padding: 15px;
        width: 100% !important;
       
       margin: 0;
       
    }

    .testimonial-content {
        font-size: 14px;
        width: 400px;
        padding: 20px;
    }

    .student-info {
        font-size: 16px;
    }
}










@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .line {
        height: 40px;
        width: 3px;
    }

 
}




/* Responsive Design */
@media (min-width: 1023px) and (max-width: 1279px) {

    .service-point {
        padding: 4px 20px;

    }

    .service-point {
        padding: 4px 20px;
    }

    .service-point p {
        font-size: .86em
    }

}

@media (min-width: 1280px) and (max-width: 1359px) {


    .service-point {
        padding: 4px 20px;
    }

    .service-point {
        padding: 4px 20px;
    }

    .service-point p {
        font-size: .86em
    }
}

@media (min-width:1360px) and (max-width:1680px) {
    .service-point {
        padding: 4px 20px;
    }
}

@media (max-width:560px) {
    .service-point {
        width: 100%;
        position: unset;
        padding: 4px 15px;
    }
}


@media (min-width:681px) and (max-width: 768px) {

    .service-point {
        width: 80%;
        padding: 4px 4px 4px 8px;
        top: 0;
        left: 8%;
    }

    .service-point h2 {
        margin-top: 5px;
        font-size: 1.2em;
        margin-bottom: 5px;
    }

}

@media (min-width:769px) and (max-width:991px) {


    .service-point {
        width: 80%;
        padding: 4px 4px 4px 8px;
        top: 0;
        left: 8%;
    }

    .service-point h2 {
        margin-top: 5px;
        font-size: 1.2em;
        margin-bottom: 5px;
    }

}

@media (min-width:992px) and (max-width:1022px) {

    .service-point {
        width: max-content;
        position: unset;
        padding: 4px 15px;
    }

}


@media (min-width:768px) and (max-width:912px) {

    .service-point {
        margin-top: 30px;
        padding: 50px 20px;
        position: relative;
        bottom: 0;
    }

}


@media (max-width: 1024px) {
    .universities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .universities {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .specialization-card {
        padding: 20px;
    }

    .specialization-card i {
        font-size: 2rem;
    }

    .specialization-card h3 {
        font-size: 1.2rem;
    }

    .specialization-card p {
        font-size: 0.9rem;
    }
}








@media(max-width:768px) {
    .banner-box-container {
      flex-wrap: wrap;
    }

    .banner-sub {
        margin-top: -25px;
    }

    .section-title {
        font-size: 36px;
    }



}

@media(min-width:1800px) {
    .container-prg {
        max-width: 1600px;
    }

}

@media(max-width:1024px) {
    .program-overview {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media(max-width:820px) {
    .overview-content {
        flex-direction: column-reverse;

    }

    .overview-text {
        width: 100%;
    }

    .overview-visual {
        width: 60%;
    }

    .image-container {
        margin-bottom: 20px;
    }
}
.call-to-action-container {
    display: flex;
    align-items: center;
    justify-content:center;
  
    background: linear-gradient(to right, #121212, #292929);
    color: white;
    border-radius: 0 80px 0 80px;
    text-align: center;
    background: url('../images/mba5.jpeg');

 

    
}

.cta-content1 {


    text-align: center;
   
}


.cta-content1 p {
font-family:'Times New Roman', Times, serif;  
  margin-bottom: 20px;
    line-height: 1.6;
font-size: 20px;
width: 80%;
}

.cta-buttons-wrapper {
    display: flex;
  align-items: center;
  justify-content: center;
    margin-top: 20px;
}

.cta-button1 {
    background: #ff7300;
    border: 2px double rgb(219, 139, 34);
    color: white;
    padding: 12px 25px;
    font-size: 2rem;
    border-radius: 6px;
    text-decoration: none;
   background-color: transparent;
    transition: 0.3s ease;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.cta-button1:hover {
    background: #ff5900;
    transform: scale(1.05);
}

.cta-image-wrapper {
 
    text-align: right;
}

.cta-image-wrapper img {
   
    max-width: 200px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .call-to-action-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        background-image: none;
        background: linear-gradient(to right, #121212, #292929);
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .cta-buttons-wrapper {
        justify-content: center;
    }

    .cta-image-wrapper {
        text-align: center;
    }

    .cta-image-wrapper img {
        width: 100%;
        max-width: 300px;
      
    }
    .step{
        width:100% !important;
  
        max-width: 600px;
    }
  
}
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #080402; /* Professional dark blue */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cta-content {
    flex: 1;
    text-align: left;
    font-size: 14px;
}

.cta-content strong {
    font-size: 16px;
    color: #ffcc00; /* Highlight important text */
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-call,
.cta-enroll {
    background: #ffcc00;
    color: black;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.cta-call:hover,
.cta-enroll:hover {
    background: #e6b800;
}

.cta-call i,
.cta-enroll i {
    font-size: 16px;
}

@media (min-width:1800px){
    .banner-box-container{
        gap: 40px;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .sticky-footer {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .cta-button {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }

    .cta-call, .cta-enroll {
        width: 100%;
        text-align: center;
    }
}



/* *************************************** */

@media (max-width: 412px){
.specialization-card h3{
    font-size: 2rem;
}
}

@media(max-width:500px){
    .common-title{
        font-size: 2rem;
        
    }
    .step{
        width: 100%;
    }
    .specialization-card h3{
        font-size: 1.7rem;
    }
  .call-action{
    padding: 10px;
  }

  .testimonials-section {
    width: 100%;
    max-width: 500px; 
    margin: 0 !important;
    padding: 10px;
  }
  

  
  .swiper-slide {

    background: #1c0e0e;
    border-radius: 10px;
    text-align: center;
    color: white;
  }
  
  .testimonial-content {
    font-size: 10px;
  }
  
  .student-info {
    font-weight: bold;
  }
  
  .str {
margin-bottom: 30px;
  }

.testimonial-content{
    padding:20px;
    height: 25vh;
    font-size: 8px;
   text-align: justify;
   width: 90vw;

}

}

@media(max-width:853px){
   .banner-box-container{
   flex-wrap: wrap;
   } 

   .sm-para{
    font-size: 1.5rem;
   }
}

@media(max-width:912px){
    .steps{

      flex-wrap: wrap;  
    }


}

@media (max-width:400px){
    .section-title{
       font-size: 32px;
    }
}


@media(max-width:600px){
    .desk-bnr{
        display: none !important;
    }
    .mob-bnr{
        display: block !important;
    }
    .overview-visual {
        width: 100%; 
        text-align: center; 
    }

    .image-container img {
        width: 100% !important;
        height: auto; 
        display: block; 
    }

 
 
}