.timeline-wrapper {
  position: relative;
  padding-left: 16px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  position: relative;
  margin-bottom: 5px;
}

.timeline-dot {
  position: absolute;
  left: -12px;
  top: 0;
  z-index: 2;
  height: 12px;   /* same as SVG */
  width: 12px;    /* same as SVG */
}
.timeline-line {
  position: absolute;
  width: 1px;
  background: #c40101; /* 🔴 make visible while testing */
  left: 10px;
  top: 0;
  height: 0;
  z-index: 1;
}


/*National area*/
.circle-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Circle stays round at all screen sizes */
.circle-number {
    background: #fff;
    width: 2em;       /* relative size */
    height: 2em;      /* equal to width */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c40101;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;     /* prevent squishing */
    line-height: 1;     /* keeps text centered */
}
/*National area*/

.ad-banner {
    width: 200px;
    height: 450px;
    background: url("{{ asset('animations/1.JPG') }}") no-repeat center center/cover;
    border-radius: 10px;
    
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ad-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Sections */
.top-section, .middle-section, .bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Add spacing for middle section */
.middle-section {
    margin-top: 15px; /* space from 10% OFF */
}

/* Loop items */
.loop-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin: 2px 0;
}

.pulse {
    transform-origin: center; margin-top: 20px;
}

.small-text {
    font-size: 10px;
    margin-top: 2px;
}

/* responsive */
@media (max-width: 400px) {
    .ad-banner { width: 90vw; height: auto; padding: 10px; }
    .loop-item { font-size: 12px; }
    .loop-item.pulse { font-size: 50px; }
    .small-text { font-size: 10px; }
}
/* Optional: adjust size for small screens */
@media (max-width: 576px) {
    .circle-number {
        width: 2em;
        height: 2em;
        font-size: 1em;
    }
}
.img-circle-md {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover; /* ensures image is not stretched */
}
/* menu style */
.tab-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #c40101;
    flex-wrap: wrap;
}

.tab-menu .mymenu-link {
    display: block;
    padding: 4px 15px;
    border-radius: 5px 5px 0 0;
    background: #212121;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-menu .mymenu-link:hover {
    background: #eaeaea;
    color: #000;
}

/* active tab style */
.tab-menu .mymenu-link.active {
    background: #c40101;
    color: #fff;
    
}

/* tab content */
.tab-content {
    
    padding: 0px;
    background: #fff;
}

.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

/* Responsive styles */
@media (max-width: 767px) {
    .tab-menu {
        flex-direction: column;
        border-bottom: none;
    }
    .tab-menu .mymenu-link {
        border-radius: 5px;
        margin-bottom: 5px;
        width: 100%;
    }
}
.video {
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease, border 0.3s ease;
  border: 4px solid transparent; /* keep size stable */
}

.video:hover {
  opacity: 1;
  transform: scale(1.1);
  border: 4px solid rgba(0, 0, 0, 0.3); /* black transparent border */
}

.align-middle-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 4px;   /* small gap between icon & text */
}

.align-middle-icon i {
    font-size: 1rem;
    line-height: 1;
    margin-right: 0;  /* remove Bootstrap’s default margin */
}


.align-middle-icon2 {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 4px;   /* small gap between icon & text */
}

.align-middle-icon2 i {
     font-size: 0.75rem;  
    line-height: .7;
    margin-right: 0;  /* remove Bootstrap’s default margin */
}

.surjo p img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}






