@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,500;1,600&family=Roboto:wght@400;500;700&display=swap');

/* Fonts */
:root {
  --font-default: 'Inter';
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Work Sans', sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #004aad;
  --color-secondary: #002659;
}

:root {
  --color-orange-dark: #d65600;
  --color-orange-light: #ff9145;
  --color-brown-dark: #664732;
  --color-orange-white: #fff5ee;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/* End  */

body {
  font-family: 'Inter';
  background-color: #fff;
}

a {
  color: #004aad;
  text-decoration: none;
}

a:hover {
  color: #e43700;
  text-decoration: none;
}

.title {
  color: var(--color-primary);
  font-weight: 700;
  align-items: left;
  font-family: var(--font-default);
  font-size: 36px;
  margin-bottom: 24px;
}

p {
  font-size: 16px;
  font-family: var(--font-primary);
  line-height: 150%;
}

/* color: #5c9f24; */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter';
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #004aad;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #004aad;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #000000;
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 55px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: capitalize;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar li:hover > a {
  color: #bcbcbc;
}

.navbar .nav-link.active,
.navbar .dropdown.active {
  background-color: #7eb0f31a;
  padding: 5px 8px;
  border-radius: 4px;
  color: #004aad;
  padding: 10px 20px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #ffffff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  /* background: #004aad; */
}

.navbar .getstarted:hover:before,
.navbar li:hover > .getstarted:before {
  visibility: hidden;
}

.navbar .dropdown {
  color: #ffffff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 20px;
  border-bottom: 1px solid #dfdfdf;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
  /* border-bottom: 1px solId red ; */
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: #f1f1f1;
  color: var(--color-primary);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #004aad;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #004aad;
}

.navbar-mobile > ul > li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #004aad;
  padding-left: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #004aad;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  /* background-color: rgba(17, 17, 17, 0.8); */
  overflow: hidden;
  padding: 0;
  margin: -55px 0 0 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: left;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin-left: 35px;
  margin-bottom: 15rem;
}

.carousel-content {
  text-align: left;
  margin-left: 5px;
}

.carousel-content h3 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0;
  color: #fff;
  font-size: 16px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #004aad;
}

#hero .btn-get-started {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid #004aad;
  background: #004aad;
}

#hero .btn-get-started:hover {
  background: #6ab82a;
  border-color: #6ab82a;
  color: #fff;
}

