@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --grad1: #d54732;
  --grad2: #b35c50;
  --dashed1: rgba(198, 168, 255, 0.95);
  --dashed2: rgba(245, 142, 224, 0.95);
}

/* Normal state */
.btn-primary {
  background: linear-gradient(to right, var(--grad1), var(--grad2));
  border: 1px solid var(--grad1);
  color: #fff;
  transition: all 0.3s ease;
}

/* Hover state */
.btn-primary:hover {
  background: linear-gradient(to right, var(--grad2), var(--grad1));
  border-color: var(--grad2);
  color: #fff;
  box-shadow: 0 6px 20px rgba(213, 71, 50, 0.4);
  transform: translateY(-3px);
}

body {
  font-family: "Saira Semi Condensed", sans-serif;
  line-height: 1.6;
  color: #142336;
}

.home-btn {
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid #d54732;
  /* color: #000;
  background: transparent; */
  color: #FFF;
  background: #d54732;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background-color: #d54732;
  color: #fff;
  box-shadow: 0 6px 20px rgba(213, 71, 50, 0.4);
  transform: translateY(-3px);
}

.home-btn-outline {
  background: transparent !important;
  color: var(--grad1) !important;
  border: 2px solid var(--grad1) !important;
}

section {
  padding: 60px 0;
}

/* Navbar */
.navbar {
  padding: 0;
}

.navbar-nav {
  gap: 20px;
}

.navbar-brand img {
  height: 85px;
}

.navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  padding: 8px 15px;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link {
  color: #142336;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #d54732;
}

/* ------- 21 Dec 2025
.navbar {
    height: 120px; 
    padding-top: 0;
    padding-bottom: 0;
}

.navbar .navbar-brand img {
    height: 120px; 
    max-height: 100%; 
}
21 Dec 2025 
--------*/

.mega-menu {
  /* width: 1000px; */
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 3%;
  /* top: 100%;
    transform: translateX(-50%); */
}

.mega-row {
  display: flex;
  width: 100%;
  gap: 30px;
  padding: 20px;
}

.mega-row .col-left {
  flex: 0 0 35%;
}

.mega-row .col-right {
  flex: 1;
  height: 400px;
  overflow-y: auto;
  padding-right: 15px;
}

.mega-row .col-left a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-div {
  display: flex;
}


.menu-btn-close {
  display: none;
  margin: -14px 0px 12px 0;
  text-align: right;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
  color: #504f4f;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
}

.close-menu {
  background: transparent;
  border: none;
  outline: none;
  text-align: right;
  font-size: 20px;
  color: #504f4f;
}



.menu-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.58);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 98;
}

.menu-overlay.active {
  display: block;
}

.collapse {
  position: relative;
}

/* Popup Animation */
.modal.fade .modal-dialog {
  transform: scale(0.7);
  transition: all 0.4s ease-in-out;
}

.modal.fade.show .modal-dialog {
  transform: scale(1);
}

/*
button.submit-btn, button.submit-btn:hover {
    color: #ffffff;
    cursor: pointer;
    background: #d02f38;
    letter-spacing: 1px;
    border: 0;
    border-radius: 4px;
    outline: none;
} */
/* Modal body scrolls only if needed */
/*
.modal-body {
    padding: 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
} */

/* Widget wrapper */
.npf_wgts-wrapper {
  width: 100%;
  position: relative;
}

/* Widget iframe */
.npf_wgts-wrapper iframe {
  width: 100% !important;
  /* max-height: none !important;  /* let modal scroll instead */
  min-height: 470px;
  border: none;
}

.category-link {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}

.category-link.active,
.category-link:hover {
  font-weight: bold;
  background-color: #f8f9fa;
  border-left: 3px solid #d54732;
  color: #d54732;
}

.mega-menu .dropdown-menu.show {
  display: block !important;
}

.mega-menu .btn-primary {
  background-color: #d54732;
  border-color: #d54732;
  font-size: 14px !important;
  font-weight: 600;
}

/* Right courses */
.course-list {
  min-height: 150px;
}

.course-list .d-flex {
  gap: 5px;
}

.institute-name {
  font-size: 15px;
  /* smaller font */
  display: block;
  color: #d54732;
  font-weight: bold;
}

.course-title,
.institute-name {
  white-space: normal;
  text-transform: capitalize;
}

.course-title{
  font-size: 16px;
  font-weight: normal;
  color: #212529;
}
.course-div {
  display: flex;
  align-items: center;
}

.course-logo {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.course-name {
  flex: 1;
  min-width: 0;
  margin-left: 12px;
}

.course-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.b3 {
  border: 3px solid #d54732 !important;
}

/* Hero Section */
#heroCarousel .carousel-item {
  position: relative;
  /*height: 800px; */
  /*  min-height: 400px; */
  background-size: cover;
  background-position: center;
}

#heroCarousel .carousel-item img {
  /* object-fit: cover; */
  /* height: 100%; */
}

/* Keep your existing left-side text CSS */
#heroCarousel .carousel-caption {
  bottom: 29.5%;
  left: 8%;
  text-align: left;
  max-width: 650px;
  padding: 45px 50px 60px;
  color: #000;
}

/* New form CSS */
#heroCarousel .hero-form {
  left: auto;
  /* override left:8% */
  right: 8%;
  /* position form on the right */
  bottom: 20%;
  /* adjust vertical alignment */
  max-width: 500px;
  text-align: left;
  background: #FFF;
}

/*
#heroCarousel .carousel-caption {
  bottom: 29.5%;
  left: 8%;
  text-align: left;
  max-width: 650px;
    padding: 45px 50px 60px;
  color: #000;
}
*/
#heroCarousel .carousel-caption h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #142336;
}

#heroCarousel .carousel-caption .btn {
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
}


#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 50px;
  height: 100px;
  /*background-color: #ffffff80;*/
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-size: 100% 70%;
  background-repeat: no-repeat;
  background-position: center;
}

#heroCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.5 1 7 4 4.5 7 5.5 8 9 4 5.5 0z'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

#heroCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.5 1 7 4 4.5 7 5.5 8 9 4 5.5 0z'/%3E%3C/svg%3E");
}

#heroCarousel .carousel-control-next-icon,
#heroCarousel .carousel-control-prev-icon {
  width: 112px;
  height: 40px;
}

.features-section {
  position: relative;
  width: 100%;
  z-index: 10;
  margin-top: -290px;
  padding: 40px 0;
}

.feature-box {
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #DDD;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h5 {
  padding-top: 35px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

h5.sub-head-text {
  font-size: 18px;
  color: #d54732;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h3.head-text {
  font-size: 35px;
  color: #142336;
  font-weight: 600;
}

/* Partners */

/* Partner Logo Slider */
.starc-life-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.starc-life-track {
  display: flex;
  width: calc(200%);
  animation: scroll-left 40s linear infinite;
}


.starc-life-track .slide {
  display: flex;
}

.partner-track1 img {
  max-height: 75px;
  margin: 0 40px;
  object-fit: contain;
  transition: transform 0.3s;
}




.starc-life-track1 {
  display: flex;
  width: calc(200%);
  animation: scroll-left 40s linear infinite reverse;
}

.partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* spacing between tracks */
}

.partner-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.track-left {
  animation-name: scroll-left;
  animation-direction: normal;
  /* left to right */
}

.track-right {
  animation-name: scroll-left;
  animation-direction: reverse;
  /* right to left */
}

.gallery-slider .track-right {
  animation: scroll-left 60s linear infinite;
  animation-name: scroll-left;
  animation-direction: reverse;
  /* right to left */
}

