.simple-vertical-icons {
    display: flex;
    gap: 10px;
}

.simple-vertical-icons a {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

/* Colors */
.simple-vertical-icons a.facebook { background: #1877F2; }
.simple-vertical-icons a.twitter { background: #1DA1F2; }
.simple-vertical-icons a.linkedin { background: #0077B5; }
.simple-vertical-icons a.instagram {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.simple-vertical-icons a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}
.achievers-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.achievers-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.achieversSwiper {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.achiever-card {
  text-align: center;
  width: 220px;
  margin: 0 auto;
}

.profile-img {
  width: 160px !important;
  height: 160px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eaeaea;
  margin-bottom: 1rem;
}

.name {
  font-weight: 700;
  font-size: 1.3rem;
  color: #111;
}

.achievement {
  color: #0077cc;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
}
.achieversSwiper .swiper-pagination {
  position: relative;
  margin-top: 25px;   /* adjust as needed (e.g., 20–40px) */
}

/* Swiper UI styling */
.swiper-pagination-bullet { background: #0077cc; opacity: .4; }
.swiper-pagination-bullet-active { opacity: 1; }
.swiper-button-prev, .swiper-button-next { color: #0077cc; }

@media (max-width: 768px) {
  .profile-img { width: 120px !important; height: 120px !important; }
}

.testimonials-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.testimonialSwiper {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* Card layout */
.testimonial-card {
  display: flex;
  justify-content: center;
}

.testimonial-inner {
  background: #eaf3ff;
  border-radius: 16px;
  padding: 25px 25px 40px;
  width: 320px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.student-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testimonial-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.designation {
  color: #0077cc;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.message {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}

/* Pagination dots styling */
.testimonialSwiper .swiper-pagination {
  position: relative;
  margin-top: 25px;
}
.testimonialSwiper .swiper-pagination-bullet {
  background: #0077cc;
  opacity: .4;
}
.testimonialSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .testimonial-inner { width: 280px; }
}
@media (max-width: 768px) {
  .testimonial-inner { width: 85%; }
}
.results-section {
  background: #eaf3ff;
  text-align: center;
  padding: 70px 20px;
}
.results-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.results-section .subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.recent-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}

.resultsSwiper {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding-bottom: 45px;
}

.result-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.12);
}
.result-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ddd;
  margin-bottom: 10px;
}
.result-card h4 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.result-card p {
  color: #0077cc;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}

.resultsSwiper .swiper-pagination {
  position: relative;
  margin-top: 25px;
}
.resultsSwiper .swiper-pagination-bullet {
  background: #0077cc;
  opacity: .4;
}
.resultsSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.more-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0077cc;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background .25s;
}
.more-btn:hover { background: #005fa3; }

@media (max-width: 1024px) {
  .result-card img { width: 120px; height: 120px; }
}
.method-section {
  background: #fff;
  padding: 60px 20px;
}

.method-row {
  display: flex !important; /* force flexbox even if theme overrides */
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 80px;
  flex-wrap: nowrap !important;
}

.method-row.reverse {
  flex-direction: row-reverse !important; /* keep image left */
}

.method-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.method-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 15px;
}
.method-text h2 span {
  color: #0077cc;
}

.method-box {
  background: #eaf3ff;
  border-radius: 16px;
  padding: 25px;
}

.method-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #0077cc;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.read-more-btn:hover {
  background: #005fa3;
}

.method-image {
  flex: 1 1 50%;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.method-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .method-row,
  .method-row.reverse {
    flex-direction: column !important;
  }
  .method-text,
  .method-image {
    flex: 1 1 100%;
    text-align: center;
  }
  .method-box {
    text-align: left;
  }
}
.videos-section {
  background: #1d91cf;
  color: #fff;
  text-align: center;
  padding: 60px 20px 80px;
}

.videos-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.videos-section h2 span {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.videos-section .subtitle {
  max-width: 900px;
  margin: 0 auto 45px;
  font-size: 1rem;
  color: #eaf7ff;
  line-height: 1.6;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.video-card:hover {
  transform: translateY(-5px);
}

.video-card iframe {
  width: 100%;
  border: none;
  border-radius: 20px 20px 0 0;
}

.video-title {
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 10px;
  border-radius: 0 0 20px 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.btn-video {
  background: #fff;
  color: #1d91cf;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 25px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-video:hover {
  background: #0b6fa7;
  color: #fff;
}

/* Responsive layout */
@media (max-width: 992px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.widget-blog .post-item-wrapper .post-item__image .img-fluid-eq__dummy {
    margin-top: 67%;
    display: none;
}

.notice-widget {
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  margin: 20px auto;
}

/* Header */
.notice-header {
  background: #204e3b;
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  font-size: 15px;
}

/* Body area for scrolling */
.notice-body {
  height: 150px;
  overflow: hidden;
  position: relative;
}

/* List and scroll animation */
.notice-list {
  position: absolute;
  width: 100%;
  animation: moveUp 15s linear infinite;
}

/* Each item */
.notice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px 10px;
}

.notice-item a {
  color: #204e3b;
  font-size: 14px;
  text-decoration: none;
}

.notice-item a:hover {
  text-decoration: underline;
}

/* Download button */
.notice-item button {
  background: #204e3b;
  border: none;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  padding: 5px 8px;
  cursor: pointer;
}

.notice-item button:hover {
  background: #1a3b2e;
}

/* Smooth scroll keyframes */
@keyframes moveUp {
  0% { top: 0; }
  100% { top: -100%; }
}

/* Pause animation on hover */
.notice-body:hover .notice-list {
  animation-play-state: paused;
}
@media (max-width: 480px) {
  .notice-widget {
    width: 390px;
    max-width: 100%;
  }
}