@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
    transition: 0.2s linear;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    --card-clr: white;
	--body-clr: white;
	--primary-clr: orange;
	--heading-clr: #1f1d1d;
	--text-clr: #242629;
}
body{
  min-height: 100vh;
}
.header {
  position: sticky;
    top: 0;
    z-index: 1000;
  background-color: #2A2185;
  color: white;
  padding: 10px 0;
  display: block;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  gap: 10px;
}

.contact-info span {
  margin: 0;
  font-size: 13px;
}

.contact-info i {
  font-size: 18px;
}

.social-media {
  display: flex;
  gap: 15px;
}

.social-media a {
  color: white;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header, .contact-info, .social-media {
    display: none;
  }
}
nav{
  position: fixed;
  top: 10;
  left: 0;
  width: 100%;
  height: 100%;
  height: 85px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  position: sticky;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 80px;
}
/* Style the logo image */
.logo img {
  height: 100%; /* Make the image take the full height of the navbar */
  max-height: 75px; /* Ensure it doesn't exceed the navbar height */
  margin-top: 5px;
  width: auto; /* Maintain the aspect ratio */
}

.sidebar {
  height: 60px; /* Set a fixed height for the sidebar logo */
  width: auto; /* Maintain the aspect ratio */
}
.sidebar-logo img {
  height: 60px; /* Set a fixed height for the sidebar logo */
  width: auto; /* Maintain the aspect ratio */
}

.navbar .logo a{
  font-size: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 85px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000;
  font-size: 16.5px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 85px;
  text-align: center;
  display: inline-block;
  color: #000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 25px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 40px;
  width: 285px;
  background: #fff;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #2A2185;
}

.search-box .input-box::before {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background: #2A2185;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.search-results-container {
  position: absolute;
  top: 43px; /* Adjust to display below the input box */
  width: 285px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  max-height: 300px;
  overflow-y: auto;
  display: none; /* Initially hidden */
  z-index: 999;
}

.search-results-container .course-item {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.search-results-container .course-item a {
  text-decoration: none;
  color: #2A2185;
  display: flex;
  align-items: center;
}

.search-results-container .course-item:hover {
  background-color: #f0f0f0;
}

.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}

@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  .more span a{
    font-size: 20px;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 370px;
    width: 100%;
    height: 1500px;
    background:  #2A2185;
    color: #fff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;

  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #000;
  }
    .navbar .bx-menu{
      font-size: 30px;
      color: #000;
    }
    .sidebar-logo  i
{    font-size: 30px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 40px;
    color: #fff;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
    color: #fff;
    font-size: 16px;

  }
nav .navbar .links li{
    display: block;
    color: #fff;

  }
  
nav .navbar .links li a{
  color: #fff;
font-size: 17px;
}
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
  background:  #2A2185;
  font-size: 17px;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
  color: #fff;

  font-size: 17px;
}

nav .navbar .links li .sub-menu li a{
  border-bottom: none;
  color: #fff;
  font-size: 17px;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
  font-size: 17px;

}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;

}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
    font-size: 17px;

  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    font-size: 17px;

  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
    font-size: 17px;

  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
    font-size: 17px;

  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}
:root {
  --swiper-navigation-size: 25px !important;
  }
  .swiper-pagination-bullet {
      background-color: #ffc600 !important;
  }
.swiper-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  top: 85px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.large-screen-slider {
  display: none;
}

.small-screen-slider {
  display: block;
}
@media (max-width: 480px) {
 
 /* Ensure containers are properly styled */
 .swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
}
@media (max-width: 1200px) {
  .swiper-slide{
      width: 100%;
      height: 230px;
      position: relative;
      overflow: hidden;
  } /* Ensure containers are properly styled */
  .swiper-container {
      width: 100%;
      height: 100%;
  }
  .swiper-slide img {
      width: 100%;
      height: auto;
  }
}
@media (max-width: 992px) {
  
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}
@media (max-width: 640px) {
  
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}
@media (max-width: 600px) {
  
  .swiper-container {
      width: 100%;
      height: 100%;
  }
  .swiper-slide img {
      width: 100%;
      height: auto;
  }
}
@media (max-width: 576px) {
  
  .swiper-container {
      width: 100%;
      height: 100%;
  }
  .swiper-slide img {
      width: 100%;
      height: auto;
  }
}
@media (max-width: 320px) {
  
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}
@media (max-width: 240px) {
  
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}

@media (max-width: 409px) {
 
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}

@media (max-width: 412px) {
  
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}
@media (min-width: 768px) {
  .large-screen-slider {
      display: block;
  }

  .small-screen-slider {
      display: none;
  }
 
  .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: auto;
}
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.swiper-pagination {
  bottom: 10px !important;
}

/* Decrease size of previous and next buttons */
.swiper-button-container {
display: flex;
}

/* Decrease size of previous and next buttons */
.swiper-container .swiper-button-next, 
.swiper-container .swiper-button-prev {
color: white;
font-size: 14px !important;
font-weight: 700;
width: 20px !important;
height: 20px !important;
line-height: 20px !important;
padding: 5px !important;
}

.swiper-container .swiper-button-next:hover, 
.swiper-container .swiper-button-prev:hover{
  color:#842048;
}


.newandeventcontainer {
  width: 90%;
  margin: auto;
  padding: 0px 0;
  margin-top: 100px;
}

.newandeventheader {
  text-align: center;
  margin-bottom: 20px;
}

.newandeventheader h1 {
  margin: 0;
  font-size: 35px;
}

.newandeventheader .highlight {
  color: #f37a21;
}

.content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.video-gallery, .news-events {
  width: 48%;
}
.video-gallery h2, .news-events h2 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid gainsboro;
  padding-bottom: 15px;
  color: #2A2185;
}

.video-container {
  margin-top: 20px;
  margin-bottom: 30px;
}

.iframe-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-events ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.news-events ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  border-bottom: 1px solid gainsboro;
}

.news-events h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-events ul{
  max-height: 480px; /* Set max-height for scrolling */
  overflow-y: auto;
  padding-right: 10px;
}
.news-events ul::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Optional: just to avoid the scrollbar */
}

.news-events ul{
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.news-events ul::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}
.move-icons {
  font-size: 1.2em;
  cursor: pointer;
}

.move-icons i {
  margin: 0 10px;
}

.date {
  background-color: darkblue;
  color: white;
  text-align: center;
  margin-right: 15px;
  padding: 10px;
  font-size: 0.9em;
  width: 150px;
  height: 90px;
  padding-top: 15px;
}

.date .day {
  font-size: 1.5em;
  padding-top: 10px;
}

.event {
  background-color: white;
  padding-bottom: 25px;
  border: none;
  width: 100%;
}

.event h3 {
  margin: 0;
  font-size: 16px;
}

.event p {
  margin: 5px 0;
  color: #666;
}