.partner-track img {
  max-height: 85px;
  margin: 0 15px;
  border: 1px solid #d7d9dbba;
  object-fit: contain;
  transition: transform 0.3s;
}

.starc-life .partner-track img {
  max-height: 224px;
  margin: 0 10px;
  object-fit: contain;
  transition: transform 0.3s;
  border-radius: 25px;
}

/* Pause on hover */
.partner-slider:hover .partner-track {
  animation-play-state: paused;
}



/* Responsive */
@media (max-width: 768px) {
  .partner-track img {
    max-height: 75px;
    margin: 0 10px;
  }
}


.theme-color {
  background-color: #d54732 !important;
  color: #fff !important;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* Courses Cards */

#offerCarousel .card {
  border: none;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
  background: #fff;
}

#offerCarousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

#offerCarousel .carousel-inner {
  padding-bottom: 18px;
}

#offerCarousel .carousel-item {
  height: auto;
}

#offerCarousel .carousel-indicators,
#Eventscarousel .carousel-indicators,
#testimonialCarousel .carousel-indicators,
#testimonialCarousel1 .carousel-indicators,
#learnerCarousel .carousel-indicators,
#testimonialCarouselMobile .carousel-indicators {
  position: static !important;
  margin-top: 20px;
  margin-bottom: 0px;
  justify-content: center;
}

#offerCarousel .carousel-indicators button,
#Eventscarousel .carousel-indicators button,
#testimonialCarousel .carousel-indicators button,
#testimonialCarousel1 .carousel-indicators button,
#learnerCarousel .carousel-indicators button,
#testimonialCarouselMobile .carousel-indicators button {
  background-color: #000;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}



#offerCarousel .carousel-indicators li,
#Eventscarousel .carousel-indicators li,
#testimonialCarousel .carousel-indicators li,
#testimonialCarousel1 .carousel-indicators li,
#learnerCarousel .carousel-indicators li,
#testimonialCarouselMobile .carousel-indicators li {
  background-color: #000;
}

.card-body {
  padding: 25px 20px 50px;
  position: relative;
}

.card-title {
  color: #d54732;
  font-weight: 600;
}

.card-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10PX !important;
}

a.card-btn {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}
span.card-btn {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

a.card-btn:hover, span.card-btn:hover {
  color: #d54732;
  ;
}
span:hover{
  text-decoration: none;
}

#counter {
  padding: 30px 0px;
  /* background-color: rgba(69, 134, 213, 0.2) !important; */
  background-color: rgb(178 184 190 / 20%) !important;
}

#counter h2 {
  font-size: 44px;
  color: #142336;
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 46px;
  margin-bottom: 10px;
  margin-top: 10px;
}

#counter p {
  color: #142336;
  font-weight: 600;
  font-size: 22px;
}

.about__pic img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

/* About */
.about .about__pic {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 10px;
}

.about .about__pic .little_pic {
  position: relative;
  float: right;
  border: 10px solid #ffffff;
  margin-top: -170px;
  z-index: 1;
}

.about__text {
  margin-bottom: 40px;
  /* padding-top: 20px; */
}

.about__text .section-title {
  margin-bottom: 30px;
}

.section-title h5 {
  font-size: 18px;
  color: #d54732;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 32px;
  color: #142336;
  font-weight: 600;
}

.about__text p {
  color: #142336;
  line-height: 28px;
  margin-bottom: 12px;
}

.about__text ul {
  list-style-position: inside;
  padding-left: 0;
  /* padding-bottom: 30px; */
}

.about__text ul li {
  font-size: 16px;
  color: #142336;
  margin-bottom: 14px;
  list-style: none;
}

ul li i {
  color: #d54732;
  margin-right: 8px;
}

/* Sector Course */
.sector-courses ul {
  /* display: flex; */
  justify-content: center;
  border-bottom: none;
  padding-bottom: 50px;
}

.sector-courses .nav-tabs .nav-link {
  border: none;
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
}

.sector-courses .nav-tabs .nav-link.active {
  border-bottom: 3px solid #d54732;
  font-weight: bold;
  color: #d54732;
  background-color: transparent;
}

.sector-courses .card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.sector-courses .card:hover {
  transform: translateY(-5px);
}

.sector-courses .card .card-body img {
  width: 120px;
}

.sector-courses .card .card-body .card-text {
  padding: 15px 0px;
  font-size: 24px;
  color: #000;
}

.sector-courses .card .card-body ul {
  padding-bottom: 10px;
}

.sector-courses .card .card-body a {
  text-decoration: none;
}

.sector-courses .card .card-body .card-btn {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #d54732;
  font-size: 14px;
  border-radius: 6px;
  /* padding: 14px 36px 12px; */
}

.sector-courses ul li i {
  color: #d54732;
  margin-right: 0px;
  vertical-align: middle;
}

.fixed-icon-width {
  display: inline-block;
  min-width: 20px;
  text-align: center;
  font-size: 12px;
}

.ouradvantages .tab-content {
  display: none;
}

/* Quote */
.quote-section {
  display: flex;

}

.quote-box {
  background-color: #4586D5;
  color: #fff;
  width: 50%;
  padding: 100px 80PX;
}

.quote-box h2 {
  font-weight: 600;
  color: #fff;
}

.quote-box .form-control {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  height: calc(2.5em + .75rem + 2px);
}

.quote-box .form-group {
  margin-bottom: 30px;
}

.quote-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.quote-box select.form-control option {
  color: #000;
}

.quote-box .btn-warning {
  border-radius: 0;
  padding: 10px 20px;
}