.top-text {
  padding: 0;
  text-align: left;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/* section {
  padding: 60px 0;
} */

/* .section-bg {
  background-color: #f1f1f1;
} */

/* .section-title {
  text-align: center;
  padding-bottom: 30px;
} */

/* .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #004aad;
} */

/* .section-title p {
  margin-bottom: 0;
} */

/*--------------------------------------------------------------
# Aboutx
--------------------------------------------------------------*/

.aboutx {
  margin: 32px 124px;
}

.aboutx img {
  width: 543px;
  height: 359px;
  margin-left: 32px;
  margin-top: 6px;
  border-radius: 8px;
}

.aboutx ul li {
  list-style: none;
  line-height: 32px;
}

.bi-check-double-line::before {
  content: '\f26b';
  margin-right: 10px;
  color: var(--color-primary);
}

.counts {
  margin: 32px 124px;
}

.counts .count-box {
  padding: 10px;
  padding-top: 40px;
  width: 80%;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.counts .count-box i {
  font-size: 44px;
  color: var(--color-secondary);
  align-items: center;
}

.counts .count-box h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}

.counts .count-box p {
  padding: 15px 0 0 0;
  font-size: 14px;
  color: #505050;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  margin: 32px 124px;
}
.about .content {
  padding: 30px 0;
  position: relative;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.about .content p {
  margin-bottom: 0;
}

.content .icon-box {
  margin: 25px 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about .content .icon-box i {
  font-size: 48px;
  color: #004aad;
  margin-bottom: 32px;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  /* margin-left: 60px; */
}

.about .image {
  background: url('../img/about_1.jpg') center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }

  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
/* .counts {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin: 20px auto;
}

.counts .count-box {
  padding: 30px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.counts .count-box i {
  font-size: 44px;
  color: #004aad;
  line-height: 0;
  align-items: center;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  font-size: 14px;
  color: #505050;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #777777;
} */

/* .programs {
  margin: 32px 124px;
}

.programs .post-item {
  border-radius: 16px;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.07);
  margin: 20px 20px;
  padding: 32px;
}

.programs .post-item img {
  margin-bottom: 32px;
}

.programs .post-item h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.programs .post-item a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  padding-right: 20px;
}

.programs .post-item i {
  margin-left: 5px;
}

.programs .post-item a:hover i {
  margin-left: 12px;
} */

.upcoming {
  padding: 32px 0;
  background-color: #586f90;
  background-size: cover;
  padding-bottom: 70px;
}

#upcoming .container {
  margin: 0 auto;
  padding: 0 124px; /* This will create the same spacing you initially wanted */
}

.upcoming .title {
  color: white;
  text-align: center;
  margin-bottom: 32px;
}

.upcoming .post-item {
  position: relative;
    display: inline-block;
    justify-content: center;
}

.upcoming img{
  display: block;
}

.upcoming .program-name {
  position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-radius: 8px;
    width: 158px;
    height: 79px;
    top: 85%;
    margin-left: 8px
}

.upcoming .post-item h2 {
  margin-top: 24px;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.upcoming .post-item a {
  padding-top: 4px;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-primary);
  padding-right: 20px;
}

.upcoming .program-date {
  background: var(--color-primary);
    border: 2px solid #ffffff;
    width: 111px;
    height: 32px;
    border-radius: 4px;
    position: absolute;
    bottom: 10%;
    left: 53%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.upcoming .program-date h2{
font-size: 12px;
font-weight: 400;
color: #ffffff;
margin-top: 10px;
}

.programs .post-item i {
  margin-left: 5px;
}

.programs .post-item a:hover i {
  margin-left: 12px;
}

.coreteam {
  padding: 32px 0;
}

#coreteam .container {
  margin: 0 auto;
  padding: 0 124px; /* This will create the same spacing you initially wanted */
}

.coreteam .title {
  text-align: center;
  margin-bottom: 32px;
}

.coreteam .post-item {
  position: relative;
    display: inline-block;
    justify-content: center;
    margin-bottom: 50px;
}

.coreteam img{
  display: block;
}

.coreteam .team-name {
  position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-radius: 8px;
    width: 158px;
    height: 79px;
    top: 85%;
    margin-left: 8px
}

.coreteam .post-item h2 {
  margin-top: 24px;
  /* margin-left: 8px; */
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
}

.coreteam .post-item p {
  /* padding-top: 4px; */
  /* margin-left: 8px; */
  font-size: 12px;
  /* font-weight: 500; */
  color: var(--color-primary);
  /* padding-right: 20px; */
  text-align: center;
}

.coreteam .team-link {
  background: var(--color-primary);
    border: 2px solid #ffffff;
    width: 84px;
    height: 32px;
    border-radius: 4px;
    position: absolute;
    bottom: 10%;
    left: 53%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.coreteam .team-link span {
  display: flex;
  align-items: center;
}

.coreteam .team-link a{
  color: #ffffff;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.programs .post-item i {
  margin-left: 5px;
}

.programs .post-item a:hover i {
  margin-left: 12px;
}

.faq {
  margin: 32px 124px;
  padding-bottom: 20px;
}
/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
/* .recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
  /* color: #fed600; */
/* } */

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}
*/

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 1px 30px 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  /* padding: 60px; */
  padding: 40px 20px 10px 30px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

/* manually added later, from */
.blog .blog-details .content blockquote ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.blog .blog-details .content ul li {
  padding: 0 0 10px 35px;
  position: relative;
}

.blog .blog-details .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: hwb(40 32% 0%);
}

/* .bi-check2-circle::before
{
  content: "\f26b";
} */

/* Upto */

.blog .blog-details .content blockquote:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .content .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.blog .blog-details .content .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.blog .blog-details .content .watch-video:hover a {
  color: var(--color-primary);
}

.program-title-single .title-single-box .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.program-title-single .title-single-box .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0 0 0.5rem;
  margin: 0;
}

.program-title-single .title-single-box .meta-top ul li + li {
  padding-left: 20px;
}

.program-title-single .title-single-box .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.program-title-single .title-single-box .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.program-title-single .title-single-box .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ',';
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/* Pagination */
.custom-pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  /* font-family: var(--font-secondary); */
  margin: 5px;
  transition: 0.3s all ease;
}

.custom-pagination a.active {
  /* background: var(--color-black); */
  /* color: var(--color-white); */
  background: orange;
  color: white;
}

.custom-pagination a.active:hover {
  /* background: rgba(var(--color-black-rgb), 0.9); */
  background: orange;
  color: white;
}

.custom-pagination a:hover {
  /* background: rgba(var(--color-black-rgb), 0.1); */
  background: orange;
  color: white;
}

