*{
    margin: 0;
    padding:0;
}
 .video-strip-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #919191;
}
.whatsapp-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366;   /* WhatsApp green */
    color: #fff;
    width: 35px;                 /* fixed width */
    height: 35px;                /* fixed height */
    border-radius: 50%;          /* perfect circle */
    z-index: 9999;
    box-shadow: 0 8px 16px #ff7600; /* drop shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatPulse 2s infinite;      /* pulse animation */
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 38px;  /* bigger icon inside */
    line-height: 1;
}

.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.1);
   box-shadow: 0 8px 16px #ff7600;
    background-color: #20b358;
}

/* Pulse Animation */
@keyframes floatPulse {
    0%   { transform: translateY(-50%) scale(1); }
    50%  { transform: translateY(-50%) scale(1.08); }
    100% { transform: translateY(-50%) scale(1); }
}
.video-strip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.play-btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-icon-circle {
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 14px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-info {
  border-top: 1px solid #eee;
}

  .input-with-icon {
  padding-right: 40px; /* space for the icon */
  height: 60px;        /* optional: consistent height */
}

.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  pointer-events: none;
}
/* Mobile view height */

.course-card {
  border: 2px solid #1062fe;
  border-radius: 16px;
  background: #fff;
 
}
/* Card Image Styling */
.event-card .card-img-top {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 0;
  transition: transform 0.3s ease;
}

.event-card .card-img-top:hover {
  transform: scale(1.03);
}

/* Card Body */
.event-card .card-body {
  background-image: url('img/curve-bg.svg'); /* Optional */
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
}

/* Button Style */
.event-card .btn-primary {
  background-color: #0066ff;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.event-card .btn-primary:hover {
  background-color: #0047cc;
}
.journey-block {
  padding: 20px 10px;
  margin:10px;
  background: #fbfeff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2.5rem;
  border: 2px solid #1062fe;
}
.journey-block:hover {
  transform: translateY(-6px);
}
.journey-block img {
  max-height: 350px;
  width:100%;
  object-fit: contain;
}
.blockquote {
  font-size: 1.2rem;
  border-left: 4px solid #1062fe;
  padding-left: 1rem;
  color: #333;
}
.book-img {
  width: 48% !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); /* darker, bigger shadow */
  border-radius: 8px; /* optional */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8); /* stronger shadow on hover */
}
.achievements {
  position: relative;
 background: #f3f9ff;;
  overflow: hidden;
  z-index: 1;

}

.animated-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; /* shapes won't block clicks */
  z-index: 0;
    overflow: hidden;
}

.animated-shapes span {
  position: absolute;
  display: block;
  opacity: 0.35;
  animation: floatUp 12s linear infinite; /* ⏩ faster */
}

/* Circle */
.animated-shapes .circle {
  width: 40px; height: 40px;
  background: #0d6efd;
  border-radius: 50%;
}

/* Triangle */
.animated-shapes .triangle {
  width: 0; height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid #0dcaf0;
  opacity: 0.5;
}

/* Play Icon Bubble */
.animated-shapes .play-icon {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.55);
  position: relative;
}
.animated-shapes .play-icon::after {
  content: '';
  position: absolute;
  left: 20px; top: 15px;
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* Floating Animation */
@keyframes floatUp {
  0%   { transform: translateY(110vh) scale(0.7); opacity: 0; }
  30%  { opacity: 0.5; }
  70%  { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1.1); opacity: 0; }
}

/* Different Speeds + Positions */
.animated-shapes span:nth-child(1) { left: 8%;  animation-duration: 14s; }
.animated-shapes span:nth-child(2) { left: 20%; animation-duration: 16s; }
.animated-shapes span:nth-child(3) { left: 35%; animation-duration: 12s; }
.animated-shapes span:nth-child(4) { left: 50%; animation-duration: 18s; }
.animated-shapes span:nth-child(5) { left: 65%; animation-duration: 15s; }
.animated-shapes span:nth-child(6) { left: 80%; animation-duration: 13s; }
.animated-shapes span:nth-child(7) { left: 92%; animation-duration: 17s; }

/* Make sure content always stays above */
.achievements .container,
.achievements center {
  position: relative;
  z-index: 2;
}
.testimonial-card p{
  color:#fff !important;
}
.gallery-tab-btn {
  background: none;
  border: none;
  font-weight: 500;
  color: #4d5765;
  border-bottom: 2px solid transparent;
padding: 3px 9px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-tab-btn.active {
  color: #0d5ef4;
  border-color: #0d5ef4;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item .caption {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 15px;
  transition: bottom 0.4s ease;
}
.gallery-item:hover .caption {
  bottom: 0;
}
.gallery-item .caption h5 {
  margin: 0 0 5px;
  font-size: 18px;
}
.gallery-item .caption p {
  font-size: 14px;
  margin: 0;
}
.multi-column-list {
  column-count: 2;        
  column-gap: 40px;       
  padding-left: 2rem;   
  list-style: disc;    
}
.multi-column-list li {
  break-inside: avoid;     
}
.multi-column-list-left li,
.multi-column-list-right li {
  list-style: disc inside;
}
.sidebar-links li {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}

.sidebar-links li:last-child {
  border-bottom: none; /* remove line after last item */
}

.sidebar-links a {
  color: #0033cc; /* same blue as your screenshot */
  text-decoration: none;
}

.sidebar-links a:hover {
  text-decoration: underline;
}
 .text-outline {
    text-shadow: 2px 2px 4px #000;
  }
  .card-img-top {
  /* height: 220px; */
  object-fit: cover;
}
.sticky-sidebar {
  position: sticky;
  top: 20px;   /* Adjust if you have a fixed navbar */
  height: fit-content;
}
.blog-section {
  position: relative; /* parent for absolute positioning */
}

.social-bar {
  position: absolute;     /* relative to blog-section */
  top: 20px;              /* distance from top of section */
  right: 0;               /* align with right edge of container */
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-bottom: 8px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* Social colors */
.facebook { background: #3b5998; }
.twitter { background: #070707; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }
.share { background: #f58220; }

.social-bar a:hover {
  transform: scale(1.1);
}

/* Mobile: move below blog section */
@media (max-width: 768px) {
  .social-bar {
    position: fixed;
    bottom: 0;             /* stick to bottom */
    left: 0;
    right: 0;
    top: auto;
    background: #fff;      /* optional background strip */
    padding: 8px 0;
    flex-direction: row;
    justify-content: center;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.1); /* small top shadow */
  }

  .social-bar a {
    margin: 0 6px;
  }
  .author-share-box {
    display: flex;
    flex-direction:column;
  }
}
.text-primary {
    text-decoration: none;
    color: #1062fe !important;
}
.author-share-box {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}


.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #070707; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.whatsapp { background: #25d366; }
.social-icon.share { background: #f57c00; }

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.author-share-box {
    background: #f3f9ff;
    border: 2px solid #0dcaf0;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #070707; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.whatsapp { background: #25d366; }
.social-icon.share { background: #f57c00; }

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.fancybox__container {
  z-index: 99999 !important;
}