body {
    font-family: "Ubuntu", sans-serif;
}
:root {
  --primary-color: #273c66;
  --secondary-color: #f17f12;
  --border-color: #dbd8d5;
}
a {
  text-decoration: none;
}
.f-recent-post {
  color: #fff;
  transition: 0.2s ease;
}

.f-recent-post:hover {
  color: var(--secondary-color);
}
.f-recent-post a {
  color: #fff;
  transition: 0.2s ease;
}
.f-recent-post a:hover {
  color: var(--secondary-color);
}
.post-text a{
  color: var(--primary-color);
  transition: 0.2s ease;
}
.post-text a:hover{
  color: var(--secondary-color);
}
.f-post-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
hr {
  color: var(--border-color);
}
.fs-xs-10 {
  font-size: 12px;
}
/* section {
  padding-bottom: 90px;
} */
 
.section-home-about {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-top {
  padding-top: 90px;
}
footer {
  background-color: var(--primary-color);
}

.info-bar {
  background-color: var(--primary-color);
  padding: 5px;
}

.info-bar ul li i {
  color: var(--secondary-color);
}
/* subject top nav button */

.navbar {
  transition: 0.3s ease-in-out;

  z-index: 99;
}

.navbar .nav-link {
  color: var(--primary-color);
}

.navbar .nav-link.active {
  color: var(--secondary-color) !important;
}

.navbar .nav-link:hover {
  color: var(--secondary-color);
}

.navbar.scrolled .nav-link {
  color: var(--primary-color);
}

.navbar.scrolled .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-brand img {
  width: 120px;
  transition: 0.3s ease-in-out;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar.scrolled {
  background-color: #fff !important;
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .navbar-brand img {
  width: 100px;
}
.blue-c {
        color: #273c66 ;
    }
    .blue-bg {
        background-color: #273c66;
    }
    .org-c{
        color: #f17f12;
    }
/* login btn */
/* From Uiverse.io by BHARGAVPATEL1244 */ 
.button-login {
 outline: none;
 cursor: pointer;
 border: none;
 padding: 0.9rem 2rem;
 margin: 0;
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background: #66ff66;
 color: ghostwhite;
}

.button-login span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

.button-login:hover span {
 color: black;
}

.button-login::before,
.button-login::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

.button-login::before {
 content: "";
 background: var(--secondary-color);
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button-login:hover::before {
 transform: translate3d(100%, 0, 0);
}

/* From Uiverse.io by Creatlydev */
.button-cta {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button-cta__icon-wrapper {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--secondary-color);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button-cta:hover {
  background-color: var(--primary-color);
}

.button-cta:hover .button-cta__icon-wrapper {
  color: var(--primary-color);
}

.button-cta__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button-cta:hover .button-cta__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button-cta:hover .button-cta__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}


.swiper {
  height: 100vh;
  width: 100%;
}
.swiper-button-next, .swiper-button-prev {
   color: var(--secondary-color);
}
.swiper-pagination-bullet-active {

  background: var(--secondary-color);
}
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}


.hero {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 90;
  color: #fff;
}

.dis-btn {
  display: block;
  width: fit-content;
  margin-top: 1rem;
  padding: 10px 24px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.dis-btn a {
  text-decoration: none;
  color: #fff;
}

.dis-btn:hover {
  background-color: var(--primary-color);
}

.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 96px 20px 20px 20px;
  height: fit-content;
}

.about-desc {
  padding: 50px;
}

.about-desc p {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.about-desc h1 {
  color: var(--primary-color);
  font-weight: 700;
}

.about-desc .desc p {
  margin-top: 30px;
  color: #2c2a2a;
  font-size: 15px;
  font-weight: 500;
}
.course {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.course p {
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
}

.course h1 {
  color: var(--primary-color);
  font-weight: 700;
}

.course-box {
  background-color: #f9f8f8;
  padding-top: 46px;
  padding-bottom: 46px;
}

.course-container {
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  position: relative;
}

.course-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.course-container:hover .course-desc h4 {
  color: var(--secondary-color);
}
.course-container .course-desc p i {
  color: var(--primary-color);
}
.course-container:hover .course-desc p span {
  color: var(--secondary-color);
}
.course-container:hover .course-desc p i {
  color: var(--secondary-color);
}
.course-container:hover .image-box img {
  transform: scale(1.1);
}

.image-box {
  width: 100%;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  display: block;
  transition: transform 0.4s ease;
}

.course-desc {
  padding: 20px;
}

.course-desc h4 {
  font-size: 20px;
  font-weight: 700;
  transition: 0.2;
}

.course-desc p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #494642;
  line-height: 25px;
}
.course-desc p span {
  color: var(--primary-color);
}
.course-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.c-btn {
  display: block;
  outline: none;
  border: none;
  width: fit-content;
  margin-top: 1rem;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.c-btn a {
  text-decoration: none;
  color: #fff;
}

.c-btn:hover {
  background-color: var(--primary-color);
}
.read-more-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.read-more-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.read-more-link:hover {
  color: var(--secondary-color);
}
.read-more-link:hover i{
    transform: translateX(5px);
}
.service-btn {
  display: block;
  width: fit-content;
  margin-top: 1rem;

  background-color: var(--secondary-color);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.service-btn a {
  text-decoration: none;
  color: #fff;
}

.service-btn:hover {
  background-color: white;
  color: #273c66;
}

.service-desc {
  padding: 50px;
}

.service-desc p {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

.service-desc h1 {
  color: var(--primary-color);
  font-weight: 700;
}

.service-desc .desc p {
  margin-top: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 90;
  color: #fff;
}

/* From Uiverse.io by Carlos-vargs */
.button-video {
  display: flex;
  justify-content: center;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: linear-gradient(30deg, rgb(241, 127, 18) 20%, rgb(241, 127, 18) 80%);
  transition: all 0.3s ease-in-out 0s;
  box-shadow: rgba(193, 244, 246, 0.698) 0px 0px 0px 0px;
  animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse;
  align-items: center;
  border: 0;
}

.button-video:hover {
  background: linear-gradient(30deg, rgb(39, 60, 102) 20%, rgb(39, 60, 102) 80%);

}

.button-video:is(:hover, :focus) {
  transform: scale(1.2);
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 45px rgba(193, 244, 246, 0);
  }
}

.latest-news {
  padding: 20px;
}

.latest-news p {
  color: var(--secondary-color);
  font-weight: 800;
  margin-bottom: 0;
}

.latest-news h1 {
  font-weight: 700;
}

.news-img {
  overflow: hidden;
}

.news-img img {

  transition: transform 0.3s ease;
}

.news-box {
  margin: 20px;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.news-desc {
  padding: 20px;
}

.date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.date i {
  font-size: 16px;
  color: var(--secondary-color);
}

.date span {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #837e79;
  transition: 0.2s ease;
}

.news-desc h3 {
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  transition: 0.3 ease;
}

.news-desc p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.news-box:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);

}

.news-box:hover .news-img img {
  transform: scale(1.1);
}

.news-box:hover .news-desc h3 {
  color: var(--secondary-color);
}

.event-box {
  padding: 30px 20px;
  display: flex;
  align-items: start;
  justify-content: center;
}

.event-img {
  height: 80px;
  padding: 10px 20px;
  text-align: center;
  background-color: var(--primary-color);

}

.event-img p {
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 0;
}

.event-img h1 {
  font-weight: 800;
  font-size: 40px;
  margin-top: -6px;
  color: var(--secondary-color);
}

/* footer */
.f-box {
  padding: 50px;
}

.f-title {
  position: relative;
  width: fit-content;
  cursor: pointer;
}

.f-title h1 {
  color: #fff;
}

.f-title p {
  color: #fff;
}

.f-bar {
  content: '';
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: 0.2s ease;
  position: absolute;
}

.f-title:hover .f-bar {
  width: 90%;
}

.f-desc p {
  color: #fff;
}

.address-widget {
  list-style: none;
  padding: 0;
  margin: 0;
}

.address-widget li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.address-widget i {
  font-size: 20px;
  color: var(--secondary-color);
  margin-right: 12px;
  margin-top: 4px;
}

.address-widget .desc {
  color: #fff;
  line-height: 1.5;
  font-size: 14px;
}

.address-widget a {
  color: #fff;
  text-decoration: none;
}

.address-widget a:hover {
  text-decoration: underline;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  transition: 0.2s ease;
  cursor: pointer;
}

.icon i {
  color: #fff;
}

.icon:hover i {
  color: var(--primary-color);
}

.f-image img {
  width: 100px;
}

.f-info p {
  color: #fff;
}

.f-info a {
  color: var(--secondary-color);
}

/* about page css */
.breadcrumbs-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 90;
  color: #fff;
}

.breadcrumbs-title h3 a {
  color: white;
  transition: 0.2s ease;
}

.breadcrumbs-title h3 a:hover {
  color: var(--secondary-color);
}

.profile-card {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-card .overlay {
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: start;
  justify-content: center;
  color: var(--primary-color);
  text-align: center;
  padding: 20px;
  opacity: 1;
  transition: all 0.4s ease;
}

.profile-card:hover .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 0;
  background: rgba(243, 126, 17, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.s ease;
}

.overlay-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.overlay-content p {
  margin: 5px 0 15px;
  font-size: 16px;
}

.social-icons i {
  margin: 0 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.social-icons i:hover {
  color: var(--primary-color);
}

/* course overvire details */
.overview-detail h3 {
  color: var(--primary-color);
}

.overview-detail p {
  color: #585858;
}

.student-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.student-list li {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.student-list .stars i {
  color: #f17f12;
  margin-right: 2px;
}

.rating-score {
  color: #000;
  font-weight: bold;
}

/* course overview review */
.review-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.review-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.6;
}

.review-list li::before {
  content: "\f101";
  /* Font Awesome arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.buy-btn {
  border: none;
  background-color: var(--secondary-color);
  padding: 11px;
  width: 100%;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  transition: 0.2s ease;
}

.buy-btn:hover {
  background-color: var(--primary-color);
}

.buynow-btn {
  border: 1px solid var(--secondary-color);
  background-color: white;
  padding: 11px;
  width: 100%;
  border-radius: 5px;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.2s ease;
}

.buynow-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* accordition */
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  /* background-color: var(--primary-color); */
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.course-video-img {
  position: relative;
}

/* contact page */
.contact-box {
  width: 100%;
  /* height: 300px; */
  border-radius: 5px;
  padding: 40px 35px;
  background-color: #f9f8f8;
}

.contact-box .title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box .email-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 12px;
  /* background-color: #000; */
}

.contact-box .email-box .email-icon {
  height: 50px !important;
  width: 50px !important;
  color: var(--secondary-color);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-box .email-box .email-icon i {
  height: 36px;
  width: 36px;
}

.email-text {
  font-size: 16px;
  font-weight: 700;
}

.email-text p {
  margin-bottom: 5px;
}

.email-text .phone {
  font-weight: 500;
}

.phone:hover {
  color: var(--secondary-color);
}

.map iframe {
  width: 100%;
  height: 500px;
}

/* conatct form */
.form-box {
  background-color: #f9f8f8;
  padding: 0px 100px;
}
.contact-section {
  padding: 60px 0;
}

.contact-title {
  font-weight: 700;
}

.form-control {
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--secondary-color);
  margin: 20px 0;
  font-weight: bold;
}
.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--secondary-color);
}
.separator:not(:empty)::before {
  margin-right: .75em;
}
.separator:not(:empty)::after {
  margin-left: .75em;
}
.submit-btn {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  border-radius: 4px;
}

.submit-btn:hover {
  background-color: #d86112;
}

/* student box */
.student-box {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}
.student-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
  transform: translateY(-5px);
}
.student-img {
  display: flex;
  align-items: flex-start;
}
.student-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.student-rating {
  display: flex;
 align-items: center;
 margin-top: 10px;
 
}
.ratings i {
  color: #f1c40f;
  font-size: 12px;
}
.student-btn a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.student-btn a:hover {
  color: var(--secondary-color);
}

.student-btn a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.student-btn:hover a i {
  transform: translateX(5px);
}
/* blog */
.blog-box {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--border-color);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    transition: all 0.2s ease;
}
.blog-box:hover {
  transform: translateY(-5px);
}

.blog-box .blog-img img{
  width: 100%;
}
.blog-desc {
  padding: 35px 35px;
}
.blog-desc a{
  transition: 0.2s ease;
  color: var(--primary-color);
}
.blog-desc a:hover {
  color: var(--secondary-color);
}
.blog-icons {
 
}
.blog-icons ul li i {
    color: var(--secondary-color);
}

.blog-btn a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-btn a:hover {
  color: var(--secondary-color);
}

.blog-btn a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-btn:hover a i {
  transform: translateX(5px);
}
.recent-post {
 width: 100%;
  border-radius: 5px;
  /* border: 1px solid var(--border-color); */
  padding: 35px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    transition: all 0.2s ease;
}

.r-title {
  position: relative;
  width: fit-content;
  cursor: pointer;
}

.r-title h1 {
  color: var(--primary-color);
}
.r-bar {
  content: '';
  width: 35px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: 0.2s ease;
  position: absolute;
}

.r-title:hover .r-bar {
  width: 90%;
}
.post-img img {
  width: 100%;
}
.post-icons {
  margin-top: 10px;
font-size: 14px;
font-weight: 600;
  transition: 0.2s ease;
}
.post-icons ul li i {
    color: var(--secondary-color);
}
.post-icons:hover {
  color: var(--secondary-color);
}
.next-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: 0.2s ease;
}
.next-btn a {
  color: var(--primary-color);
  transition: 0.5s ease;
}
/* .next-btn a h3 {
  font-size: 22px;
} */
.next-btn a:hover {
  color: var(--secondary-color);
}
/* demo video section */
.demo-video {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 5px;
 position: relative;
 overflow: hidden;
}
.test-box {
  background-color: var(--border-color);
  border-radius: 6px;
}
/* test page */
 .test-btn {
    color: #fff;
    background-color: var(--secondary-color) !important ; 
    border-color: var(--secondary-color);
    transition: 0.2s ease;
  }
   .test-btn:hover {
    background-color: var(--primary-color) !important ;
    border-color: var(--primary-color);
    color: #fff;
    }
  .test-title {
    color: var(--primary-color);
    transition: 0.2s ease;
  }
  .test-title:hover {
    color: var(--secondary-color);
  }
  .test-cancel{
    background-color: var(--primary-color);
  }
  .test-cancel:hover {
    background-color: var(--primary-color);
  }

  
/* medium screen */
@media (min-width: 768px) and (max-width: 1028px) {
  /* Your styles for medium screens go here */

      .navbar .nav-link {
        color: var(--primary-color) !important;
    }
  .about-desc {
    padding: 0;
  }
  .about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 20px 20px;
    height: fit-content;
}
.student-box {
  padding: 12px;
}
}