.custom-pagination a.prev,
.custom-pagination a.next {
  width: auto !important;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
}

.custom-pagination a.prev:hover,
.custom-pagination a.next:hover {
  /* background: rgba(var(--color-black-rgb), 0.1); */
  background: orange;
  color: white;
}

/*------/ Program Title Single (Program Title Section for single page details)/------*/
.program-title-single {
  padding: 0.3rem 0 0;
}

@media (max-width: 767px) {
  .program-title-single {
    padding-top: 0.3rem;
  }
}

.program-title-single .title-single-box {
  padding: 0 0 1rem 2rem;
}

.program-title-single .title-single-box {
  border-left: 4px solid var(--color-primary);
}

.program-title-single .title-single-box .title-single {
  font-weight: 600;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .program-title-single .title-single-box .title-single {
    font-size: 2.1rem;
  }
}

@media (min-width: 992px) {
  .program-title-single .title-single-box .title-single {
    font-size: 2.5rem;
  }
}

.program-title-single .breadcrumb-box {
  padding: 1rem 0 0 0.5rem;
}

.program-title-single .breadcrumb {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}

.program-featuredimg-single {
  padding: 0;
}

.program-featuredimg-single .featuredimg-box {
  padding: 0;
}
/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 1rem 0;
  margin: 0;
  color: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
}

.blog .sidebar .btn-get-started {
  background: #004aad;
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  /* border: 3px solid; */
}

.hero .sidebar .btn-get-started:hover {
  background: var(--color-primary);
}

.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type='text'] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type='text']:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #004aad;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #004aad;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #004aad;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #8ed851;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #2a2a2a;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #004aad;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #004aad;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}

.portfolio .portfolio-wrap::before {
  content: '';
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8ed851;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #004aad;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #004aad;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/* .team {
  background: #fff;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: #ffa5008f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  color: white;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info h4 {
  font-weight: 400;
  margin: 15px 0 5px 0;
  font-size: 18px;
  text-align: center;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #7083d2;
  text-align: center;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
} */

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}

.pricing .box h4 {
  font-size: 42px;
  color: #004aad;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #004aad;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid #004aad;
  color: #004aad;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #004aad;
  color: #fff;
}

.pricing .recommended {
  background: #004aad;
}

.pricing .recommended h3,
.pricing .recommended h4,
.pricing .recommended h4 span,
.pricing .recommended ul,
.pricing .recommended ul .na {
  color: #fff;
}

.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #004aad;
}

/*Event Timeline 2*/
.circle {
  padding: 13px 20px;
  border-radius: 50%;
  background-color: #004aad;
  color: #fff;
  max-height: 50px;
  z-index: 2;
}

.how-it-works.row .col-2 {
  align-self: stretch;
}
.how-it-works.row .col-2::after {
  content: '';
  position: absolute;
  /*border-left: 3px solid #ED8D8D;*/
  z-index: 1;
}
.how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}
.how-it-works.row .col-2.top::after {
  height: 50%;
  left: 50%;
  top: 0;
}

.timeline div {
  padding: 0;
  height: 40px;
}
.timeline hr {
  border-top: 3px solid #ed8d8d;
  margin: 0;
  top: 17px;
  position: relative;
}
.timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
  border: 3px solid #ed8d8d;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -50%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -50%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}

/*Event Timeline*/
.timeline-with-icons {
  border-left: 1px solid hsl(0, 0%, 90%);
  position: relative;
  list-style: none;
}

.timeline-with-icons .timeline-item {
  position: relative;
}

.timeline-with-icons .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline-with-icons .timeline-icon {
  position: absolute;
  left: -48px;
  background-color: hsl(217, 88.2%, 90%);
  color: hsl(217, 88.8%, 35.1%);
  border-radius: 50%;
  height: 31px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #e43700;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #004aad;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*-------------------------------------------------------------
# Sponsors section
---------------------------------------------------------------*/
/*for Demo Only*/
.demo-row {
  background-color: #333;
  padding: 50px 0;
}

/*Implement*/
.sponsor-feature {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

#id-sponsors .carousel {
  margin-bottom: 20px;
}
#id-sponsors .item {
  padding-bottom: 20px;
}
#id-sponsors .carousel-indicators {
  bottom: -25px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #004aad;
}

.contact .contact-info address,
.contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

.contact .contact-info a {
  color: #000;
}

.contact .contact-info a:hover {
  color: #004aad;
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
  margin-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #004aad;
}