.event .time {
  font-size: 1em;
  color: #999;
}
.enroll-btn {
  background-color: #4CAF50; /* Default background color */
  color: white; /* Default text color */
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.enroll-btn:hover {
  background-color: #45a049; /* Darker background color on hover */
  color: white; /* Text color turns white on hover */
}

/* 
/* Responsive Design */
@media (max-width: 360px) {
  .container {
      width: 95%;
  }

  .video-gallery, .news-events {
      width: 100%;
   
  }
  
.video-gallery h2, .news-events h2 {
  font-size: 22px;
}
  .video-gallery h3, .news-events h2 {
    font-size: 16px;
    color: #2a2185;
  }
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  .date {
    width: 100px;
    height: 100px;
    min-width: 70px;
}
header h1 {
  font-size: 1.8em;
}

.date {
  width: 100px;
  height: 80px;
  font-size: 0.7em;
}

.date .day {
  font-size: 2em;
}
.date .month-year {
font-size: 1.3em;
}

.event h3 {
  font-size: 1.7em;
}

.event p {
  font-size: 100px;
}
} 
@media (max-width: 384px) {
  .container {
      width: 95%;
  }

  .video-gallery, .news-events {
      width: 100%;
   
  }
  
.video-gallery h2, .news-events h2 {
  font-size: 22px;
}
  .video-gallery h3, .news-events h2 {
    font-size: 16px;
    color: #2a2185;
  }
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  .date {
    width: 100px;
    height: 100px;
    min-width: 70px;
}
header h1 {
  font-size: 1.8em;
}

.date {
  width: 100px;
  height: 80px;
  font-size: 0.7em;
}

.date .day {
  font-size: 2em;
}
.date .month-year {
font-size: 1.3em;
}

.event h3 {
  font-size: 1.7em;
}

.event p {
  font-size: 100px;
}
} 

@media (max-width: 412px) {
  .container {
      width: 95%;
  }

  .video-gallery, .news-events {
      width: 100%;
   
  }
  
.video-gallery h2, .news-events h2 {
  font-size: 22px;
}
  .video-gallery h3, .news-events h2 {
    font-size: 16px;
    color: #2a2185;
  }
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  .date {
    width: 100px;
    height: 100px;
    min-width: 70px;
}
header h1 {
  font-size: 1.8em;
}

.date {
  width: 100px;
  height: 80px;
  font-size: 0.7em;
}

.date .day {
  font-size: 2em;
}
.date .month-year {
font-size: 1.3em;
}

.event h3 {
  font-size: 1.7em;
}

.event p {
  font-size: 100px;
}
}


@media (max-width: 480px) {
  .container {
      width: 95%;
  }

  .video-gallery, .news-events {
      width: 100%;
   
  }
  
.video-gallery h2, .news-events h2 {
  font-size: 22px;
}
  .video-gallery h3, .news-events h2 {
    font-size: 16px;
    color: #2a2185;
  }
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  .date {
    width: 100px;
    height: 100px;
    min-width: 70px;
}
header h1 {
  font-size: 1.8em;
}

.date {
  width: 100px;
  height: 80px;
  font-size: 0.7em;
}

.date .day {
  font-size: 2em;
}
.date .month-year {
font-size: 1.3em;
}

.event h3 {
  font-size: 1.7em;
}

.event p {
  font-size: 100px;
}
}


@media (max-width: 540px) {
  .container {
      width: 95%;
  }

  .video-gallery, .news-events {
      width: 100%;
   
  }
  
.video-gallery h2, .news-events h2 {
  font-size: 22px;
}
  .video-gallery h3, .news-events h2 {
    font-size: 16px;
    color: #2a2185;
  }
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  .date {
    width: 100px;
    height: 100px;
    min-width: 70px;
}
header h1 {
  font-size: 1.8em;
}

.date {
  width: 100px;
  height: 80px;
  font-size: 0.7em;
}

.date .day {
  font-size: 2em;
}
.date .month-year {
font-size: 1.3em;
}

.event h3 {
  font-size: 1.7em;
}

.event p {
  font-size: 100px;
}
}


@media (max-width: 240px) {
  .container {
      width: 95%;
  }

  .video-gallery, .news-events {
      width: 100%;
   
  }
  
.video-gallery h2, .news-events h2 {
  font-size: 12px !important;
}
  .video-gallery h3, .news-events h2 {
    font-size: 11px;
    color: #2a2185;
  }
  .video-gallery p, .news-events h2 {
    font-size: 10px;
    text-align: justify;
  }
  .date {
    width: 100px;
    height: 100px;
    min-width: 70px;
}
header h1 {
  font-size: 0.8em;
}

.date {
  width: 100px;
  height: 80px;
  font-size: 0.5em;
}

.date .day {
  font-size: 1em;
}
.date .month-year {
font-size: 1em;
}

.event h3 {
  font-size: 1em !important;
}

.event p {
  font-size: 12px !important;
}
}

@media (max-width: 768px) {
  .iframe-container {
      padding-bottom: 56.25%; /* 16:9 ratio */
  }

  .date {
      width: 100px;
      height: 100px;
      min-width: 70px;
  }
  .video-gallery h2, .news-events h2 {
    font-size: 20px;
  }
  
.news-events ul{
  max-height: 400px; /* Set max-height for scrolling */
  overflow-y: auto;
  padding-right: 10px;
}
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  header h1 {
    font-size: 1.8em;
}

.date {
    width: 100px;
    height: 80px;
    font-size: 0.7em;
}

.date .day {
    font-size: 2em;
}
.date .month-year {
  font-size: 0.8em;
}

.event h3 {
    font-size: 1em;
}

.event p {
    font-size: 100px;
}
.video-gallery h2, .news-events h2 {
  font-size: 18px;
}
}


@media (max-width: 820px) {
  .iframe-container {
      padding-bottom: 56.25%; /* 16:9 ratio */
  }

  .date {
      width: 100px;
      height: 100px;
      min-width: 70px;
  }
  .video-gallery h2, .news-events h2 {
    font-size: 20px;
  }
  
.news-events ul{
  max-height: 400px; /* Set max-height for scrolling */
  overflow-y: auto;
  padding-right: 10px;
}
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  header h1 {
    font-size: 1.8em;
}

.date {
    width: 100px;
    height: 80px;
    font-size: 0.7em;
}

.date .day {
    font-size: 2em;
}
.date .month-year {
  font-size: 0.8em;
}

.event h3 {
    font-size: 1em;
}

.event p {
    font-size: 100px;
}
.video-gallery h2, .news-events h2 {
  font-size: 18px;
}
}

@media (max-width: 1024px) {
  .iframe-container {
      padding-bottom: 56.25%; /* 16:9 ratio */
  }

  .date {
      width: 100px;
      height: 100px;
      min-width: 70px;
  }
  .video-gallery h2, .news-events h2 {
    font-size: 20px;
  }
  
.news-events ul{
  max-height: 410px; /* Set max-height for scrolling */
  overflow-y: auto;
  padding-right: 10px;
}
  .video-gallery p, .news-events h2 {
    font-size: 15px;
    text-align: justify;
  }
  header h1 {
    font-size: 1.8em;
}

.date {
    width: 100px;
    height: 80px;
    font-size: 0.7em;
}

.date .day {
    font-size: 2em;
}
.date .month-year {
  font-size: 0.8em;
}

.event h3 {
    font-size: 1em;
}

.event p {
    font-size: 100px;
}
.video-gallery h2, .news-events h2 {
  font-size: 18px;
}
}
@media (max-width: 640px) {
  .iframe-container {
      padding-bottom: 56.25%; /* 16:9 ratio */
  }

  .date {
      width: 100px;
      height: 100px;
      min-width: 70px;
  }
  .video-gallery h2, .news-events h2 {
    font-size: 18px;
  }
  header h1 {
    font-size: 1.8em;
}

.date {
    width: 100px;
    height: 80px;
    font-size: 0.7em;
}

.date .day {
    font-size: 2em;
}
.date .month-year {
  font-size: 1.3em;
}

.event h3 {
    font-size: 1.2em;
}

.event p {
    font-size: 100px;
}
.video-gallery h2, .news-events h2 {
  font-size: 18px;
}
}

@media (max-width: 480px) {
  header h1 {
      font-size: 1.8em;
  }

  .date {
      width: 100px;
      height: 80px;
      font-size: 0.7em;
  }

  .date .day {
      font-size: 2em;
  }
  .date .month-year {
    font-size: 1.3em;
}

  .event h3 {
      font-size: 1.2em;
  }

  .event p {
      font-size: 100px;
  }
  .video-gallery h2, .news-events h2 {
    font-size: 18px;
  }
}



.counter-wrapper{
  background: url(images/kjasdfhjkashdkhak.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1.5rem;
  padding: 4rem 9%;
  position: relative;
  top: 30px;
  margin-top: 20px;
}
.counter-wrapper::before{
  position: absolute;
  content: '';
  content: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.counter{
 text-align: center;   
 color: white;
 z-index: 2;
 position: relative;
 bottom: 15px;
}
.counter::before{
  position: absolute;
  content: '';
  bottom: -2rem;
  left: 50%;
  width: 20%;
  height: .2rem;
  background: #dcc371;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.counter .count{
  font-size: 2rem;
  margin-bottom: 0.2rem;    
}
.counter
{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.counter p{
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color:white !important;
}
@media (max-width: 991px) {
 
  .counter-wrapper{
      font-size: 25%;
      background: url(images/phoneincrementorbackground.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 0.8rem;
      padding: 3rem 9%;
      position: relative;
  }
}
@media (max-width: 768px) {

  .counter-wrapper{
    font-size: 25%;
    background: url(images/phoneincrementorbackground.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0.8rem;
    padding: 3rem 9%;
    position: relative;
}
 .counter-wrapper{
     grid-template-columns: repeat(2, 1fr);
     grid-row-gap: 5rem;
 }

}
@media (max-width: 450px) {

  .counter-wrapper{
      font-size: 25%;
      grid-template-columns: 1fr;
  }

}

@media (max-width: 320px) {

  .counter-wrapper{
      font-size: 25%;
      grid-template-columns: 1fr;
  }

}

.courses {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery {
  text-align: center;
  padding: 10px 10px 0px 10px;
  width: 80%;
}

.gallery h1{
color: orange;
margin-bottom: 0px;
}
.gallery p{
color: grey;
margin-bottom: 40px;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  flex: 1 1 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.3);
}
.transparent-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.gallery-item .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text a {
  color: white;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-item {
      width: 100%;
      flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .text {
      font-size: 16px;
  }
}
.coursescontainer {
  font-family: 'Poppins', sans-serif;
  margin-top: 35px;
  margin-bottom: 70px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coursesrowcon {
  text-align: center;
  padding: 10px 10px 0px 10px;
  width: 90%;
}
.coursesrowcon h1{
color: #2A2185;
margin-bottom: 0px;
font-size: 30px;
}
.coursesrowcon p{
color: grey;
margin-bottom: 40px;
}

@media (max-width: 768px) {
  .coursesrowcon h1{
    color: #2A2185;
    margin-bottom: 0px;
    font-size: 30px;
    }
}
.coursesgallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.coursesgallery-item {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  flex: 1 1 300px;
}

.coursesgallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coursesoverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.transparent-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.coursesgallery-item .coursesoverlay {
  opacity: 1;
}

.coursestext {
  color: white;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.coursestext a {
  color: white;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}
   /* Existing CSS code */

    /* Add this CSS for hover effect */
    .coursesgallery-item:hover img {
      transform: scale(1.1);
      transition: transform 0.3s ease;
  }
/* Responsive Design */
@media (max-width: 768px) {
  .coursesgallery-item {
      width: 100%;
      flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .coursestext {
      font-size: 16px;
  }
}
.card
{
	display: flex;
	justify-content: space-between;
}
.testimonials {
  position: relative;
  width: 100%;
  padding: 20px 5% 30px;
  background-image: url('images/testimonials/1\ \(17\).png');
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden; /* This ensures that the shadow doesn't overflow */
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
}
.testimonials .section{
	max-width: 700px;
	text-align: center;
	margin: 10px auto;
}
.section h1{
	position: relative;
	font-size: 34px;
	color: white;
}

@media (max-width: 240px) {
  .section h1{
    position: relative;
    font-size: 25px;
    color: white;
  }
}

@media (max-width: 320px) {
  .section h1{
    position: relative;
    font-size: 25px;
    color: white;
  }
}

@media (max-width: 576px) {
  .section h1{
    position: relative;
    font-size: 25px;
    color: white;
  }
}

.testimonials-container{
  margin-top: 0px;
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 0px 20px;
}
.testimonial-card .test-card-body{
	background-color: var(--card-clr);
	border-radius: 10px;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.test-card-body .quotes{
	display: flex;
	align-items: center;
}
.test-card-body i{
	font-size: 45px;
	color: black;
	margin-right: 20px;
}
.test-card-body .quotes h2{
	color: var(--heading-clr);
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
  text-align: justify;
	color: var(--text-clr);
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
	color: #2A2185;;
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: grey;
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--card-clr) !important;
	color: #2A2185;
	cursor: pointer;
	transition: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
	background-color: #2A2185 !important;
	color: #fff;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: white !important;
}

.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}

.section_space {
  padding: 15px 0;
}
.section_header {
  text-align: center;
  margin-bottom: 5px;
  margin-top: 50px;
}
.section_header h2 {
  color: #222;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 20px;
  text-transform: uppercase;
}
.section_header h2 span {
  color: #2A2185;
}

.section_header p{
  color: grey;
  font-size: 16px;
  margin: 10px 0 30px;
  }
  
@media (max-width: 320px) {
 
.section_header p{
  color: grey;
  font-size: 16px;
  margin: 10px 0 30px;
  }
}

.blog-container {
  width: 90%;
  margin: 0px auto;
}
.row {
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
}
.col-12 {
  width: 100%;
}
.box {
  width: 100%;
}
.blog-section {
  transition: all 0.30s ease 0s;
  width: 340px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 10px auto;
}
.blog-section:hover {
  transform: translateY(-10px);
}
.blog-img {
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.30s ease 0s;
}
.blog-section:hover .blog-img:after {
  opacity: 1;
}
.single_blog {
  border-top: none;
  padding: 15px 20px 15px;
  background: #fff;
  position: relative;
}
.blog-title {
  margin: 0 0 15px 0px;
  font-size: 20px;
  color: #333;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
}
.blog-text {
  font-size: 15px;
  line-height: 23px;
  margin: 7px 0 5px;
}
.icon-area {
  list-style: none;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.icon-area > li {
  display: inline-block;
  margin-right: 5px;
  color: #555;
  font-style: italic;
}
.icon-area > li i {
  color: #2A2185;
  margin-right: 5px;
  font-size: 14px;
}
.btn-area a {
  background: linear-gradient(to right, #2A2185, #2A2185);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 11px 22px;
  margin: 10px 0px 10px;
  border: none;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.2s ease-in-out 0s;
  display: inline-block;
  text-decoration: none;
}
/* Adjustments for tablets */
@media (max-width: 1024px) {
  .blog-section {
      width: 100%;
      margin: 0 auto 30px; /* Center and add bottom margin */
  }
}
/* Adjustments for tablets */
@media (max-width: 992px) {
  .blog-section {
      width: 100%;
      margin: 0 auto 30px; /* Center and add bottom margin */
  }
}

/* Adjustments for mobile devices */
@media (max-width: 767px) {
  .blog-section {
      width: 100%;
      margin: 0 auto 30px; /* Center and add bottom margin */
  }
  .blog-img img {
      height: 180px; /* Reduce image height */
  }
  .blog-title {
      font-size: 18px; /* Decrease title font size */
  }
  .icon-area {
      font-size: 12px; /* Decrease icon area font size */
  }
  .btn-area a {
      padding: 10px 20px; /* Adjust button padding */
  }
}

.footercontainer {
  max-width: 1170px;
  margin: auto;
}

.footer {
  background-color: #2A2185;
  padding: 50px 0;
}

.footer-col {
  width: 20%;
  padding: 0 20px;
}

.footer-col:first-child {
  width: 40%;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;

  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #dcc371;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #dcc371;
  padding-left: 5px;
}

.footer-col .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.footer-col .social-links a {
  display: inline-flex;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #2A2185;
  background-color: #fff;
}

.footer-col h2 {
  font-size: 24px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}

.footer-col h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #dcc371;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col p {
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  display: block;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-col {
      width: 50%;
      margin-bottom: 30px;
  }

  .footer-col:first-child {
      width: 100%;
  }
}
@media (max-width: 992px) {
.footer-col .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 25px;
}

.footer-col .social-links a {
  display: inline-flex;
  height: 25px !important;
  width: 25px !important;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #2A2185;
  background-color: #fff;
}
}

@media (max-width: 576px) {
  .footer-col .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 25px;
  }
  
  .footer-col .social-links a {
    display: inline-flex;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  
  .footer-col .social-links a:hover {
    color: #2A2185;
    background-color: #fff;
  }
  }
@media (max-width: 574px) {
  .footer-col {
      width: 100%;
  }
}
.copyright-footer {
  background: #2A2185;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border-top:1px solid #fff;
}

.copyright-footer p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}


@media (max-width: 574px) {
.copyright-footer p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
}

@media (max-width: 768px) {
  .copyright-footer p {
    margin: 0;
    font-size: 14px;
    color: #fff;
  }
  }
  
@media (max-width: 992px) {
  .copyright-footer p {
    margin: 0;
    font-size: 10px;
    color: #fff;
  }
  }
  
@media (max-width: 360px) {
  .copyright-footer p {
    margin: 0;
    font-size: 12px;
    color: #fff;
  }
}

.aboutushero {
  background-image: url('images/aboutusoverlay.png');
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

.aboutusoverlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.aboutuscontent {
  text-align: center;
}

.aboutuscontent h1 {
  font-size: 3rem;
  margin: 0;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .aboutuscontent h1 {
      font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .aboutushero {
    height: 30vh;
}

.aboutuscontent h1 {
      font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .aboutushero {
      height: 30vh;
  }

  .aboutuscontent h1 {
      font-size: 2.5rem;
  }
}
@media (max-width: 640px) {
  .aboutushero {
      height: 60vh;
  }

  .aboutuscontent h1 {
      font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .aboutushero {
      height: 30vh;
  }

  .aboutuscontent h1 {
      font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .aboutushero {
      height: 30vh;
  }

  .aboutuscontent h1 {
      font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .aboutushero {
      height: 40vh;
  }

  .aboutuscontent h1 {
      font-size: 2rem;
  }
}

@media (max-width: 240px) {
  .aboutushero {
      height: 50vh;
  }

  .aboutuscontent h1 {
      font-size: 2rem;
  }
}

.main-wrapper {
  width: 89%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}


.text-section {
  flex: 1 1 50%;
  padding: 20px;
}

.text-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #2A2185;
}

.text-section h2::after {
  content: '';
  display: block;
  width: 20%;
  height: 2px; /* Adjust thickness */
  background-color: #dcc371; /* Adjust color */
  position: absolute;
  bottom: 0;
  left: 0;
}

.text-section p {
  margin-bottom: 10px;
  text-align: justify;
}

.read-more {
  background-color: #f0ad4e;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.read-more:hover {
  background-color: #ec971f;
}

.image-section {
  position: relative;
  flex: 1 1 50%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  width: 100%;
  height: auto;
  max-width: 600px;
}

.play-button {
  position: absolute;
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Video Popup */
.video-popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 60px;
}

.video-popup-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 350px;
  position: relative;
}

.video-popup-content video {
  height: auto;
  width: 500px;
  height: 315px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.close {
  color: #aaa;
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
  body {
      font-size: 15px;
  }

  .text-section h2 {
      font-size: 1.8rem;
      color: #2A2185;
  }

  .text-section p {
      font-size: 0.95rem;
  }
  
}

@media (max-width: 992px) {
  body {
      font-size: 14px;
  }

  .text-section h2 {
      font-size: 3rem;
  }

  .text-section p {
      font-size: 1rem;
  }

  .main-wrapper {
      flex-direction: column;
  }
  .image-section {
    width: 100%;
}
  .text-section, .image-section {
      flex: 1 1 100%;
  }
  
.video-popup-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  max-width: 350px;
  position: relative;
}

.video-popup-content video {
  height: auto;
 width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
}

@media (max-width: 768px) {
  body {
      font-size: 13px;
  }

  .text-section h2 {
      font-size: 1.4rem;
  }

  .text-section p {
      font-size: 0.85rem;
  }

  .read-more {
      font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  
.main-wrapper {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
  body {
      font-size: 12px;
  }

  .text-section h2 {
      font-size: 1.5rem;
  }

  .text-section p {
      font-size: 1rem;
  }

  .read-more {
      font-size: 0.8rem;
      padding: 8px 16px;
  }
}

#founderabout-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
}

.founderabout-left {
  flex: 1 1 100%;
  max-width: 420px;
  margin: 20px 0px;
}

.founderabout-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.founderabout-right {
  flex: 1 1 100%;
  max-width: 54%;
}

.founderabout-right h1 {
  color: #2A2185;
  font-size: 37px;
  margin-bottom: 5px;
}

.founderabout-right p {
  color: #444;
  line-height: 26px;
  font-size: 15px;
  text-align: justify;
}

.founderabout-right .founderaddress {
  margin: 25px 0;
}

.founderabout-right .founderaddress ul {
  list-style: none;
}

.founderabout-right .founderaddress ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.founderaddress .founderaddress-logo {
  margin-right: 15px;
  color: #2A2185;
}

.founderaddress .foundersaprater {
  margin: 0 10px;
}

.founderabout-right .founderexpertise {
  margin-top: 20px;
}

.founderexpertise h3 {
  margin-bottom: 10px;
}

.founderabout-right .founderexpertise ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.founderabout-right .founderexpertise ul li {
  display: flex;
  align-items: center;
  width: 45%;
  margin-bottom: 10px;
  margin-right: 20px;
}

.founderexpertise .founderexpertise-logo {
  font-size: 19px;
  margin-right: 10px;
  color: #2A2185;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  #founderabout-section {
      padding: 60px 8%;
  }

  .founderabout-right {
      max-width: 90%;
  }

  .founderabout-right .founderexpertise ul li {
      width: 48%;
  }
  
.founderaddress .founderaddress-logo {
font-size: 20px;
}

.founderaddress .foundersaprater {
  font-size: 20px;
}

.founderabout-right .founderexpertise {
  font-size: 20px;
}

.founderexpertise h3 {
  font-size: 20px;
}

.founderabout-right .founderexpertise ul {
  font-size: 20px;

}

.founderabout-right .founderexpertise ul li {
  font-size: 20px;

}

.founderexpertise .founderexpertise-logo {
  font-size: 20px;

}
}

@media (max-width: 992px) {
  #founderabout-section {
      padding: 20px 2%;
      flex-direction: column;
  }

  .founderabout-left {
      margin: 20px 0px;
  }

  .founderabout-right h4 {
    font-size: 13px;
}

  .founderabout-right h1 {
      font-size: 30px;
  }

  .founderabout-right p {
      font-size: 16px;
      line-height: 22px;
      width: 100%;
  }

  .founderaddress .founderaddress-logo {
    font-size: 20px;
    }
    
    .founderaddress .foundersaprater {
      font-size: 20px;
    }
    
    .founderabout-right .founderexpertise {
      font-size: 20px;
    }
    
    .founderexpertise h3 {
      font-size: 20px;
    }
    
    .founderabout-right .founderexpertise ul {
      font-size: 20px;
    
    }
    
    .founderabout-right .founderexpertise ul li {
      font-size: 20px;
    
    }
    
    .founderexpertise .founderexpertise-logo {
      font-size: 20px;
    
    }
}
@media (max-width: 768px) {
  #founderabout-section {
      padding: 40px 5%;
  }

  .founderabout-right h1 {
      font-size: 14px;
  }

  .founderabout-right p {
      font-size: 14px;
  }

  .founderabout-right .founderexpertise ul li {
      width: 100%;
  }
}

@media (max-width: 480px) {
  #founderabout-section {
      padding: 20px 2%;
      flex-direction: column;
  }

  .founderabout-left {
      margin: 20px 0px;
  }

  .founderabout-right h4 {
    font-size: 15px;
}

  .founderabout-right h1 {
      font-size: 30px;
  }

  .founderabout-right p {
      font-size: 16px;
      line-height: 22px;
      width: 100%;
  }

  .founderabout-right .founderexpertise ul li {
      width: 100%;
  }

  .founderaddress .foundersaprater {
      margin: 0 10px;
  }
}

.promotion-wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.details-section {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.details-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #2A2185;
}

.details-section h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 2px;
  background-color: #dcc371;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.details-section p {
  margin-bottom: 10px;
  text-align: center;
}

.list-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin-top: 30px;
}

.highlight-list {
  list-style: none;
  padding: 0;
}

.highlight-list li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

.photo-section {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-section img {
  width: 80%;
  height: auto;
  max-width: 500px;
}

@media (max-width: 768px) {
.list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}

@media (max-width: 240px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}

@media (max-width: 320px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}
@media (max-width: 576px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}
@media (max-width: 600px) {
  .list-container {
    grid-template-columns: 1fr;
    }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}
@media (max-width: 640px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}

@media (max-width: 992px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}

@media (max-width: 1200px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}
@media (max-width: 480px) {
  .list-container {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    width: 100%;
  }
  
.highlight-list li::before {
  content: '✔';
  color: #2A2185;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}
}
.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.contact-card {
  display: flex;
  background-color: #fff;
  overflow: hidden;
  width: 90%; 
  max-width: 1200px;
}

.contact-info-section {
  background-color: #000;
  color: white;
  padding: 40px;
  width: 40%;
  border: none;
}

.contact-info-section h2 {
  font-size: 28px;
}

.contact-info-section p {
  margin: 10px 0;
  line-height: 1.4;
  font-size: 14px;
}

.contact-info-details p {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 14px;
  color: white;
}

.contact-info-details p i {
  margin-right: 10px;
}

.contact-social-media {
  margin-top: 30px;
}

.contact-social-media h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-social-media a {
  color: white;
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  border: 1px solid white;
  text-align: center;
}

.contact-social-media a:hover {
  background-color: #2A2185;
  border-radius: 50%;
  border: 1px solid #2A2185;
  color: #fff;
}

.contact-form-section {
  background-color: white;
  color: black;
  padding: 40px;
  width: 60%;
}
.contact-form-section h2 {
  font-size: 28px;
  margin-left: 10px;
  position: relative; /* Added */
  display: inline-block; /* Added */
}

.contact-form-section h2::after {
  content: "";
  position: absolute;
  width: 50%; /* Adjust width as needed */
  height: 3px; /* Adjust height as needed */
  bottom: -5px; /* Adjust position as needed */
  left: 25%; /* Center the underline */
  transform: translateX(-50%); /* Center the underline */
  background: #dcc371;
  transition: all 0.3s ease;
}

.contact-form-section p {
  margin: 20px 0;
  line-height: 1.4;
  font-size: 14px;
  margin-left: 10px;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
}

.contact-form-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contact-form-section form input {
  outline: none;
}

.contact-form-section form input {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  width: 50%;
  outline: none;
  margin-left: 10px;
}

.contact-form-section form textarea {
  width: 99%;
  height: 50px;
  resize: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  margin-left: 10px;
}

.contact-form-section form button {
  margin-left: 10px;
  background-color: #2A2185;
  border: none;
  margin-top: 10px;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  width: 30%;
}

.contact-form-section form button:hover {
  background-color: #483bda;
}

@media (max-width: 1200px) {
  .contact-form-section form button {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .contact-card {
    flex-wrap: wrap;
    width: 90%;
  }

  .contact-info-section, .contact-form-section {
    width: 100%;
    padding: 20px;
  }

  .contact-form-group {
    flex-direction: column;
  }

  .contact-form-section form input,
  .contact-form-section form textarea,
  .contact-form-section form button {
    width: 100%;
    margin-left: 0;
  }
}

:root{
  --color-primary:#000000;
  --color-secondary:#f35b53;
  --color-white: #ffffff;
}

a,a:hover{
  text-decoration: none;
}

li{
  list-style: none;
}
.contact-info-section p{
  color: white;
}
p{
  color: black;
  line-height: 1.6;
}

.blog-container{
  width: 89%;
  margin: 0 auto;
}

.blog-row{
  margin: 0 -15px;
}

.blog-wrapper{
  padding: 0 15px;
}




/* Main Styles */
main{
  margin: 60px 0;
}

main .blog-wrapper{
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-gap: 30px;
}

main .blog-hot-post .blog-thumbnail{
  width: 100%;
}

main .blog-hot-post .blog-thumbnail img{
  width: 100%;
}

main .blog-hot-post .blog-hot-blog-post-bio{
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

main .blog-hot-post .blog-hot-blog-post-bio .blog-hot-blog-post-title{
  width: 50%;
  font-size: 48px;
  font-weight: 800;
  padding-right: 20px;
}

main .blog-hot-post .blog-hot-post-info{
  width: 50%;
}

main .blog-hot-post .blog-hot-post-info p{
  margin-top: 10px;
}

main .blog-hot-post .blog-hot-post-info .btn{
  display: inline-block;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-top: 45px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-secondary);
  transition: .3s;
}

main .blog-hot-post .blog-hot-post-info .btn:hover{
  background: var(--color-primary);
}


/* blog-sidebar Styles */
main .blog-sidebar{
  padding: 40px 30px;
  background-color: #111111;
}

main .blog-sidebar .blog-sidebar-title{
  font-size: 40px;
  color: var(--color-secondary);
}

main .blog-sidebar .blog-sidebar-posts{
  padding: 25px 0;
  border-bottom: .5px solid gray;
}
.blog-sidebar-posts p{
  color: gray;
}

main .blog-sidebar .blog-sidebar-posts:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

main .blog-sidebar .blog-sidebar-posts .blog-sidebar-posts-title{
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  transition: .3s;
}

main .blog-sidebar .blog-sidebar-posts .blog-sidebar-posts-title:hover{
  color: var(--color-secondary);
}



/* Blog Section Styles */
section.blog-posts{
  padding: 30px 0;
}

section .blog-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 30px;
}

section .blog-single-post{
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2fr;
}

section .blog-single-post .blog-post-thumbnail{
  width: 100px;
  height: auto;
}

section .blog-single-post .blog-post-thumbnail img{
  width: 100%;
}

section .blog-single-post .blog-post-bio span{
  font-size: 26px;
  font-weight: 800;
  color: gray;
}

section .blog-single-post .blog-post-bio .blog-post-title{
  display: block;
  font-size: 20px;
  margin: 8px 0;
  color: purple;
  transition: .3s;
}

section .blog-single-post .blog-post-bio .blog-post-title:hover{
  color: var(--color-secondary);
}





/* Media Sizes Styles */
@media (max-width:1200px){
  .blog-container{
      width: 100%;
  }
  .blog-row{
      margin: 0;
  }
}

@media (max-width:992px){
  main .blog-wrapper{
      grid-template-columns: 1fr;
  }
  main .blog-hot-post .blog-hot-blog-post-bio .blog-hot-blog-post-title, main .blog-hot-post .blog-hot-post-info{
      width: 100%;
  }
  section .blog-wrapper{
      grid-template-columns: 1fr;
  }
  section .blog-single-post{
      grid-template-columns: 1fr 6fr;
  }
}

@media (max-width:768px){
  .overlay.active{
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      width: 100%;
      height: 100vh;
      z-index: 1;
      transition: .3s;
      background:rgba(0,0,0,0.451);
  }
  nav .navbar .nav-btn{
      display: block;
  }
  nav{
      padding: 20px 0;
  }
  nav .navbar ul{
      flex-direction: column;
      width: 100%;
      align-items: start;
  }
  nav .navbar ul li a{
      color: var(--color-primary);
  }
  nav .navbar .main-menu{
      position: absolute;
      top: 0;
      width: 75%;
      height: 100vh;
      opacity: 0;
      visibility: hidden;
      padding: 100px 25px 25px 25px;
      background-color: var(--color-white);
      transition: all .3s;
      z-index: 10;
  }
  nav .navbar .main-menu.active{
      right: 0;
      opacity: 1;
      visibility: visible;
  }
  section .blog-single-post{
      grid-template-columns: 1fr 4fr;
  }
}

@media (max-width: 560px){
  main .blog-hot-post .blog-hot-blog-post-title{
      font-size: 46px;
  }
  section .blog-single-post{
      grid-template-columns: 1fr 2fr;
  }
}

.blog-section-container
{
  max-width: 1250px;
  text-align: justify;
  margin: 0 auto;
}

.blog-secction-card {
    background: #fff;
    transition: .5s;
    border: 0;
    margin-bottom: 30px;
    border-radius: .55rem;
    position: relative;
    width: 100%;
}
.blog-secction-card .body {
    color: #444;
    font-weight: 400;
}
.blog-secction-card .singleblog-header {
    color: #444;
    padding-left: 20px;
    position: relative;
    box-shadow: none;
    background-color: #fff;
}
.blog-listing {
    padding-top: 20px;
    padding-bottom: 30px;
}
.gray-bg {
    background-color: #f5f5f5;
}
/* Blog 
---------------------*/
.blog-grid {
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-grid .blog-img {
  position: relative;
}
.blog-grid .blog-img .date {
  position: absolute;
  background: #fc5356;
  color: #ffffff;
  padding: 8px 15px;
  left: 10px;
  top: 10px;
  border-radius: 4px;
}
.blog-grid .blog-img .date span {
  font-size: 22px;
  display: block;
  line-height: 22px;
  font-weight: 700;
}
.blog-grid .blog-img .date label {
  font-size: 14px;
  margin: 0;
}
.blog-grid .blog-info {
  padding: 20px;
}
.blog-grid .blog-info h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.blog-grid .blog-info h5 a {
  color: #20247b;
}
.blog-grid .blog-info p {
  margin: 0;
}
.blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}

.blog-aside .widget {
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 35px;
  margin-bottom: 15px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.blog-aside .widget-body {
  padding: 15px;
}
.blog-aside .widget-title {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.blog-aside .widget-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fc5356;
  margin: 0;
}
.blog-aside .widget-author .media {
  margin-bottom: 15px;
}
.blog-aside .widget-author p {
  font-size: 16px;
  margin: 0;
  color: #000;
}
.blog-aside .widget-author .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-aside .widget-author h6 {
  font-weight: 600;
  color: #20247b;
  font-size: 20px;
  margin: 0;
  padding-left: 20px;
  text-align: left;
}
.blog-aside .post-aside {
  margin-bottom: 15px;
}
.blog-aside .post-aside .post-aside-title h5 {
  margin: 0;
}
.blog-aside .post-aside .post-aside-title a {
  font-size: 18px;
  color: #20247b;
  font-weight: 600;
}
.blog-aside .post-aside .post-aside-meta {
  padding-bottom: 10px;
}
.blog-aside .post-aside .post-aside-meta a {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.blog-aside .latest-post-aside + .latest-post-aside {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}
.blog-aside .latest-post-aside .lpa-right {
  width: 90px;
}
.blog-aside .latest-post-aside .lpa-right img {
  border-radius: 3px;
}
.blog-aside .latest-post-aside .lpa-left {
  padding-right: 15px;
}
.blog-aside .latest-post-aside .lpa-title h5 {
  margin: 0;
  font-size: 15px;
}
.blog-aside .latest-post-aside .lpa-title a {
  color: #20247b;
  font-weight: 600;
}
.blog-aside .latest-post-aside .lpa-meta a {
  color: #6F8BA4;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}

.tag-cloud a {
  padding: 4px 15px;
  font-size: 13px;
  color: #ffffff;
  background: #20247b;
  border-radius: 3px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.tag-cloud a:hover {
  background: #fc5356;
}

.blog-section-blog-single {
  padding-top: 30px;
  padding-bottom: 30px;
}

.article {
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  margin: 15px 0 30px;
}
.article .article-title {
  padding: 15px 0 20px;
}
.article .article-title h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.article .article-title h6 a {
  text-transform: uppercase;
  color: #fc5356;
  border-bottom: 1px solid #fc5356;
}
.article .article-title h2 {
  color: #20247b;
  font-weight: 600;
}
.article .article-title .media {
  padding-top: 15px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}
.article .article-title .media .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.article .article-title .media .media-body {
  padding-left: 8px;
}
.article .article-title .media .media-body label {
  font-weight: 600;
  color: #fc5356;
  margin: 0;
}
.article .article-title .media .media-body span {
  display: block;
  font-size: 10px;
}
.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
  color: #20247b;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 560px){
  .article-title h2{
     font-size: 24px;
   }
   .article .article-content h1,
 .article .article-content h2,
 .article .article-content h3,
 .article .article-content h4,
 .article .article-content h5,
 .article .article-content h6 {
   color: #20247b;
   font-weight: 600;
   font-size: 20px;
   margin-bottom: 15px;
 }
 .media-body label{
   font-size: 20px;
 }
 .media-body span{
    font-size: 10px;
 }
 .article-content p{
   color: black;
   font-size: 18px;
 }
 
 .article-content ul li{
   color: black;
   font-size: 18px;
 }
 .article-content ol li{
   color: black;
   font-size: 18px;
 }
 }
 

 @media (max-width: 768px){
  .article-title h2{
     font-size: 24px;
   }
   .article .article-content h1,
 .article .article-content h2,
 .article .article-content h3,
 .article .article-content h4,
 .article .article-content h5,
 .article .article-content h6 {
   color: #20247b;
   font-weight: 600;
   font-size: 20px;
   margin-bottom: 15px;
 }
 .media-body label{
   font-size: 20px;
 }
 .media-body span{
    font-size: 10px;
 }
 .article-content p{
   color: black;
   font-size: 18px;
 }
 
 .article-content ul li{
   color: black;
   font-size: 18px;
 }
 .article-content ol li{
   color: black;
   font-size: 18px;
 }
 }

 
 @media (max-width: 1024px){
  .article-title h2{
     font-size: 24px;
   }
   .article .article-content h1,
 .article .article-content h2,
 .article .article-content h3,
 .article .article-content h4,
 .article .article-content h5,
 .article .article-content h6 {
   color: #20247b;
   font-weight: 600;
   font-size: 20px;
   margin-bottom: 15px;
 }
 .media-body label{
   font-size: 20px;
 }
 .media-body span{
    font-size: 10px;
 }
 .article-content p{
   color: black;
   font-size: 18px;
 }
 
 .article-content ul li{
   color: black;
   font-size: 18px;
 }
 .article-content ol li{
   color: black;
   font-size: 18px;
 }
 }

.article-content p{
  color: black;
}
.article .article-content blockquote {
  max-width: 600px;
  padding: 15px 0 30px 0;
  margin: 0;
}
.article .article-content blockquote p {
  font-size: 20px;
  font-weight: 500;
  color: #fc5356;
  margin: 0;
}
.article .article-content blockquote .blockquote-footer {
  color: #20247b;
  font-size: 16px;
}
.article .article-content blockquote .blockquote-footer cite {
  font-weight: 600;
}
.article .tag-cloud {
  padding-top: 10px;
}

.article-comment {
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
}
.article-comment h4 {
  color: #20247b;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 22px;
}
img {
    width: 100%;
}
img {
    vertical-align: middle;
    border-style: none;
}

/* Contact Us
---------------------*/
.contact-name {
  margin-bottom: 30px;
}
.contact-name h5 {
  font-size: 22px;
  color: #20247b;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-name p {
  font-size: 18px;
  margin: 0;
}

.social-share a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  margin-right: 10px;
}
.social-share .dribbble {
  box-shadow: 0 8px 30px -4px rgba(234, 76, 137, 0.5);
  background-color: #ea4c89;
}
.social-share .behance {
  box-shadow: 0 8px 30px -4px rgba(0, 103, 255, 0.5);
  background-color: #0067ff;
}
.social-share .linkedin {
  box-shadow: 0 8px 30px -4px rgba(1, 119, 172, 0.5);
  background-color: #0177ac;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #20247b;
  background: transparent;
  border-radius: 0;
  padding-left: 0;
  box-shadow: none !important;
}
.contact-form .form-control:focus {
  border-bottom: 1px solid #fc5356;
}
.contact-form .form-control.invalid {
  border-bottom: 1px solid #ff0000;
}
.contact-form .send {
  margin-top: 20px;
}

.comment-reply li {
    margin-bottom: 15px
}

.comment-reply li:last-child {
    margin-bottom: none
}

.comment-reply li h5 {
    font-size: 18px
}

.comment-reply li p {
    margin-bottom: 0px;
    font-size: 15px;
    color: #777
}

.comment-reply .list-inline li {
    display: inline-block;
    margin: 0;
    padding-right: 20px
}

.comment-reply .list-inline li a {
    font-size: 13px
}
@media (max-width: 768px) {
  nav
  {
      padding: 0;
  }
  .navbar .logo img {
      max-width: 100%; /* Adjust this value as needed */
      margin-left: 25px;
  }
}

@media (max-width: 240px) {
  nav
  {
      padding: 0;
  }
  .navbar .logo img {
      max-width: 90%; /* Adjust this value as needed */
      margin-left: 8px;
  }
}
@media (max-width: 640px) {
  
    .blog-page .left-box .single-comment-box>ul>li {
        padding: 25px 0
    }
    .blog-page .left-box .single-comment-box ul li .icon-box {
        display: inline-block
    }
    .blog-page .left-box .single-comment-box ul li .text-box {
        display: block;
        padding-left: 0;
        margin-top: 10px
    }
    .blog-page .single_post .footer .stats {
        float: none;
        margin-top: 10px
    }
    .blog-page .single_post .body,
    .blog-page .single_post .footer {
        padding: 30px
    }
}
@media (max-width: 767px) {

  .contact-form .send {
    margin-bottom: 20px;
  }
}

.section-title h2 {
    font-weight: 700;
    color: #20247b;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #fc5356;
    padding-left: 15px;
}
.section-title {
    padding-bottom: 45px;
}
.contact-form .send {
    margin-top: 20px;
}
.px-btn {
    padding: 0 50px 0 20px;
    line-height: 60px;
    position: relative;
    display: inline-block;
    color: #20247b;
    background: none;
    border: none;
}
.px-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 30px;
    background: transparent;
    border: 1px solid rgba(252, 83, 86, 0.6);
    border-right: 1px solid transparent;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    width: 60px;
    height: 60px;
}
.px-btn .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}
.px-btn .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


.offlinecoursesection {
  padding-block: min(20vh, 2rem);
  width: calc(min(76.5rem, 85%));
  margin-inline: auto;
  color: #111;
}

h2 {
  text-transform: capitalize;
  letter-spacing: 0.025em;
  font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
}

a {
  display: inline-block;
  text-decoration: none;
}

.rotate-45 {
  transform: rotate(45deg);
}

.offlinecourse-container {
  margin-top: 3em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.offlinecourse-card:nth-child(1) .offlinecourse-box .offlinecourse-icon .offlinecourse-iconBox {
  background: #d3b19a;
}

.offlinecourse-card:nth-child(2) .offlinecourse-box .offlinecourse-icon .offlinecourse-iconBox {
  background: #70b3b1;
}

.offlinecourse-card:nth-child(3) .offlinecourse-box .offlinecourse-icon .offlinecourse-iconBox {
  background: #d05fa2;
}

.offlinecourse-card ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.offlinecourse-card ul li {
  text-transform: uppercase;
  background: var(--clr-tag);
  color: #282828;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.375rem 0.625rem;
  border-radius: 0.188rem;
}

.offlinecourse-card ul li.branding {
  color: darken(#d3b19a, 40%);
}

.offlinecourse-card ul li.packaging {
  color: darken(#70b3b1, 40%);
}

.offlinecourse-card ul li.marketing {
  color: darken(#d05fa2, 40%);
}

.offlinecourse-content {
  padding: 0.938rem 0.625rem;
}

.offlinecourse-content h3 {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
}

.offlinecourse-content p {
  margin: 0.625rem 0 1.25rem;
  color: #565656;
}

.offlinecourse-card-inner {
  position: relative;
  width: inherit;
  height: 18.75rem;
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.offlinecourse-box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.offlinecourse-imgBox {
  position: absolute;
  inset: 0;
}

.offlinecourse-imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offlinecourse-icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 5rem;
  height: 5rem;
  background: var(--clr);
  border-top-left-radius: 50%;
}

.offlinecourse-icon:hover .offlinecourse-iconBox {
  transform: scale(1.1);
}

.offlinecourse-icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.offlinecourse-icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

.offlinecourse-iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.offlinecourse-iconBox span {
  color: #fff;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
          
.offlinecourse-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}
.offlinecourse-card {
              padding: 10px;
          }

          .offlinecourse-content p {
            margin: 0.625rem 0 1.25rem;
            color: #565656;
            font-size: 20px;
          }
          .offlinecourse-icon {
              position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 5rem;
  height: 5rem;
  background: var(--clr);
  border-top-left-radius: 50%;
          }

          .offlinecourse-content {
              padding: 15px;
          }
      }

      @media screen and (max-width: 480px) {
        .offlinecourse-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
          gap: 1rem;
        }
        .offlinecourse-card {
              padding: 5px;
          }
          .offlinecourse-content p {
            margin: 0.625rem 0 1.25rem;
            color: #565656;
            font-size: 20px;
          }
          .offlinecourse-icon {
              position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 5rem;
  height: 5rem;
  background: var(--clr);
  border-top-left-radius: 50%;
          }

          .offlinecourse-content {
              padding: 10px;
          }
      }
      @media screen and (max-width: 768px) {
          .offlinecourse-note p {
            font-size: 16px !important;
          }
         
      }
      @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

      /* Filter Styles */
      .filters {
          display: flex;
          justify-content: center;
          margin:20px 20px 20px 20px;
          position: relative; /* Ensure relative positioning for absolute pseudo-element */
      }
      
      .filter-btn {
          font-family: 'Poppins', sans-serif;
          padding: 10px 20px;
          margin: 0 10px;
          font-size: 18px;
          border: none;
          background-color: #fff;
          color: #333;
          cursor: pointer;
          transition: background-color 0.3s, color 0.3s, border-color 0.3s;
          position: relative; /* Ensure relative positioning for absolute pseudo-element */
      }
      
      .filter-btn.active {
          color: #2A2185;
          border-color: #333;
      }
      
      /* Underline Effect */
      .filter-btn.active::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -2px; /* Adjust to position the underline properly */
          width: 100%;
          height: 2px; /* Height of the underline */
          background-color: #2A2185; /* Color of the underline */
          transition: width 0.3s ease; /* Smooth transition for width change */
      }
      
      .filter-btn::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -2px; /* Adjust to position the underline properly */
          width: 0;
          height: 2px; /* Height of the underline */
          background-color: transparent; /* Initially transparent */
          transition: width 0.3s ease; /* Smooth transition for width change */
      }
      
      .filter-btn:hover::after {
          width: 100%; /* Expand underline width on hover */
      }
      @media (max-width: 768px) {
          .filters {
              flex-wrap: wrap;
          }
      
          .filter-btn {
              margin: 5px;
          }
      }
      
      .gallery_page {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
          padding: 10px 80px;
         
      }
      
      .gallery_page-item {
          width: calc(25% - 10px);
          cursor: pointer;
          transition: transform 0.2s;
      }
      
      .gallery_page-item:hover {
          transform: scale(1.05);
      }
      
      .gallery_page-item img {
          width: 100%;
          height: auto;
          border-radius: 5px;
      }
      
      /* Lightbox Styles */
      .lightbox {
          display: none;
          position: fixed;
          z-index: 1000;
          padding-top: 60px;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          overflow: auto;
          background-color: rgba(0,0,0,0.9);
      }
      
      .lightbox-content {
          display: block;
          margin: auto;
          width: 80%;
          max-width: 700px;
      }
      
      .lightbox-caption {
          color: #f1f1f1;
          text-align: center;
          padding: 10px 0;
      }
      
      .gallery_pageclose {
          position: absolute;
          top: 15px;
          right: 35px;
          color: #f1f1f1;
          font-size: 40px;
          font-weight: bold;
          transition: 0.3s;
      }
      
      .gallery_pageclose:hover,
      .gallery_pageclose:focus {
          color: #bbb;
          text-decoration: none;
          cursor: pointer;
      }
      
      .gallery_pageprev, .gallery_pagenext {
          cursor: pointer;
          position: absolute;
          top: 50%;
          width: auto;
          padding: 16px;
          margin-top: -50px;
          color: white;
          font-weight: bold;
          font-size: 20px;
          transition: 0.6s ease;
          user-select: none;
      }
      
      .gallery_pagenext {
          right: 0;
      }
      
      .gallery_pageprev {
          left: 0;
      }
      
      .gallery_pageprev:hover, .gallery_pagenext:hover {
          background-color: rgba(0,0,0,0.8);
      }
      
      /* Responsive Styles */
      @media (max-width: 1200px) {
        .gallery_page {
          padding: 10px 20px;
         
      }
      
          .gallery_page-item {
              width: calc(33.33% - 10px);
          }
      }
      
      /* Responsive Styles */
      @media (max-width: 768px) {
        .gallery_page {
          padding: 10px 20px;
         
      }
          .gallery_page-item {
              width: calc(50% - 10px);
          }
            .lightbox-content {
              max-width: 90%;
              max-height: 90vh;
          }
      
          .gallery_pageclose {
              top: 10px;
              right: 20px;
              font-size: 30px;
          }
      
          .gallery_pageprev, .gallery_pagenext {
              display: none; /* Hide prev and next buttons on small devices */
          }
      }
      
      @media (max-width: 480px) {
        .gallery_page {
          padding: 10px 20px;
         
      }
          .gallery_page-item {
              width: calc(100% - 10px);
              display: flex;
              justify-content: center;
              align-items: center;
          }
      
          .gallery_page-item img {
              width: auto;
              max-width: 100%;
          }
      
          .close {
              top: 10px;
              right: 20px;
              font-size: 30px;
          }
      }

      
.onlineadmissioncontainer {
  position: relative;
  width: 90%;
  border-radius: 6px;
  padding: 30px;
  margin: 0 auto;
  background-color: #fff;
  min-height: 1250px;
}

.onlineadmissioncontainer .onlineadmissionform {
  position: relative;
  min-height: 1250px;
  background-color: #fff;
  overflow: hidden;
}

.onlineadmissioncontainer .onlineadmissionform .admissionform {
  position: absolute;
  background-color: #fff;
  transition: 0.3s ease;
}

.onlineadmissioncontainer .onlineadmissionform .admissionform.second {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.onlineadmissionform.secActive .admissionform.second {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.onlineadmissionform.secActive .admissionform.first {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

.onlineadmissioncontainer .onlineadmissionform .title {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  margin: 6px 0;
  color: #333;
}

.onlineadmissioncontainer .onlineadmissionform .admissionfields {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: aliceblue;
  padding: 30px;
  position: relative; /* Added */
  margin-top: 50px;
}

.onlineadmissionform .admissionfields .admissioninput-field {
  display: flex;
  width: calc(100% / 4 - 15px);
  flex-direction: column;
  margin: 4px 0;
}

.onlineadmissionform legend {
  width: 300px;
}

.admissionlink_wrap {
  position: absolute;
  z-index: 1;
  top: -30px; /* Adjust this value to position it correctly */
  left: 15px; /* Adjust left positioning if necessary */
  overflow: hidden;
  height: 40px; /* Ribbon height */
  margin-top: 10px;
}

.admissionacc_style04 {
  display: inline-block;
  text-decoration: none;
  background: #2a2185;
  padding: .4em 4em;
  color: #fff;
  transition: all 0.2s ease-in;
  position: relative;
}

.admissionacc_style04::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -2px;
  width: 24px;
  height: 74%;
  background: #c7c7c7;
  clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0);
  transition: all 0.2s ease-in;
}

.admissionacc_style04:hover::before {
  height: 90%;
}

.admissioninput-field label {
  font-size: 14px;
  font-weight: 500;
  color: #2e2e2e;
}

.admissioninput-field input,
.admissioninput-field input[type="file"],
.admissioninput-field select {
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 0 15px;
  height: 42px;
  margin: 8px 0;
}

.admissioninput-field input:focus,
.admissioninput-field select:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}

.onlineadmissioncontainer .onlineadmissionform button,
.backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  max-width: 200px;
  width: 100%;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  margin: 25px 0;
  background-color: #2a2185;
  transition: all 0.3s linear;
  cursor: pointer;
}

.onlineadmissioncontainer .onlineadmissionform .btnText {
  font-size: 14px;
  font-weight: 400;
}

.onlineadmissionform button:hover {
  background-color: #2a2185;
}

.onlineadmissionform button i,
.onlineadmissionform .backBtn i {
  margin: 0 6px;
}

.onlineadmissionform .backBtn i {
  transform: rotate(180deg);
}

.onlineadmissionform .buttons {
  display: flex;
  align-items: center;
}

.onlineadmissionform .buttons button,
.backBtn {
  margin-right: 14px;
}

@media (max-width: 750px) {
  .onlineadmissioncontainer .onlineadmissionform {
      overflow-y: scroll;
  }

  .onlineadmissioncontainer .onlineadmissionform::-webkit-scrollbar {
      display: none;
  }
.onlineadmissionform .admissionfields .admissioninput-field {
      width: 75% !important;
}

}

@media (max-width: 550px) {
  .onlineadmissionform .admissionfields .admissioninput-field {
      width: 75% !important;
  }
}


.admissioninput-field input,
.admissioninput-field input[type="file"],
select {
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 0 15px;
  height: 42px;
  margin: 8px 0;
}

.admissioninput-field input:focus,
.admissioninput-field select:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}

.admissioninput-field select,
.admissioninput-field input[type="date"] {
  color: #707070;
}

.admissioninput-field input[type="date"]:valid {
  color: #333;
}

.onlineadmissioncontainer .onlineadmissionform button,
.backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  max-width: 200px;
  width: 100%;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  margin: 25px 0;
  background-color: #2a2185;
  transition: all 0.3s linear;
  cursor: pointer;
}

.onlineadmissioncontainer .onlineadmissionform .btnText {
  font-size: 14px;
  font-weight: 400;
}

.onlineadmissionform button:hover {
  background-color: #2a2185;
}

.onlineadmissionform button i,
.onlineadmissionform .backBtn i {
  margin: 0 6px;
}

.onlineadmissionform .backBtn i {
  transform: rotate(180deg);
}

.onlineadmissionform .buttons {
  display: flex;
  align-items: center;
}

.onlineadmissionform .buttons button,
.backBtn {
  margin-right: 14px;
}

@media (max-width: 750px) {
  .onlineadmissioncontainer .onlineadmissionform {
      overflow-y: scroll;
  }

  .onlineadmissioncontainer .onlineadmissionform::-webkit-scrollbar {
      display: none;
  }

  .onlineadmissionform .admissionfields .admissioninput-field {
      width: 75% !important;
  }
}

@media (max-width: 550px) {
  .onlineadmissionform .admissionfields .admissioninput-field {
      width: 75% !important;
  }
  .onlineadmissioncontainer {
    width: 100%;
    min-height: 1500px;
  }
  .admissionform first{
    width: 100%;
    min-height: 1500px;
  }
  .onlineadmissionform{
    min-height: 3500px !important;
  }
.admissioninput-field label {
  font-size: 15px;
  font-weight: 500;
  color: #2e2e2e;
}
}
@media (max-width: 550px) {
  .onlineadmissionform .admissionfields .admissioninput-field {
      width: 75% !important;
  }
  .onlineadmissioncontainer {
    width: 100%;
    min-height: 1500px;
  }
  .admissionform first{
    width: 100%;
    min-height: 1500px;
  }
  .onlineadmissionform{
    min-height: 3500px !important;
  }
  .admissionlink_wrap {
      position: absolute;
      z-index: 1;
      top: -30px; /* Adjust this value to position it correctly */
      left: 10px; /* Adjust left positioning if necessary */
      overflow: hidden;
      height: 40px; /* Ribbon height */
      margin-top: 10px;
  }
.admissioninput-field label {
  font-size: 15px;
  font-weight: 500;
  color: #2e2e2e;
}
  .admissionacc_style04 {
      display: inline-block;
      text-decoration: none;
      background: #2a2185;
      padding: .4em 4em;
      color: #fff;
      transition: all 0.2s ease-in;
      position: relative;
  }
  
  .admissionacc_style04::before {
      content: "";
      position: absolute;
      left: 14px;
      top: -2px;
      width: 24px;
      height: 74%;
      background: #c7c7c7;
      clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0);
      transition: all 0.2s ease-in;
  }
  
  .admissionacc_style04:hover::before {
      height: 90%;
  }
}
/* Styles for very small devices (phones, 360px and below) */
@media (max-width: 360px) {
  .onlineadmissionform .admissionfields .admissioninput-field {
      width: 75% !important;
  }
  .admissionlink_wrap {
      position: absolute;
      z-index: 1;
      top: -20px; /* Adjust this value to position it correctly */
      left: 15px; /* Adjust left positioning if necessary */
      overflow: hidden;
      height: 40px; /* Ribbon height */
      margin-top: 10px;
  }
  
  .admissionacc_style04 {
      display: inline-block;
      text-decoration: none;
      background: #2a2185;
      padding: .4em 4em;
      color: #fff;
      transition: all 0.2s ease-in;
      position: relative;
      font-size: 0.8em; /* Adjust font size if necessary */
  }
  
  .admissionacc_style04::before {
      content: "";
      position: absolute;
      left: 14px;
      top: -2px;
      width: 24px;
      height: 74%;
      background: #c7c7c7;
      clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0);
      transition: all 0.2s ease-in;
  }
  
  .admissionacc_style04:hover::before {
      height: 90%;
  }
}
/* Styles for very small devices (phones, 360px and below) */
@media (max-width: 320px) {
  .onlineadmissionform .fields .admissioninput-field {
      width: 75%;
  }
  .admissionlink_wrap {
      position: absolute;
      z-index: 1;
      top: -20px; /* Adjust this value to position it correctly */
      left: 15px; /* Adjust left positioning if necessary */
      overflow: hidden;
      height: 40px; /* Ribbon height */
      margin-top: 10px;
  }
  
  .admissionacc_style04 {
      display: inline-block;
      text-decoration: none;
      background: #2a2185;
      padding: .4em 4em;
      color: #fff;
      transition: all 0.2s ease-in;
      position: relative;
      font-size: 0.8em; /* Adjust font size if necessary */
  }
  
  .admissionacc_style04::before {
      content: "";
      position: absolute;
      left: 14px;
      top: -2px;
      width: 24px;
      height: 74%;
      background: #c7c7c7;
      clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0);
      transition: all 0.2s ease-in;
  }
  
  .admissionacc_style04:hover::before {
      height: 90%;
  }
}
.whatsapp-icon {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon a {
  display: block;
}

.apply-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  background-color: #2A2185;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-right: 20px;
}

.apply-button:hover {
  background-color: #4639db;
}



.frachisee-container {
  max-width: 1250px;
  margin:20px auto;
  background: #fff;
  padding: 20px;

}
.form-part {
  display: none; /* Hide all form parts initially */
}
.form-part.active {
  display: block; /* Display active form part */
}
.form-row {
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
}

.form-row > div {
flex: 1;
margin-right: 15px;
}

.form-row > div:last-child {
margin-right: 0;
}

.form-row label {
display: block;
font-size: 16px;
font-weight: 600;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%; /* Full width for inputs */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box; /* Ensure padding and border are included in width */
}
.form-row select
{
  width: 100%; /* Full width for inputs */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box; /* Ensure padding and border are included in width */
  margin:0 !important;
}
.form-row .office-space,
.form-row .checkbox-label {
  display: flex;
}
.form-row .checkbox-label label {
  margin: 0;
}
.form-row .checkbox-label input[type="checkbox"] {
  margin-right: 15px;
}
.form-row .submit-btn {
  margin-top: 20px;
  text-align: right;
}
.form-row .submit-btn button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.form-row .submit-btn button:hover {
  background-color: #45a049;
}
@media (max-width: 768px) {
  .form-row > div {
      flex: 1 1 100%; /* Full width for all columns on small screens */
      margin-right: 0;
  }
  .form-row > div:last-child {
      margin-right: 0;
  }
  .form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%; /* Full width for inputs */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box; /* Ensure padding and border are included in width */
}
  .apply-button {
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #2A2185;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: 20px;
  }
  
  .apply-button:hover {
    background-color: #4639db;
  }
}

.faq-main-wrapper {
  width: 89%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}


.faq-text-section {
  flex: 1 1 50%;
  padding: 10px;

}

.faq-text-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #2A2185;
}

.faq-text-section h4{
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
  display: block;
  padding-bottom: 5px;
  color: orangered;
}
.faq-text-section h2::after {
  content: '';
  display: block;
  width: 20%;
  height: 2px; /* Adjust thickness */
  background-color: #dcc371; /* Adjust color */
  position: absolute;
  bottom: 0;
  left: 0;
}
.faq-text-section h2{
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
  display: block;
  padding-bottom: 5px;
}
.faq-text-section p {
  margin-bottom: 10px;
  text-align: justify;
  font-size: 15px;
}

.faq-text-section ul {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.faq-text-section ul {
  padding-left: 20px;
}

.faq-text-section ul li {
  margin-bottom: 10px;
}

.faq-text-section ul li::before {
  content: "•";
  color: #007bff;
  padding-right: 10px;
}

.faq-text-section ul li:last-child {
  margin-bottom: 0;
}

/* Styling for Links */
.faq-text-section ul li a {
  color: #007bff;
  text-decoration: none;
}

.faq-text-section ul li a:hover {
  text-decoration: underline;
}
/* Subscribe Section */
.subscribe-section {
  margin-top: 20px; /* Add some space above the subscribe button */
  text-align: center; /* Center the form */
}

/* Style the subscribe input */
.subscribe-input {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
}

/* Style the subscribe button */
.subscribe-btn {
  width: 100%;
  max-width: 100px;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.subscribe-btn:hover {
  background-color: #0056b3;
}

/* Make the form responsive */
@media (max-width: 768px) {
  .subscribe-section {
      width: 100%;
      margin: 20px auto;    
  }
  
/* Style the subscribe input */
.subscribe-input {
  width: 100%;
  max-width: 200px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
}

/* Style the subscribe button */
.subscribe-btn {
  width: 100%;
  max-width: 100px;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
}
}
@media (max-width: 992px) {
  .subscribe-section {
      width: 100%;
      margin: 20px auto;    
  }
  
/* Style the subscribe input */
.subscribe-input {
  width: 60%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
}

/* Style the subscribe button */
.subscribe-btn {
  width: 100%;
  max-width: 90px;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: inline-block;
}
}