/* Right side background */
.quote-bg {
  background: url('../img/images/quote.webp') center center no-repeat;
  background-size: cover;
  /*min-height: 100vh; */
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play button */
.play-btn {
  background-color: #d54732;
  color: #fff;
  font-size: 28px;
  padding: 10px 22px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.play-btn:hover {
  background-color: #d54732;
}


/* MBA Section */
.mba-section h2 {
  font-weight: 600;
}

.mba-head {
  padding-bottom: 30px;
}

.mba-section .btn-outline-warning {
  font-weight: bold;
  border: 2px solid #d54732;
  border-radius: 0;
}

.program-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
  text-align: center;
  cursor: pointer;
}

.program-card img {
  width: 100%;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.program-card:hover img {
  transform: scale(1.05);
}

.program-card h6 {
  font-weight: 600;
  margin-top: 10px;
  padding: 30px 0px;
}

/* View Details hidden by default */
.program-card .details-link {
  visibility: hidden;
  margin-top: 5px;
  color: #d54732;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.program-card:hover .details-link {

  visibility: visible;
  transform: translateY(-5px);
}

.program-card .details-link:hover {
  text-decoration: underline;

}

/* Support */
.hero-banner {
  position: relative;
  background: url('../img/images/support.webp') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content .sub-title {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-content .title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-cta {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #e6b800;
}

.read-more-btn {
  color: #d54732;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

.read-more-btn:hover {
  color: #d54732;
  text-decoration: underline;
}


/* Testimonials */
#testimonialCarousel {
  padding-top: 40px;
}

.testimonial-box {
  border-top: 5px solid rgba(69, 134, 213, 0.2);
  background: #fff;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
  padding: 50px 35px;
}

.testimonial-box:hover {
  border-top: 5px solid #d54732;
}

.testimonial-box::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.testimonial-box p {
  font-size: 16px;
}

.client-info {
  padding-left: 30px;
}

.test-data {
  padding-left: 20px;
  padding-top: 10px;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.client-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.client-info small {
  font-size: 14px;
  color: #d54732;
  font-style: italic;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333 !important;
}

.carousel-indicators .active {
  background-color: #000 !important;
}

/* Blog Section */
.blog-section {
  padding-bottom: 5%;
}

.blog-card {
  margin-bottom: 30px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-tag {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: #d54732;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.blog-content {
  padding: 15px;
}

.blog-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-content .meta {
  font-size: 14px;
  color: #666;
}

.blog-content .meta a {
  color: #d54732;
  text-decoration: none;
}

/* Footer CTA */
.footer-cta {
  display: none;
  background: #4586d5;
  padding: 40px 0;
  position: relative;
  top: -115px;
}

.footer-cta h6 {
  color: #fdd835;
  font-size: 19px;
  letter-spacing: 1px;
}

.footer-cta h3 {
  font-size: 40px;
  font-weight: 600;
}

.footer-logo {
  max-width: 120px;
}

.footer-cta .phone {
  font-size: 18px;
  font-weight: bold;
  color: #fdd835;
}

.text-black {
  color: #000 !important;
}

/* Main Footer */
.main-footer {
  background: rgb(178 184 190 / 20%) !important;
}

.main-footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  color: #d54732;
  text-decoration: underline;
}

.main-footer .news-text {
  padding: 10px 10px;
}

.main-footer .news-text p {
  font-size: 15px;
}

.main-footer .form-control {
  background-color: transparent;
  border-radius: 0px;
  line-height: 1.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.main-footer a {
  color: #142336;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #d54732;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #d54732;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #d54732;
}

.news-item p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.news-item small {
  color: #bbb;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid #0d1b2a;
  background-color: #0d1b2a;
}

/*
.footer-bottom p {
  margin-bottom: 0px;
  padding: 30px 0px;
}
*/
.footer-bottom a {
  text-decoration: none;
}

.footer-bottom-links a {
  color: #ffffff;
  margin: 0 6px;
  text-decoration: none;
  font-size: 15px;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* @media (max-width: 1721px) {
  .features-section {
    bottom: 16%;
  }
} */

/* Course CSS Start */
/* Banner Section */
.banner-section {
  position: relative;
 /*  background: url('../img/images/job.webp') no-repeat center center/cover;
  height: 450px; */
  color: #fff;
}

.banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
}

/* .banner-content {
  position: relative;
  z-index: 2;
} */

.banner-content {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.banner-section img{
  width: 100%;
  height: auto;
}

.banner-content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

/*
.banner-section {
    position: relative;
    height: 355px;           
    color: #fff;
    overflow: hidden;
    text-align: left;        
    display: flex;
    align-items: center;    
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain;    
    z-index: 1;
    background-color: #000;   
}

.banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);  
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;        
    margin: 0 auto;
    padding: 0 15px;
} */

.btn-cta {
  display: inline-block;
  background: #d54732;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #fff;
  color: #d54732;
  text-decoration: none;
}

section.info-area {
  padding: 35px 0px;
}

/* Floating Info Card */
.info-card {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.info-item {
  /* text-align: center; */
  flex: initial;
  padding: 10px;
  /* border-right: 1px solid #ddd; */
}

.info-item:last-child {
  border-right: none;
}

.info-item h6 {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.info-item p {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

/* Breadcrumb container */
.breadcrumb-nav {
  background: #fff;
  padding: 15px 0;
  font-size: 14px;
}

/* Breadcrumb styling */
.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
  /* content: "â€º"; */
  color: #999;
  padding: 0 8px;
}

/* Links */
.breadcrumb a {
  text-decoration: none;
  color: #d54732;
  transition: 0.3s;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Active item */
.breadcrumb-item.active {
  color: #444;
  font-weight: 500;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Tabs container */
.program-tabs {
  background: #fff;
  border-bottom: 2px solid #eee;
  text-align: center;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Tabs list */
.program-tabs ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

/* Tab links */
.program-tabs ul li a {
  text-decoration: none;
  color: #444;
  position: relative;
  transition: 0.3s;
  font-size: 16px;
}

/* Hover & Active */
.program-tabs ul li a:hover,
.program-tabs ul li a.active {
  color: #d54732;
  font-weight: 500;
}


.program-tabs ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #000;
}

/* Section spacing */
section.programtabs {
  padding: 30px 20px;
  scroll-margin-top: 120px;
}

.programbox {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 20px;
}

/* Section Title */
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #d54732;
  margin-bottom: 20px;
  position: relative;
}

/* Yellow underline like screenshot */
/* .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #000;
} */

/* Highlight Box */
.highlights-text ul {
  padding-left: 20px;
}

/* Each Item */
.highlight-item {
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.highlight-item img {
  width: 34px;
  height: 34px;
  margin-right: 12px;
}

.highlight-item p {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.programtext {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.programtext ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  list-style-type: none;
  padding: 0 20px;
}

.programtext li {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}



.fee-structure h4 {
  padding: 2px 0px;
  font-weight: 500;
  font-size: 22px;
}

.fee-structure h4 span {
  font-weight: 700;
}

.fee-structure .fee-btn {
  padding-top: 20px;
  padding: 20px;
}

.buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


/* Course CSS End */
/* Sidebar container */
.social-sidebar-icon-right {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  /*  display: none; */
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-sidebar {
  position: fixed;
  top: 50%;
  /*  left: 0; */
  /*  bottom: 70px; */
  right: 10px;
  /*  transform: translateY(-50%); */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}


.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px 0px 0px 5px;
  /* transition: all 0.3s ease; */
}


/* .social-icon:hover {
  background-color: #ffcc00;
  color: #111;
  transform: translateX(5px);
  text-decoration: none;
} */


.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.instagram {
  background-color: #e4405f;
}

.linkedin {
  background-color: #0077b5;
}

.youtube {
  background-color: #CD201F;
}

.process-section {
  overflow-x: auto;
}



.header-red-contact .social-sidebar-icon-right{
  position: initial;
  flex-direction: row;
  transform:none;

}

.header-red-contact .social-sidebar-icon-right .facebook {
  background-color: transparent;
}

.header-red-contact .social-sidebar-icon-right .twitter {
  background-color: transparent;
}

.header-red-contact .social-sidebar-icon-right .instagram {
  background-color: transparent;
}

.header-red-contact .social-sidebar-icon-right .linkedin {
  background-color: transparent;
}

.header-red-contact .social-sidebar-icon-right .youtube {
  background-color: transparent;
}
/* .process-section{
      padding: 70px 20px;
      
    } */

.process-wrapper {
  display: flex;
  gap: 70px;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
  max-width: 1400px;
}

.process-wrapper::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 120px;
  right: 120px;
  height: 2px;
  border-top: 3px dotted var(--dot);
  z-index: 0;
}

/* Add small arrows along the line */
.process-wrapper::after {
  content: "";
  position: absolute;
  top: 68px;
  right: 120px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--dot);
  z-index: 1;
}

.process-step {
  width: 200px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .process-step:nth-child(even){
      flex-direction: column-reverse;
    } */

.circle {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--grad1), var(--grad2));
  color: #fff;
  margin: 0 0 18px;
  box-shadow:
    0 0 0 18px rgba(235, 210, 255, 0.45),
    0 0 38px rgba(163, 72, 255, 0.28),
    0 24px 40px rgba(0, 0, 0, 0.14);
}



/* .process-step:nth-child(even) .circle{
      margin: 18px 0 0;
    } */

.circle i {
  font-size: 36px;
  z-index: 2;
}

.circle .number {
  margin-top: 111px;
  position: absolute;
  font-size: 45px;
  color: rgb(255 248 248 / 34%);
  z-index: 0;
  font-weight: 700;
}

/* Title and list container */
.meta {
  width: 100%;
  display: block;
  text-align: center;
  padding-top: 12px;
}

.meta h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.meta ul li {
  font-size: 13.5px;
  color: #555;
  margin-bottom: 6px;
}

/* .process-step:last-child::after {
  display: none;
} */


/* .process-step::before{
      content:"";
      position:absolute;
      width:10px;
      height:10px;
      right: -50px;
      top: 115px;
      transform: rotate(45deg);
      border-right:3px solid var(--dashed1);
      border-bottom:3px solid var(--dashed1);
      border-radius:1px;
      z-index:2;
      background:transparent;
    }
    .process-step:nth-child(even)::before{
      top: -8px;
      border-right:3px solid var(--dashed2);
      border-bottom:3px solid var(--dashed2);
      transform: rotate(-135deg);
    } */
    .process-step::before {
      content: "";
      position: absolute;
      top: 75px;
      left: -193px;
      width: 180px;
      height: 2px;
      border-top: 3px dotted #000;
      z-index: 0;
  }

.process-step::after {
  content: "";
  position: absolute;
  top: 70px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #4e4b4a;
  z-index: 1;
}

/* Hide connector for first step */
.process-step:first-child::before,
.process-step:first-child::after {
  display: none;
}

/* Responsive tweaks */
@media (max-width: 1100px) {
  .process-wrapper {
    gap: 40px;
  }

  .process-wrapper::before {
    top: 140px;
  }
}

@media (max-width: 820px) {
  .process-wrapper {
    min-width: unset;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle .number {
    margin-top: 90px;
  }

  .process-wrapper::before {
    display: none;
  }

  .process-step::after,
  .process-step::before {
    display: none;
  }

  .process-step {
    width: 180px;
  }
}

@media (max-width:480px) {
  .circle {
    width: 150px;
    height: 110px;
  }

  .circle .number {
    font-size: 52px;
  }

  .process-wrapper {
    flex-direction: column;
  }

  .meta ul li {
    font-size: 13px;
  }

  .process-step {
    width: 100%;
    flex-direction: row;
  }

  .process-step:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.tabs-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.tabs {
  display: flex;
  /* background: #f5f5f5; */
  /* border-radius: 8px; */
  overflow: hidden;
  margin-bottom: 15px;
  gap: 20px;
}

.tab {
  flex: 1;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  background: #f5f5f5;
  color: #444;
  font-weight: 600;
  /* border-bottom: 3px solid transparent; */
  transition: all 0.3s ease;
}

.tab:hover {
  background: #eaeaea;
}

.tab span {
  padding-right: 10px;
}

button:focus {
  outline: 0;
}

.tab.active {
  background: #333539;
  color: #fff;
}

.btn-warning {
  background-color: #d54732;
  border-color: #d54732;
  color: #fff;
}

.tab-content {
  padding: 40px 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.tab-content ul li {
  list-style: none;
}

.tab-content.active {
  display: block;
}

.webcontent-box {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 50px;
}

.webcontent-box p span {
  font-size: 14px;
}

.webcontent-box ul li {
  list-style: none;
}

/* 
.faq-section {
    max-width: 1000px; 
    margin: 60px auto;
    padding: 0 20px 0px 100px;
    } */

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #0d3b82;
}

.faq {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-header {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d54732;
  border: 1px solid #d54732;
  background-color: transparent;
  border-radius: 10px;
}
/* .faq-header {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  background-color: #d54732;
} */
.faq-header p{
  margin-bottom: 0;
}
/* 
    .faq-header:hover {
      background: #f3f6ff;
    } 
    */

.faq-header span {
  transition: transform 0.3s ease;
  font-size: 30px;
  line-height: 30px;
}

.faq.active .faq-header span {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  padding: 15px 0;
  margin: 0;
}

.faq.active .faq-body {
  /* max-height: 375px; */
  max-height: 100%;
}

.web-bg {
  background-color: #fff;
}

/* About section Start */
.page-section {
  position: relative;
  background: url("../img/images/course.webp") center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.page-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.page-section .header-content {
  position: relative;
  z-index: 2;
}

.page-section h3 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.page-section p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-section p a {
  color: #d54732;
  text-decoration: none;
  font-weight: 500;
}

.page-section p a:hover {
  text-decoration: underline;
}

.bottom-section {
  padding-bottom: 150px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-section {
    height: 280px;
  }

  .page-section h1 {
    font-size: 32px;
  }

  .page-section p {
    font-size: 14px;
  }
}

/* About section End */
.contact-details .contact-box {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-details .contact-box .fa {
  color: #d54732;
  font-size: 40px;
  padding: 20px 0;
}

.contact-details .contact-box h5 {
  color: #000;
  font-size: 18px;
}

.contact-details .contact-box p,
.contact-details .contact-box p a {
  font-size: 20px;
  color: #000;
}

.contact-form-data {
  background: #f9f9f9;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.contact-form-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.contact-form-box h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #222;
}

.contact-wrapper .form-group {
  margin-bottom: 18px;
}

.contact-wrapper .form-group input,
.contact-wrapper .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-wrapper .form-group input:focus,
.contact-wrapper .form-group textarea:focus {
  border-color: #d54732;
  box-shadow: 0 0 6px rgba(213, 71, 50, 0.3);
  outline: none;
}

.contact-wrapper .btn-send {
  background: #d54732;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.contact-wrapper .btn-send:hover {
  background: #000;
  color: #fff;
}

.contact-map {
  flex: 1 1 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-map {
    height: 350px;
  }
}


.top-bar {
  position: relative;
  background-color: #cf3d33;
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
}

/* Angled white shape on the left */
.top-bar::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 500px;
  height: 100%;
  background: #fff;
  transform: skewX(-30deg);
}

/* Align items horizontally */
.contact-info {
  /* display: flex; */
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.contact-info i {
  margin-right: 8px;
  color: #fff;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #002b45;
}

/* Responsive for small screens */
@media (max-width: 768px) {


  .top-bar::before {
    display: none;
  }

  #heroCarousel .hero-form {
    position: static;
    /* put form below image on mobile */
    max-width: 100%;
    padding: 20px;
    margin-top: 15px;
  }
}


.contact-bar {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.contact-bar.show {
  opacity: 1;
  visibility: visible;
  bottom: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #d54732;
  cursor: pointer;
}

.contact-item a {
  color: #d54732;
  text-decoration: none;
}

.contact-item i {
  font-size: 18px;
  color: #d54732;
}

.divider {
  width: 1px;
  height: 25px;
  background: #ccc;
  margin: 0 20px;
}

/* Mobile view */
@media (max-width: 768px) {
  .contact-bar {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 0;
    justify-content: space-around;
    background: #d54732;
  }

  .contact-bar.show {
    bottom: 0px;
  }

  .contact-item {
    /* flex-direction: column; */
    color: #fff;
    font-size: 13px;
    width: 50%;
    margin-left: 7%;
  }

  .contact-item a {
    color: #fff;
  }

  .contact-item i {
    color: #fff;
    font-size: 18px;
  }
}

.values-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px;
  justify-items: center;
}

.value-card {
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.value-card.dark {
  background-color: #d54732;
  color: #fff;
}

.value-card.dark:hover {
  background: #ec6653;
}

.icon-circle {
  padding: 25px;
  width: 55px;
  height: 55px;
  background-color: #f7c9c3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-circle img {
  width: 25px;
  height: 25px;
}

.values-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.values-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.team-section {
  /* background: aliceblue; */
  text-align: center;
  padding: 60px 40px;
  border-bottom: 1px solid #d7d9dbba;
  border-top: 1px solid #d7d9dbba;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.team-card {
  position: relative;
  background-color: #161616;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-card .team-info {
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  text-align: left;
}

.team-card .team-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.team-card .team-info p {
  margin: 4px 0 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.linkedin-icon {
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.linkedin-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.linkedin-icon img:hover {
  transform: scale(1.1);
}

.leaders-section {
  text-align: center;
  padding: 60px 40px;
}

.leaders-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  /* margin-bottom: 40px; */
}

.leaders-section h2 span {
  color: #0b5944;
}

/*
    .carousel-item {
      padding: 20px 0;
    }
 */
.leader-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.media-card {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.leader-card:hover,
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.leader-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.media-card img {
  width: 100%;
  height: 50px;
  object-fit: cover;
}

.leader-info {
  padding: 20px;
}

.leader-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.leader-info p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}



@media (max-width: 1440px) {
  #counter h2 {
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 4px;
  }

  #counter p {
    font-size: 20px;
  }

  .counter-box img {
    width: 54px;
    height: auto;
  }

  .about__text p {
    line-height: 23px;
    margin-bottom: 10px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .wcs-section .key-highlights li i {
    margin-right: 8px;
  }

  .swep-section .card-body {
    padding: 24px 8px 50px 8px;
  }

  .swep-section .card-title, .swep-section .card-text{
    text-align: center;
  }

  .tab-content ul li {
    font-size: 14px;
  }

  .sector-courses .card .card-body .card-text {
    font-size: 21px;
  }
}

@media (min-width: 1450px) {
  .container {
    max-width: 1410px;
  }
}

@media (max-width: 1199px) {
  .sector-courses .card .card-body .card-btn {
    font-size: 14px;
  }

  .sector-courses .card .card-body .card-text {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 40px 0;
  }

  #heroCarousel .carousel-item {
    height: auto;
  }

  #heroCarousel .carousel-item img {
    height: auto;
  }

  #heroCarousel .carousel-caption {
    bottom: 9%;
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 32px;
  }

  .navbar-nav {
    gap: 15px;
  }

  .quote-section {
    flex-wrap: wrap;
  }

  .quote-box,
  .quote-bg {
    width: 100%;
    min-height: 300px;
  }

  .features-section {
    margin-top: 15px;
    padding: 20px 0;
  }

  .feature-box {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  #counter h2 {
    font-size: 29px;
    margin-bottom: 0px;
  }

  #counter p {
    font-size: 16px;
  }

  .section-title h2,
  h2.head-text {
    font-size: 24px;
  }

 /*  .sector-courses .card .card-body .card-btn {
    font-size: 14px;
    padding: 14px 25px 12px;
  } */

  .home-btn {
    font-size: 14px;
  }

  .sector-courses .card .card-body .card-text {
    padding: 2px 0px;
    font-size: 18px;
  }

  .hero-content .title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  /*    .main-footer h5 {
    padding-top: 40px;
  } */
  .card-title {
    font-size: 16px;
  }

  .banner-content h1 {
    font-size: 18px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .info-item:last-child {
    border-bottom: none;
  }

/*   .banner-section {
    height: 218px;
  } */

  .program-tabs ul {
    gap: 15px;
    padding: 15px 5px;
  }

  .program-tabs ul li a {
    font-size: 14px;
  }

  .highlight-item {
    margin-bottom: 15px;
  }

  .programtext ul {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .social-sidebar {
    /* display: none; */
  }

  .mega-menu {
    left: 0;
    top: 60%;
    width: 100%;
    position: absolute !important;
  }

  /* --- 21 Dec 2025 */
  .mega-row {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .mega-row .col-left {
    flex: 0 0 auto;
    max-width: 100%;
  }

  /* KEEP SCROLL */
  .mega-row .col-right {
    flex: 0 0 auto;
    max-width: 100%;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 10px;
  }

  .course-div {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .course-name {
    margin-left: 0;
  }

  .course-btn {
    width: 100%;
    margin-top: 6px;
    text-align: center;
  }

  /* 21 Dec 2025 --- */
}

@media (max-width: 576px) {
  section {
    padding: 40px  0;
  }

  .navbar {
    padding: 20px;
  }

  .mega-menu {
    width: 100%;
    position: absolute !important;
  }

  .course-name {
    display: block;
    font-size: 14px;
  }

  .course-div {
    display: block;
  }

  .mega-menu .btn-primary.course-btn {
    font-size: 13px !important;
  }

  /* Headings */
  h3.head-text {
    font-size: 22px;
  }

  h5.sub-head-text {
    font-size: 14px;
  }

  /* Hero Section */
  #heroCarousel .carousel-item {
    height: auto;
    min-height: auto;
  }

  #heroCarousel .carousel-caption {
    bottom: 5%;
    padding: 0px;
    max-width: 100%;
  }

  #heroCarousel .carousel-caption .btn {
    padding: 3px 10px;
    font-size: 14px;
  }

  #heroCarousel .carousel-caption h2 {
    font-size: 16px;
  }

  #heroCarousel .carousel-caption p {
    font-size: 14px;
  }

  /* Cards & Testimonials */
  .card-body {
    padding: 20px;
  }

  .testimonial-box {
    padding: 25px 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  /*  .main-footer h5 {
    padding-top: 40px;
  } */
  .footer .footer-widget {
    margin-bottom: 20px;
  }

  .program-card .details-link {
    visibility: visible;
  }

  .buttons-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info {
    display: block;
    justify-content: space-between;
    /* key */
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .programtext ul {
    grid-template-columns: repeat(1, 1fr);
  }

/*   .banner-section {
    height: 218px;
  }
 */
  .program-tabs ul {
    gap: 15px;
    padding: 10px 5px;
    justify-content: flex-start;
  }

  .program-tabs ul li a {
    font-size: 14px;
  }

  .program-tabs ul li a.active::after {
    bottom: -3px;
    height: 2px;
  }

  .mega-row .col-right {
    max-height: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .mega-row .col-right {
    max-height: 100%;
  }

  /* .mega-row .col-right {
        max-height: 320px;
    } */
}

.mega-row .col-right {
  scrollbar-width: thin;
}



/* Loader CSS */
.loaderAjax {
  display: none;
}

.loaderAjax .overlayBgLoader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  left: 0;
  z-index: 99999999;
}

.loaderImg {
  padding: 10px;
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  z-index: 99999999;
}

/* .social-sidebar-right {
    right:0;
    left: auto;
} */
.social-sidebar-right .social-icon {
  background-color: #ffc107;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  color: #000;
  font-weight: 600;
}

.social-sidebar-right .social-icon:hover {
  color: #FFF;
}

.br-15 {
  border-radius: 15px;
}

.text-root {
  color: #d54732;
}

.subcategory-link {
  font-size: 18px !important;
  color: #555;
  margin-left: 2%;
}

.subcategory-link.active {
  color: #d54732;
  font-weight: 600 !important;
}

.category-link {
  font-weight: 600;
}

.submenu-arrow {
  float: right;
  /* move to the right side */
  transition: transform 0.3s;
}

.submenu-open .submenu-arrow {
  transform: rotate(90deg);
  /* rotate arrow when submenu is open */
}

.category-page .card-body,
.career-page .card-body {
  padding: 25px 10px;
}

.course-info-label {
  font-weight: 500;
  margin-right: 2px;
}

.category-page .course-info {
  font-size: 14px;
}

.category-page .course-info i,
.career-page .course-info i {
  font-size: 12px;
  margin-right: 2px;
}

.career-page .course-info {
  font-size: 18px;
}

.top-shadow {
  border-top: 5px solid var(--grad1) !important;
}

#offerCarousel .card.top-shadow:hover {
  border-top: 10px solid rgba(69, 134, 213, 0.2) !important;
}

.career-description-box {
  background: #F8F3F1;
  border-left: 4px solid #d54732;
  padding: 20px;
  border-radius: 6px;
  color: #3A1F1B;
}

.help-block {
  color: red;
}

.career-page ul li {
  margin-bottom: 0;
  list-style: disc;
  margin-left: 20px;
}

.career-page h5.sub-head-text {
  font-size: 26px;
}

.why-join-section {
  background: #f8f9fa;
}

.why-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid transparent;
  /* Default: invisible */
}

.why-box:hover {
  transform: translateY(-5px);
  border-top-color: #d54732;
  /* Primary color on hover */
}

.why-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-icon {
  flex-shrink: 0;
}

.why-icon i {
  font-size: 26px;
  color: #d54732;
  margin-top: 5px;
}

.why-text h5 {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #142336;
}

.why-text p {
  margin: 0;
  color: #6c757d;
  font-size: 15px;
}







a:hover {
  text-decoration: none;
}

/* .counter .col-6{
  flex: 0 0 50%;
  max-width: 50%;
} */

button.ft-more {
  background: transparent;
  border: none;
  text-decoration: underline;
  padding: 0;
  font-weight: 600;
  margin-bottom: 40px;
}

.social-icons {
  margin-bottom: 40px;
}

.wcs-section {
  margin-top: 40px;
  margin-bottom: 0 !important;
}

.wcs-section .key-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 25px;
  /* vertical | horizontal spacing */
  padding: 0;
  margin: 0;
  list-style: none;
}

.wcs-section .key-highlights li {
  display: flex;
  align-items: baseline;
  /* vertical alignment */
  width: calc(33.33% - 20px);
  /* 3 items per row (desktop) */
  box-sizing: border-box;
  line-height: 22px;
  font-weight: 600;
}

.wcs-section .key-highlights li i {
  margin-right: 15px;
}

.wwcoy-img {
  position: relative;
}

.wwcoy-closed {
  position: absolute;
  right: 0;
  bottom: 15px;
  background-color: #cf3d33;
  border-radius: 5px 0 0 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 1px 8px;
}


.c-details-btn {
  display: flex;
  gap: 20px;
  padding-top: 15px;
}

.btn-brochure {
  display: inline-block;
  background: #fff;
  color: #d54732;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-brochure:hover {
  background: #d54732;
  color: #fff;
}

.ra-section .ra-box {
  margin: 12px 0;
}


.b-menu-name i {
  font-size: 16px;
}

.b-menu-name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.menu-btn-close i {
  color: #504f4f;
}



.marquee-container {
  position: absolute;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  /* Red-950 at 20% */
  padding: 10px 0;
  border-top: 1px solid rgba(239, 68, 68, 1);
  border-bottom: 1px solid rgba(239, 68, 68, 1);
  bottom: 0;
  left: 0;
  z-index: 9;
}


.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #0f172a, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #0f172a, transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 48px;
  align-items: center;
  animation: scroll 25s linear infinite;
}


.marquee-group {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  color: #ef4444;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  white-space: nowrap;
  display: flex;
  gap: 8px;
  align-items: center;
}

.marquee-item span {
  font-size: 8px;
}


.alert-badge {
  border: 1px solid #ef4444;
  padding: 0px 16px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.program-details-page {
  position: relative;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}






/* ===============================fee============================== */



.fees-container {
  width: 100%;
  max-width: 1000px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.header-line {
  height: 6px;
  width: 60px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  margin: 0 auto;
  border-radius: 10px;
}

/* Grid Layout */
.fees-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}


.cd-laptop-img{
  display: none;
}

.cd-mobile-img{
  display: none;
}

@media (max-width: 768px) {
  .fees-grid {
    grid-template-columns: 1fr;
  }
}

/* Common Glass Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 10px 30px -5px rgba(239, 68, 68, 0.08);
  display: flex;
  flex-direction: column;
}

/* Left Side: Fee Structure */
.main-card {
  border: 2px solid #fee2e2;
  justify-content: space-between;
}

.program-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.icon-box {
  max-width: 50px;
  max-height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 15px rgba(239, 68, 68, 0.2);
}

.program-info span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
}

.fee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.total-box {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-box .label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
}

.total-box .value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ef4444;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.fee-item .label {
  font-size: 0.9rem;
  color: #64748b;
}

.fee-item .value {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
}

.best-value {
  font-size: 10px;
  color: #ef4444;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
  text-align: right;
}

.emi-badge {
  margin-top: 30px;
 /* background-color: #ecfdf5;
  border: 1px solid #d1fae5; */
  background-color: #f7f7f7;
  border: 1px solid #eaeaea;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}


.emi-icon {
  width: 32px;
  height: 32px;
  background-color: var(--grad1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.emi-text p {
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}

.emi-text span {
  font-size: 0.75rem;
  color: #059669;
}

/* Right Side: Info Blocks */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border-radius: 10px;
  border-left: 4px solid #d54732;
}

.info-card.orange {
  border-left-color: #f97316;
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #0f172a;
}

.info-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* Call to Action Card */
.cta-card {
  margin-top: auto;
  background: linear-gradient(135deg, #ef4444 0%, #d54732 100%);
  color: white;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(239, 68, 68, 0.2);
  text-align: center;
}

.cta-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: white;
}

.cta-card p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn-apply {
  width: 100%;
  background: white;
  color: #ef4444;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-apply:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.7rem;
  color: #94a3b8;
}





/* ===============================fee============================== */

.vm-wrapper {
  display: flex;
  justify-content: center;
}

.vm-section {
  /* max-width: 1200px; */
  width: 100%;
  /* background:#d54732; */
  border-radius: 30px;
  /*  padding:70px 50px; */
  position: relative;
  /* overflow:hidden; */
  color: #d54732;
}

/* .vm-section::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:linear-gradient(45deg,#ffffff,#ffd7d2);
  border-radius:50%;
  top:-150px;
  right:-150px;
  opacity:0.15;
} */
.vm-wrapper section {
  padding: 0;
}

.vm-header {
  text-align: center;
  margin-bottom: 34px;
}

.vm-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vm-header p {
  font-size: 16px;
  color: #000;
}

.vm-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1 1 45%;
  background: #ffffff;
  color: #1e293b;
  padding: 36px 22px;
  border-radius: 15px;
  position: relative;
  transition: 0.4s ease;
  border-top: 4px solid #d54732;
  box-shadow: 0 8px 23px rgb(0 0 0 / 8%);
}

/* .vm-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 50px rgba(0,0,0,0.25);
} */

.vm-icon {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  margin-bottom: 25px;
  background: #d54732;
}

.vm-icon i {
  line-height: 1;
}

.vm-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #d54732;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0;
}

@media(max-width:900px) {
/*   .vm-section {
    padding: 50px 30px;
  } */

  .vm-header h2 {
    font-size: 30px;
  }
}

@media(max-width:768px) {
  .vm-container {
    flex-direction: column;
  }
}




.home-slider-content{
  position:relative ;
}
.home-banner-content-box{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home-banner-content-box h2{
  font-size: 80px;
  font-weight: 700;
  color :#fff;
  margin-bottom: 30px;
  max-width: 900px;
}


.degree-section {
  /* max-width: 700px; */
  /* margin: 60px auto; */
  background-color: #fff;
  border-left: 4px solid #d54732;
  border-radius: 12px;
  padding: 40px 30px;
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* 
.degree-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
} */

.degree-icon {
  font-size: 80px;
  color: #d54732;
  margin-right: 25px;
  flex-shrink: 0;
}

.degree-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #d54732;
  font-weight: bold;
}

.degree-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0px;
  color: #555;
}

.degree-badge {
  display: inline-block;
  background-color: #d54732;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.3s;
  min-width: 215px;
  text-align: center;
  cursor: pointer;
  /* height: ; */
}

/* .degree-badge:hover {
  transform: scale(1.1);
} */
.info-card.cd-info-card .info-item{
  text-align: center;
  flex: initial;
  padding: 10px;
  border-right: 1px solid #ddd;
  width: 100%;
}
.info-card.cd-info-card .info-item:last-child{
  border-right: none;
}
@media (max-width: 600px) {
  .degree-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .degree-icon {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 70px;
  }

  .degree-content h2 {
    font-size: 24px;
  }

  .degree-content p {
    font-size: 15px;
  }
}

.d-text-content {
  max-width: 600px;
}


.degree-content {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


.social-sidebar-right .social-icon i {
  display: none;
}


/* .social-sidebar-right .social-icon span {
  display: none;
}
 */
.menu-btn-close {
  display: none !important;
}



/* ==============================CONTECT======================== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 60%, #fdecea 40%);
}

.section-title {
  text-align: left;
  margin-bottom: 28px;
}

.section-title h2 {
  font-weight: 700;
  color: #1f2d3d;
  position: relative;
  display: inline-block;
  font-size:30px;
}

.section-title h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d54732;
  margin-top: 8px;
}

.section-title p {
  color: #d54732;
  margin-top: 10px;
  line-height:26px;
  font-size:20px;
}

.contact-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  height: 100%;
  border-top: 4px solid #d54732;
}

.contact-info h5,
.contact-form h5 {
  font-weight: 600;
  margin-bottom: 25px;
  color: #d54732;
}

/*  .info-item {
  margin-bottom: 20px;
} */

.info-item strong {
  display: block;
  color: #1f2d3d;
  margin-bottom: 5px;
}

.info-item span {
  color: #495057;
}

/*   .map-frame {
  margin-top: 25px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
} */

/*     .form-control {
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #ced4da;
} */

.form-control:focus {
  border-color: #d54732;
  box-shadow: none;
}

.btn-custom {
  background-color: #d54732;
  color: #ffffff;
  border-radius: 6px;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  border: none;
  margin-top:10px;
}

.btn-custom:hover {
  background-color: #b83c29;
  color: #ffffff;
}

.contact-box .section-title::after{
display: none;
}

@media (max-width: 767px) {
  .contact-box {
      margin-bottom: 30px;
  }
}

.map-frame{
  height: 320px;
}
.map-frame iframe{
  height: 100%;
}


.cp-icons i {
  color: #d54732;
  font-size: 23px;
  margin-bottom: 8px;
}

.contact-section .info-item{
/*   display: flex; */
  gap: 20px;
 
}
/* ==============================CONTECT======================== */


/* .swepsection a{
 position: initial !important;
} */

.chp-section .section-title{
  margin-bottom: 12px;
}
.swep-section .slider-item{
  margin: 8px 12px;
}

.swep-section .card-body{
  min-height: 310px;
}
.slick-slide .m-banner, .m-banner{
  display: none;
}


.p-admission-close {
  background-color: transparent;
  border-color: #d54732;
  font-size: 15px !important;
  border: 2px solid #d54732;
  color: #d54732;
}





.programbox.pd-box {
  box-shadow: none;
}


.fee-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emi-fee-amt {
  border-radius: 20px;
  padding: 3px 15px;
  background-color: var(--grad1);
  color: #fff;
}



.home-pp-b {
  border-bottom: 1px solid #d7d9dbba;
}



.contact-info.header-red-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.social-sidebar {
  /*  top: auto;
bottom: 70px; */
  right: -36px;
  transform: rotate(270deg);
}

.social-sidebar-right .social-icon {
  border-radius: 5px 5px 0px 0px;
  padding: 2px 10px;
  height: auto !important;
  width: auto !important;

}


.tab-content.swep-section{
  padding: 0 !important;
  background: none;
  border-radius: 8px;
   box-shadow: none;
}


.tab-content.swep-section .home-btn{

}

@media (max-width: 1666px) {
  #counter h2 {
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 4px;
  }
}

@media (max-width: 1440px) {
  .process-step::before {
    left: -133px;
    width: 124px;
}
}

@media (max-width: 1366px) {
  .about__text p {
    font-size: 15px;
  }

  .wcs-section {
    margin-top: 24px;
  }

  .wcs-section .key-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 25px;
  }


  .mega-menu {
    left: -150px;
  }

  .mega-row {
    width: auto;
  }


  .circle {
    width: 115px;
    height: 115px;

}
.circle i {
  font-size: 24px;
}
.circle .number {
  margin-top: 81px;
  font-size: 34px;
}
.process-step {
  width: 166px;
}
.meta h4 {
  font-size: 17px;
}

.process-wrapper {
min-width: auto;    
}
.process-step::before {
  top: 60px;
  left: -147px;
  width: 134px;
}
.process-step::after {

  top: 56px;
}
}

@media (max-width: 1200px) {
  .programtext ul {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .process-wrapper{
    min-width: 1120px;
  }

  .swep-section .card-body{
    min-height: auto;
  }
  .cd-laptop-img{
    display: block;
  }

  .cd-desktop-img{
    display: none;
  }

}

@media (max-width: 1199px) {
  #counter h2 {
    font-size: 28px;
    line-height: 32px;
  }

  #counter p {
    font-size: 16px;
  }

  #counter p {
    margin-bottom: 10px;
  }

  .program-tabs ul {
    gap: 22px;
  }

  .course-div {
    flex-direction: column;
  }

  .course-name {
    text-align: center;
  }

  .navbar-nav .nav-item a {
    width: 100%;
    margin-top: 0px;
  }

  .contact-box {
    padding: 24px;
  }
  .home-btn {
    font-size: 15px;
    letter-spacing: 1px;
    padding: 5px 7px;
}
.swep-section .slick-list{padding-right:80px}

.mega-menu .btn-primary {
  width: 100%;
  margin-top: 10px;
}
.marquee-container{
  padding: 4px 0;
}

.banner-content h1 {
  font-size: 30px;
}
.btn-brochure, .btn-cta{
  padding: 5px 15px;
}
}

@media (max-width: 992px) {

  .menu-btn-close {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 450px;
    background: #fff;
    z-index: 999;
    padding: 30px 20px;
    display: block;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .navbar-collapse.active {
    transform: translateX(0);
  }

  .collapse:not(.show) {
    display: block !important;
  }


  .navbar-nav .dropdown-menu {
    position: fixed;
    top: 0;
      left: 0 !important; 
    right: 0;
    display: block;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border: none;
    background-color: #fff;
    height: 100%;
  }

  .dropdown-menu.show {

    transform: translateX(0);
  }

  .program-tabs {
    display: none;
  }

  .mega-row {
    height: 100%;
  }

  .mega-row .col-right {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    background-color: #fff;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 0px 20px 70px 20px;
  }

  .mega-row .col-right.active {
    transform: translateX(0);
  }

  .mega-row .border-right {
    border: none !important;
    border-right: none !important;
  }

  .wcs-section .key-highlights li {
    width: calc(50% - 15px);
  }


  .course-div {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .course-list,
  .navbar-nav,
  .mega-row {
    margin-top: 20px;
  }

  .course-btn {
    width: 100%;
    margin-top: 6px;
    text-align: center;
  }

  .social-sidebar-icon-right {
    /* display: none; */
    gap: 6px;
  }

 

  .social-sidebar-right .social-icon i {
    display: none;
  }

  .social-sidebar-right .social-icon span {
    display: block;
  }

  .menu-btn-close {
    display: flex !important;
  }


  .mobile-accordion-header {
    padding: 12px;
    /* background: #f8f9fa; */
    font-weight: 600;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #d54732;
    border: 1px solid #d54732;
    /* background-color: #d54732;*/
  }

  .mobile-accordion-header.active{
    color: #fff;
    background-color: #d54732;
  }

  .mobile-accordion-header .icon {
    transition: transform 0.3s ease;
  }

  .mobile-accordion-header.active .icon {
    transform: rotate(180deg);
  }

  .degree-section {
    padding: 20px 20px;

  }

  .degree-icon {
    font-size: 60px;
    margin-right: 18px;
  }

  .degree-badge {
    padding: 10px 10px;
    min-width: 170px;
    font-size: 15px;
  }

  .degree-content {
    gap: 25px;
  }

  .degree-content p {
    font-size: 15px;
  }

  .degree-content h2 {
    font-size: 24px;
  }

  .fees-grid {
    grid-template-columns: auto;
  }

  .btn-cta,
  .btn-brochure {
    padding: 5px 14px;
    height: auto;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .swep-section .slick-list{padding-right:150px}

  .banner-section{
    height: 280px;
  }
  .banner-section img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}





@media (max-width: 768px) {
  .home-wwo .card-text {
    display: none;
  }

  .card-body {
    padding: 10px;
  }

  .home-wwo .card-title,
  .home-pp-b .card-title,
  .home-to-mba .card-title {
    margin-bottom: 0 !important;
  }

  .home-wwo .card-btn,
  .home-pp-b .card-btn,
  .home-to-mba .card-btn {
    display: none;
  }

  /* 
.main-card-btn{
  margin:12px 0;
} */

.process-wrapper {
    min-width: 780px;
}

  h3.head-text {
    font-size: 28px;
  }

  h5.sub-head-text {
    font-size: 16px;
    margin-bottom: 8px;
  }

  #counter h2 {
    margin-top: 5px;
  }

  .degree-content {
    flex-direction: column;
  }

  .degree-section {
    flex-direction: column;
  }

  .degree-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .d-text-content {
    text-align: center;
  }

  .degree-section {
    border-top: 4px solid #d54732;
    border-left: none;
    padding: 20px 20px;
  }

 /*  .banner-section {
    height: 310px;
  }
 */
  .marquee-container {
    padding: 4px 0;
  }

  .marquee-item {
    font-size: 14px;
  }

  .alert-badge {
    padding: 0 10px;
  }

  .banner-content h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .navbar {
    padding: 8px;
  }

  .info-card.cd-info-card .info-item{
    border-right: none;
    width: auto;
  }
  .programbox {
    padding: 15px;
}

.contact-info.header-red-contact {
  justify-content: space-between;
}

a.card-btn {
  position: initial;
  transform: initial;
}
.swep-section .card-body {
  padding: 24px 8px;
}
.swep-section .slick-list{padding-right:80px}
.home-pp-b {
  border-top: 1px solid #d7d9dbba;
}
.chp-section .section-title {
  margin-bottom: 8px;
}

/* 
.swepsection .home-btn {
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid #d54732;
  color: #d54732;
 background: #fff;
}
 */
.swepsection.sector-courses .card .card-body .card-btn {
  border: 2px solid #d54732;
  color: #d54732;
  background-color: #fff;
}


}



@media (max-width: 576px) {
  #counter h2 {
    font-size: 26px;
    line-height: 25px;
  }

  .counter-box img {
    width: 46px;
    height: auto;
  }

  #counter p {
    margin-bottom: 8px;
    line-height: 21px;
  }

  .wcs-section {
    margin-top: 0px;
  }

  .tab {
    padding: 8px 5px;
  }

/*   .banner-section {
    height: 280px;
  }
 */
  .emi-badge {
    flex-direction: column;
  }

  .emi-text p {
    margin-bottom: 0;
  }

  .emi-fee-amt {
    margin-top: 10px;
  }

  .total-box .value {
    font-size: 1rem;
  }

  .fee-item .value {
    font-size: .9rem;
  }

  .total-box {
    padding: 10px;
  }

  .fee-item {
    padding: 10px;
  }

  .glass-card {
    padding: 14px;
  }

  .cta-card {
    padding: 14px;
  }

  .slick-slide .m-banner, .m-banner{
    display: block;
  }

  .slick-slide .desk-banner, .desk-banner{
    display: none;
  }

  .tabs {
    gap: 8px;
}
.tab span {
  padding-right: 6px;
}

.swep-section.tab-content {
  padding: 24px 16px;
}

.swep-section .slick-list{padding-right:50px}


.program-info h3 {
  font-size: 1.5rem;
}

.cd-mobile-img{
  display: block;
}

.cd-laptop-img{
  display: none;
}

.banner-section{
  height: auto;
}
.banner-section img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
}



@media (max-width: 480px) {
  #counter p {
    font-size: 15px;
    line-height: 20px;
  }

  #counter h2 {
    font-size: 20px;
    line-height: 20px;
  }

  .wcs-section .key-highlights li {
    width: 100%;
  }

  .counter-box img {
    width: 38px;
    height: auto;
  }

  .tab {
    font-size: 14px;
  }

  .btn-apply {
    padding: 6px;
  }

  .process-wrapper {
    min-width: auto;
    gap: 15px;
}
.process-step {
   width: 100%;
  flex-direction: row;
}
.circle {
  max-width: 78px;
  max-height: 78px;
  min-width: 78px;
  min-height: 78px;
}
.circle i {
  font-size: 18px;
}
.circle .number {
  margin-top: 56px;
  font-size: 24px;
}
.process-step .meta {
  padding-top: 0;
}
.meta {
    width: 100%;
    padding: 0 26px;
  }
section.programtabs {
  padding: 30px 4px;
}
.home-btn, .sector-courses .card .card-body .card-btn {
  font-size: 14px;
  letter-spacing: 0.6px;
  padding: 3px 7px;
}
h3.head-text {
  font-size: 26px;
}
.faq-header {
  padding: 13px 18px;
}
.banner-content h1 {
  font-size: 20px;
}

.swep-section .col-6 {
  flex: 0 0 50%;
  max-width: 100%;
}

.swep-section .swep-list {
  margin-bottom: 0;
}
.swep-section .swep-list li:last-child {
  margin-bottom: 0 !important;
}

.ra-section .col-4{
    padding-left: 6px;
    padding-right: 6px;
}
.ra-section .ra-box {
  margin: 6px 0;
}
.ra-section .row {
  margin-right: -6px;
  margin-left: -6px;
}
}


@media (max-width: 450px) {
  .swep-section .slick-list {
    padding-right: 20px;
}
.swep-section .slider-item {
  margin: 8px 8px;
}
}

@media (max-width: 428px) {
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .counter .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .career-page .col-6{
    flex: 0 0 50%;
    max-width: 50%;
  }

  .swep-list {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .swep-list li:last-child {
    margin-bottom: 0 !important;
  }

  

  .counter-box {
    display: flex;
    gap: 2px;
  }

  .counter-box img {
    width: 34px;
    height: 34px;
  }

  #counter p {
    font-size: 13px;
    line-height: 16px;
  }

  #counter h2 {
    font-size: 17px;
    line-height: 20px;
  }

  .counter-details {
    text-align: left;
  }

/*   .banner-content h1 {
    font-size: 22px;
  } */

  .btn-cta, .btn-brochure {
    padding: 4px 9px;
    height: auto;
    font-size: 14px;
}
}

@media (max-width: 380px) {
  .swep-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
}
}