.contact .php-email-form button[type='submit'] {
  background: #004aad;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type='submit']:hover {
  background: #6ab82a;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  .contact .contact-address,
  .contact .contact-phone,
  .contact .contact-email {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f6;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: '/';
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f0f0f0;
  color: #fff;
  font-size: 14px;
  margin-top: 64px;
}

#footer .footer-top {
  background: #002659;
  /* border-bottom: 1px solid #2f2f2f; */
  padding: 60px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-default);
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: #2a2a2a; */
  color: #ffffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #004aad;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type='email'] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #004aad;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type='submit']:hover {
  background: #002659;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* old about */
.post-entry-1 {
  margin-bottom: 30px;
}

.post-entry-1 img {
  margin-bottom: 30px;
}

.post-entry-1 h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  font-weight: 500;
}

.post-entry-1 h2 a {
  color: var(--color-black);
}

.post-entry-1.lg h2 {
  font-size: 40px;
  line-height: 1;
}

.post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-default);
  color: rgba(var(--color-black-rgb), 0.4);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .custom-border {
    border: none !important;
  }
}

.author .photo {
  margin-right: 10px;
}

.author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--font-default);
}

.trending {
  border: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.trending > h3 {
  color: var(--color-black);
  padding: 20px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.trending .trending-post {
  padding: 0;
  margin: 0;
}

.trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.trending .trending-post li a .number {
  position: absolute;
  z-index: -1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  color: rgba(var(--color-black-rgb), 0.05);
}

.trending .trending-post li a h3 {
  font-size: 18px;
  color: rgba(var(--color-black-rgb), 0.9);
}

.trending .trending-post li a .author {
  color: rgba(var(--color-black-rgb), 0.7);
  font-weight: 500;
}

.trending .trending-post li a:hover h3 {
  color: rgba(var(--color-black-rgb), 1);
}

.trending .trending-post li:last-child a {
  border-bottom: none;
}

.post-entry-2 {
  margin-bottom: 30px;
}

.post-entry-2 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-default);
  color: rgba(var(--color-black-rgb), 0.4);
  margin-bottom: 10px;
}

.post-entry-2 .author {
  color: rgba(var(--color-black-rgb), 0.7);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.post-entry-2 .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .post-entry-2 .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.post-entry-2.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .post-entry-2.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.post-entry-2.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .post-entry-2.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

#program-info {
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #fff;
  margin-top: 5rem;
  width: 100%;
  height: 80;
}

#program-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adds a dark overlay to the background image */
}

#program-info .container {
  position: relative;
  z-index: 1;
  padding: 24px 24px;
}

#program-info h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

#program-info h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-brown-dark);
  line-height: 32px;
}

#program-info h2 i {
  margin-right: 10px; /* Add space between icon and text */
}

#program-info p {
  font-size: 18px;
  margin-bottom: 30px;
}

#program-info .btn {
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 5px;
}

/* Add margin-bottom to the h1 */
#program-info h1 {
  margin-bottom: 20px;
}

/* Style the background and padding for the Date/Time container */
.date-time-container {
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  width: 23rem;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); Optional: Add a shadow effect */
}

/* Unique styling for program title */
#program-title h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-orange-white);
  margin: 32px 0;
}

/* Unique styling for program description */
#program-description p {
  font-size: 18px;
  color: #f3f3f3;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Unique styling for apply now button */
#apply-now-button .btn {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 4px;
  border-color: var(--color-orange-white);
  color: var(--color-orange-white);
  font-weight: 600;
}

#apply-now-button .btn:hover {
  font-weight: bold;
  background-color: #c3a212;
  border-color: #ffffff;
}

/* Progam.index Page CSS Ends */

/* research training */
.rt-title {
  color: var(--color-orange-dark);
  font-weight: 700;
  align-items: left;
  font-family: var(--font-default);
  font-size: 36px;
  margin-bottom: 24px;
}

/* Info-Video Section CSS Starts */
#info-video {
  margin: 64px 124px 32px 124px;
}

#info-video .info-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
}

#info-video .info-content ul {
  list-style: none;
  padding: 0;
}

#info-video .info-content ul li {
  font-size: 18px;
  color: #666;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

/* #info-video .info-content ul li::before {
  content: '\f058';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: #5cb85c;
  font-size: 14px;
} */

#info-video .video-container iframe {
  max-width: 100%;
  width: 40rem;
  height: 25rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#info-video .video-container {
  text-align: center;
  position: relative;
  padding-bottom: 70.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