@media (min-width: 351px) and (max-width: 767px) {
  /* Styles for mobile devices go here */
  .fs-xs-10 {
    font-size: 10px;
    font-weight: 600;
  }
  .navbar .nav-link {
    color: var(--primary-color) !important;
  }
  .section-home-about {
  padding-top: 12px;
  padding-bottom: 12px;
}
.swiper {
  height: 50vh;
  width: 100%;
}
.post-img2 img {
  display: none;
}

/* .swiper-h3 {
  font-size: 20px;
}
.swiper-h1 {
  font-size: 33px;
} */
 .course-desc p {
  font-size: 12px;
  font-weight: 500;
}
.dis-btn {
    padding: 6px 12px;
}
.video-section {
  height: 50vh;
}

  /* about us section */
  .about-img {
    padding: 12px 0px;
  }

  .about-desc {
    padding: 12px;
  }

  .about-desc p {
    margin-bottom: 0;
  }

  .about-desc .desc p {
    margin-top: 2px;
    font-size: 12px;
  }

  .course-container {
    margin-bottom: 20px;
  }

  .course-box {
    background-color: #f9f8f8;
    padding-top: 25px;
    padding-bottom: 0px;
  }

  .service-desc {
    padding: 25px;
  }

  .f-box {
    padding: 25px;
  }

  .f-image img {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .f-info p {
    color: #fff;
    font-size: 16px;
  }
  .form-box {
  background-color: #f9f8f8;
  padding: 0px 46px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: start;
}
.event-box {
    padding: 20px 20px;
    display: flex;
    align-items: start;
    justify-content: flex-start;
}
.news-desc {
  padding: 0px 20px 20px 20px;
}
.news-desc h3 {
    margin-top: 5px;
    font-size: 18px;
  }
  .news-box {
    margin: 0;
    margin-bottom: 20px;
}
.blog-desc {
  padding: 35px 24px;
}
.service-desc .desc p {
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}
.student-box {
  padding: 12px;
}
.student-list {
  gap: 12px;
}
}

@media (max-width: 350px){

   .fs-xs-10 {
    font-size: 10px;
    font-weight: 600;
  }
  .navbar .nav-link {
    color: var(--primary-color) !important;
  }
  .section-home-about {
  padding-top: 12px;
  padding-bottom: 12px;
}
.swiper {
  height: 50vh;
  width: 100%;
}
.post-img2 img {
  display: none;
}
/* .swiper-h3 {
  font-size: 20px;
}
.swiper-h1 {
  font-size: 33px;
} */
 .course-desc p {
  font-size: 12px;
  font-weight: 500;
}
.dis-btn {
    padding: 6px 12px;
}
.video-section {
  height: 50vh;
}

  /* about us section */
  .about-img {
    padding: 12px 0px;
  }

  .about-desc {
    padding: 12px;
  }

  .about-desc p {
    margin-bottom: 0;
  }

  .about-desc .desc p {
    margin-top: 2px;
    font-size: 12px;
  }

  .course-container {
    margin-bottom: 20px;
  }

  .course-box {
    background-color: #f9f8f8;
    padding-top: 25px;
    padding-bottom: 0px;
  }

  .service-desc {
    padding: 25px;
  }

  .f-box {
    padding: 25px;
  }

  .f-image img {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .f-info p {
    color: #fff;
    font-size: 16px;
  }
  .form-box {
  background-color: #f9f8f8;
  padding: 0px 46px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: start;
}
.event-box {
    padding: 20px 20px;
    display: flex;
    align-items: start;
    justify-content: flex-start;
}
.news-desc {
  padding: 0px 20px 20px 20px;
}
.news-desc h3 {
    margin-top: 5px;
    font-size: 18px;
  }
  .news-box {
    margin: 0;
    margin-bottom: 20px;
}
.blog-desc {
  padding: 35px 24px;
}
.service-desc .desc p {
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

  /* student box */
.student-box {
  padding: 12px;
}
.student-img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
.blog-desc {
    padding: 35px 20px;
}
.recent-post {
 width: 100%;
  border-radius: 5px;
  /* border: 1px solid var(--border-color); */
  padding: 15px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
    transition: all 0.2s ease;
}
.form-box {
    background-color: #f9f8f8;
    padding: 0px 20px;
}
.student-list {
  gap: 12px;
}
.student-list li {
 font-size: 14px;
}

}