#info-video .video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.orange-icon{
  color: #ff9145;
}
/* Info-Video Section CSS Ends */

.team {
  margin: 32px 124px;
}

.team .picture {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.team .picture .name-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.team .picture img {
  border-radius: 50%;
  margin-bottom: 16px;
  width: 150px;
  height: 150px;
}

.team .picture p {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-orange-dark);
}

.objectives {
  margin: 32px 124px;
}
.objectives .content {
  padding: 30px 0;
  position: relative;
}

.objectives .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.objectives .content p {
  margin-bottom: 0;
}

.content .icon-box {
  margin: 25px 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.objectives .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.objectives .content .icon-box i {
  font-size: 48px;
  color: var(--color-orange-dark);
  margin-bottom: 32px;
}

.objectives .content .icon-box p {
  font-size: 15px;
  color: #848484;
  /* margin-left: 60px; */
}

.objectives .image {
  background: url('../img/about_1.jpg') center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .objectives .image {
    text-align: center;
  }

  .objectives .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .objectives .image img {
    max-width: 100%;
  }
}

.syllabus {
  margin: 32px 124px 64px 124px;
}


.card {
  border-radius: 0;
  width: 50rem;
  padding: 0;
}

.card-header {
  background-color: var(--color-orange-light);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--color-orange-white);
}

.card-header:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin: 0 -1px;
}

.list-group-item {
  padding: 16px 20px;
  background-color: var(--color-orange-white);
}

.week {
  font-size: 16px;
  font-weight: 600;
  color: #8f3a00;
}

.syllabus-topic {
  font-size: 20px;
  font-weight: 600;
  color: #3a3a3a;
}

.list-group-item p {
  margin: 0;
  font-family: var(--font-default);
  color: var(--color-brown-dark);
}

#rt-footer {
  background: #f0f0f0;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  margin-top: 64px;
}

#rt-footer .rt-footer-top {
  background: #f0f0f0;
  /* border-bottom: 1px solid #2f2f2f; */
  padding: 60px 0 30px 0;
}

#rt-footer .rt-footer-top .rt-footer-info {
  margin-bottom: 30px;
}

#rt-footer .rt-footer-top .rt-footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#rt-footer .rt-footer-top .rt-footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: #3a3a3a;
  color: #fff;
}

#rt-footer .rt-footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: #2a2a2a; */
  color: #3a3a3a;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#rt-footer .rt-footer-top .social-links a:hover {
  background: var(--color-orange-dark);
  color: #fff;
  text-decoration: none;
}

#rt-footer .rt-footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#rt-footer .rt-footer-top .rt-footer-links {
  margin-bottom: 30px;
}

#rt-footer .rt-footer-top .rt-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#rt-footer .rt-footer-top .rt-footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#rt-footer .rt-footer-top .rt-footer-links ul li:first-child {
  padding-top: 0;
}

#rt-footer .rt-footer-top .rt-footer-links ul a {
  color: #3a3a3a;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#rt-footer .rt-footer-top .rt-footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#rt-footer .rt-footer-top .rt-footer-newsletter form input[type='email'] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#rt-footer .rt-footer-top .rt-footer-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-orange-dark);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#rt-footer
  .rt-footer-top
  .rt-footer-newsletter
  form
  input[type='submit']:hover {
  background: #8f3a00;
}

#rt-footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#rt-footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#rt-footer .rt-footer-links h4 {
  color: var(--color-orange-dark);
}

#rt-footer .rt-footer-newsletter h4 {
  color: var(--color-orange-dark);
}

#rt-footer .rt-footer-newsletter input {
  color: var(--color-orange-dark);
}

.trainers {
  margin: 32px 124px;
}

.trainers .picture {
  border: 1px solid #FF9145;
  width: 260px;
  height: 368px;
  padding: 24px;
  border-radius: 24px;
  justify-content: center;
  position: relative;
  margin-bottom: 32px;

}

.trainers .picture img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  align-items: center;
  margin-left: 5px
}

.trainers .trainer-name h2{
  font-size: 20px;
  font-weight: 600;
  color: var(--color-orange-dark);
  text-align: center;
  margin-top: 16px;
}


.trainers .trainer-name p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brown-dark)
}

.trainers .trainer-link {
  position: absolute;
  bottom: 124px;
  right: 7px;
  display: flex;
  align-items: center;
  z-index: 10;
  background: white;
  width: 49px;
  height: 49px;
  border-radius: 50%;
}

.trainers .trainer-link a {
  margin-left: 5px;
  color: var(--color-orange-dark);
  font-size: 20px;
}

.trainers .trainer-link a  i{
  margin-left: 5px;
  justify-content: center;
}

.testimonial {
  margin: 32px 124px;
}

.carousel-container {
  display: flex;
  /* justify-content: center;
  align-items: center; */
  position: relative;
  width: 100%;
}

.carousel-inner {
  /* display: flex; */
  justify-content: right;
  align-items: right;
}

.carousel-item {
  width: 500px;
  height: 500px;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; /* Adjust the size of the control buttons if necessary */
  background-color: blue;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.contain {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial .image {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 16px auto;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slide p {
  text-align: center;
  padding: 0 100px;
  font-size: 14px;
  font-weight: 400;
}


/* Research Training 2025 CSS Starts */
/* Color Palette from Image Descriptions */
:root {
  --primary-orange: #D65600;      /* Dark orange-brown for titles */
  --vibrant-orange: #FF9145;      /* Buttons, highlights */
  --header-bg: #F4A261;           /* Header background */
  --button-bg: #E76F51;           /* Button background */
  --light-gray: #D3D3D3;          /* Section backgrounds */
  --medium-gray: #858585;         /* Secondary text */
  --light-cream: #FFF5EE;         /* Background or light areas */
  --dark-gray: #3A3A3A;           /* Deep gray-black */
  --dark-brown: #664732;          /* Footer text */
  --deep-reddish: #8F3A00;        /* Accents */
  --text-black: #333333;          /* Body text */
  --text-white: #FFFFFF;          /* Light text */
}

/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-black);
  background-color: var(--light-cream);
}

/* Header Section */
.header-section {
  background-color: var(--header-bg);
  color: var(--text-white);
  text-align: center;
  padding: 50px 20px;
  position: relative;
}

.header-section h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.details-list li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-list img {
  width: 20px;
  margin-right: 10px;
}

.cta-buttons {
  margin-top: 20px;
}

.apply-btn, .enquiry-btn {
  background-color: var(--button-bg);
  color: var(--text-white);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin: 0 10px;
  cursor: pointer;
}

/* Program Overview and Video Section */
.overview-video-section {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--light-gray);
  padding: 20px;
}

.program-overview, .video-section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.program-overview h2, .video-section h2 {
  color: var(--primary-orange);
  font-size: 24px;
  margin-bottom: 15px;
}

.video-section iframe {
  width: 100%;
  border: none;
}

/* Our Objectives Section */
.objectives-section {
  padding: 40px 20px;
  text-align: center;
}

.objectives-section h2 {
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.objectives-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background-color: #FFFFFF;
  width: 30%;
  min-width: 250px;
  padding: 20px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 50px;
  margin-bottom: 15px;
}

/* Syllabus Section */
.syllabus-section {
  padding: 40px 20px;
  text-align: center;
}

.syllabus-section h2 {
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.syllabus-flowchart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.milestone {
  background-color: var(--light-cream);
  border: 2px solid var(--vibrant-orange);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  padding: 20px;
  text-align: left;
}

.milestone h3 {
  color: var(--deep-reddish);
  font-size: 18px;
}

.milestone ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 14px;
}

.download-btn {
  background-color: var(--vibrant-orange);
  color: var(--text-white);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}

/* Trainers Section */
.trainers-section {
  padding: 40px 20px;
  text-align: center;
}

.trainers-section h2 {
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trainer-card {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.trainer-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--vibrant-orange);
}

/* Organizing Team Section */
.organizing-team-section {
  padding: 40px 20px;
  text-align: center;
}

.organizing-team-section h2 {
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--vibrant-orange);
}

/* FAQs Section */
.faqs-section {
  padding: 40px 20px;
  text-align: center;
}

.faqs-section h2 {
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.faqs-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item h3 {
  color: var(--deep-reddish);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--light-gray);
  margin: 5px 0;
  border-radius: 5px;
}

.toggle-icon {
  font-size: 20px;
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #F0F0F0;
  border-radius: 5px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 40px 20px;
  text-align: center;
}

.testimonials-section h2 {
  color: var(--primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  width: 45%;
  min-width: 300px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--vibrant-orange);
}

.testimonial-card .date {
  color: var(--medium-gray);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overview-video-section {
      flex-direction: column;
    }
  .objectives-cards .card {
      width: 100%;
  }
  .trainers-grid, .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  .testimonials-cards .testimonial-card {
    width: 100%;
  }
}
/* Research Training 2025 CSS Ends */